mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-16 04:29:08 +00:00
15 lines
304 B
C
15 lines
304 B
C
#ifndef _UNIT_VARIANT_H
|
|
#define _UNIT_VARIANT_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
void unit_variant_init(void);
|
|
bool unit_variant_present(void);
|
|
uint8_t unit_variant_get_color(void);
|
|
bool unit_variant_get_btconly(void);
|
|
|
|
bool unit_variant_is_sd_hotswap_enabled(void);
|
|
|
|
#endif //_UNIT_VARIANT_H
|