mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-08 16:42:03 +00:00
8d812ca36e
[no changelog]
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
|