diff options
Diffstat (limited to 'board')
-rw-r--r-- | board/lazor/board.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/lazor/board.h b/board/lazor/board.h index 47e5574ded..46e9c7b7dd 100644 --- a/board/lazor/board.h +++ b/board/lazor/board.h @@ -114,6 +114,13 @@ enum battery_type { BATTERY_TYPE_COUNT, }; +/* Battery cell type */ +enum battery_cell_type { + BATTERY_CELL_TYPE_UNKNOWN = 0, + BATTERY_CELL_TYPE_2S = 2, + BATTERY_CELL_TYPE_3S = 3 +}; + /* Swithcap functions */ void board_set_switchcap_power(int enable); int board_is_switchcap_enabled(void); |