mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-01-10 15:30:55 +00:00
b97390a73a
[no changelog]
41 lines
684 B
C
41 lines
684 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"
|
|
|
|
// force bindgen to include these constants
|
|
const uint32_t DISPLAY_RESX_ = DISPLAY_RESX;
|
|
const uint32_t DISPLAY_RESY_ = DISPLAY_RESY;
|