Skip to content

Commit 50eec26

Browse files
committed
Fix board ID calculation
Signed-off-by: Daniel Schaefer <[email protected]>
1 parent 96b52e2 commit 50eec26

File tree

1 file changed

+2
-2
lines changed
  • framework_lib/src/chromium_ec

1 file changed

+2
-2
lines changed

framework_lib/src/chromium_ec/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -199,11 +199,11 @@ pub enum Framework16Adc {
199199

200200
const BOARD_VERSION_COUNT: usize = 16;
201201
const BOARD_VERSION: [i32; BOARD_VERSION_COUNT] = [
202-
85, 233, 360, 492, 649, 844, 965, 1094, 1380, 1562, 1710, 2040, 2197, 2557, 2766, 2814,
202+
203, 409, 615, 821, 1028, 1234, 1440, 1646, 1853, 2059, 2265, 2471, 2678, 2884, 3090, 3300,
203203
];
204204

205205
const BOARD_VERSION_NPC_DB: [i32; BOARD_VERSION_COUNT] = [
206-
100, 311, 521, 721, 931, 1131, 1341, 1551, 1751, 1961, 2171, 2370, 2580, 2780, 2990, 3200,
206+
85, 233, 360, 492, 649, 844, 965, 1094, 1380, 1562, 1710, 2040, 2197, 2557, 2766, 2814,
207207
];
208208

209209
pub trait CrosEcDriver {

0 commit comments

Comments
 (0)