Fix for missed number in storage.ino
This commit is contained in:
parent
55a58aa9de
commit
08406b957c
|
@ -38,10 +38,7 @@ cache:
|
|||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- sourceline: 'deb http://us.archive.ubuntu.com/ubuntu/ trusty multiverse'
|
||||
- sourceline: 'deb http://us.archive.ubuntu.com/ubuntu/ trusty-backports multiverse'
|
||||
- sourceline: 'deb http://security.ubuntu.com/ubuntu trusty-security multiverse'
|
||||
- sourceline: 'deb http://us.archive.ubuntu.com/ubuntu/ trusty-updates multiverse'
|
||||
- sourceline: 'deb http://archive.ubuntu.com/ubuntu trusty-backports trusty-updates main restricted multiverse'
|
||||
packages:
|
||||
- cppcheck
|
||||
|
||||
|
|
|
@ -383,7 +383,7 @@ void loadConfig()
|
|||
offset = x - EEPROM_CONFIG8_MAP1;
|
||||
boostTable.values[7-(offset/8)][offset%8] = EEPROM.read(x); //Read the 8x8 map
|
||||
offset = y - EEPROM_CONFIG8_MAP2;
|
||||
vvtTable.values[7-(offset/)][offset%8] = EEPROM.read(y); //Read the 8x8 map
|
||||
vvtTable.values[7-(offset/8)][offset%8] = EEPROM.read(y); //Read the 8x8 map
|
||||
y++;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue