Fix table size array to account for swapped tables
This commit is contained in:
parent
9ca230df0a
commit
f2c1d6c615
|
@ -221,7 +221,8 @@ const char TSfirmwareVersion[] PROGMEM = "Speeduino";
|
|||
|
||||
const byte data_structure_version = 2; //This identifies the data structure when reading / writing.
|
||||
//const byte page_size = 64;
|
||||
const int16_t npage_size[11] PROGMEM = {0,288,128,288,128,288,128,240,192,192,192};
|
||||
//const int16_t npage_size[11] PROGMEM = {0,288,128,288,128,288,128,240,192,192,192};
|
||||
const int16_t npage_size[11] PROGMEM = {0,128,288,288,128,288,128,240,192,192,192};
|
||||
//const byte page11_size = 128;
|
||||
#define MAP_PAGE_SIZE 288
|
||||
|
||||
|
|
Loading…
Reference in New Issue