Buffer Overflow Fixed

o Adjusts the size of the serial transmit buffer to accommodate the largest string being sent.
o Updated version to 0.6
Dev1
DigitalConfections 2020-05-30 16:59:32 -04:00
rodzic 6fafb8d453
commit 8705049fb6
2 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -59,7 +59,7 @@
/******************************************************
* Set the text that gets displayed to the user */
#define SW_REVISION "0.5"
#define SW_REVISION "0.6"
//#define TRANQUILIZE_WATCHDOG
@ -115,7 +115,7 @@ INVALID_FOX
/******************************************************
* EEPROM definitions */
#define EEPROM_INITIALIZED_FLAG 0xB0
#define EEPROM_INITIALIZED_FLAG 0xB1
#define EEPROM_UNINITIALIZED 0x00
#define EEPROM_STATION_ID_DEFAULT "FOXBOX"

Wyświetl plik

@ -35,7 +35,7 @@
#define LINKBUS_MAX_MSG_FIELD_LENGTH 10
#define LINKBUS_MAX_MSG_NUMBER_OF_FIELDS 3
#define LINKBUS_NUMBER_OF_RX_MSG_BUFFERS 2
#define LINKBUS_MAX_TX_MSG_LENGTH 30
#define LINKBUS_MAX_TX_MSG_LENGTH 41
#define LINKBUS_NUMBER_OF_TX_MSG_BUFFERS 4
#define LINKBUS_POWERUP_DELAY_SECONDS 6