So I'm reading in a NMEA string and its cutting me off at 63 chars. I tried changing HardwareSerial.h in /avr/cores/arduino to be
#if (RAMEND < 1000)
#define SERIAL_BUFFER_SIZE 64
#else
#define SERIAL_BUFFER_SIZE 128
#endif
but it made no difference. Anyone have any ideas on how to change the serial buffer size for the digix?