Skip to content

Commit fdd82a7

Browse files
committed
src/osfv/libs/rte.py: Fix CMOS_CLR GPIO number
Per RteCtrl.cfg the CMOS CLR pin has ID 11: { "id" : 11, "description" : "apu_clr_cmos", "direction" : "out", "init_value" : 0, "sys_gpio" : 412 }, Signed-off-by: Michał Żygowski <[email protected]>
1 parent 5c64a82 commit fdd82a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osfv_cli/src/osfv/libs/rte.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class RTE(rtectrl):
2020
GPIO_RESET = 8
2121
GPIO_POWER = 9
2222

23-
GPIO_CMOS = 12
23+
GPIO_CMOS = 11
2424

2525
GPIO_PWR_LED = 13
2626

0 commit comments

Comments
 (0)