diff options
Diffstat (limited to 'board/helios/board.c')
-rw-r--r-- | board/helios/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/board/helios/board.c b/board/helios/board.c index 008cdd6e96..dd0b2c87a3 100644 --- a/board/helios/board.c +++ b/board/helios/board.c @@ -405,3 +405,10 @@ int board_tcpc_post_init(int port) return rv; } + +bool board_is_convertible(void) +{ + const uint8_t sku = get_board_sku(); + + return (sku == 255) || (sku == 1); +} |