mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 21:48:13 +00:00
13 lines
256 B
C
13 lines
256 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);
|
||
|
|
||
|
#endif //_UNIT_VARIANT_H
|