mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 09:28:13 +00:00
089db2cadf
[no changelog]
35 lines
547 B
C
35 lines
547 B
C
#include <trezor_model.h>
|
|
|
|
#include <gfx/fonts.h>
|
|
#include <gfx/gfx_bitblt.h>
|
|
#include <io/display.h>
|
|
#include <io/usb.h>
|
|
#include <rtl/secbool.h>
|
|
#include <sec/entropy.h>
|
|
#include <sys/systick.h>
|
|
#include <util/flash.h>
|
|
#include <util/translations.h>
|
|
#include "storage.h"
|
|
|
|
#ifdef USE_BUTTON
|
|
#include <io/button.h>
|
|
#endif
|
|
|
|
#ifdef USE_HAPTIC
|
|
#include <io/haptic.h>
|
|
#endif
|
|
|
|
#ifdef USE_RGB_LED
|
|
#include <io/rgb_led.h>
|
|
#endif
|
|
|
|
#ifdef USE_TOUCH
|
|
#include <io/touch.h>
|
|
#endif
|
|
|
|
#include "bip39.h"
|
|
#include "rand.h"
|
|
#include "slip39.h"
|
|
|
|
#include "uzlib.h"
|