Correct packetSize of comms

This commit is contained in:
Josh Stewart 2016-12-27 17:03:27 +11:00
parent 12ea4b1587
commit b2c0e0a902
2 changed files with 2 additions and 1 deletions

View File

@ -11,6 +11,8 @@
#define boostvvtPage 8
#define seqFuelPage 9
#define packetSize 37
byte currentPage = 1;//Not the same as the speeduino config page numbers
boolean isMap = true;
unsigned long requestCount = 0; //The number of times the A command has been issued

View File

@ -16,7 +16,6 @@ const char TSfirmwareVersion[] = "Speeduino 2016.09";
const byte data_structure_version = 2; //This identifies the data structure when reading / writing.
const byte page_size = 64;
const int map_page_size = 288;
const byte packetSize = 35;
//Handy bitsetting macros
#define BIT_SET(a,b) ((a) |= (1<<(b)))