Increased size of EEPROM buffer in eepromtool.c

This PR increases the size eepromtool can read/write to 4 megabit, which is the maximum slave devices seem to support according to the datasheets.

Due to space constraints on our device we store some application specific data on our slave that exceeds 32kbyte, hence the need for the ability to read/write larger images to EEPROM.
pull/182/head
Jesper Smith 2018-06-21 09:15:22 +02:00 committed by GitHub
parent 0398b6ba72
commit d8c5620768
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@
#include "ethercat.h"
#define MAXBUF 32768
#define MAXBUF 524288
#define STDBUF 2048
#define MINBUF 128
#define CRCBUF 14