1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-29 19:08:12 +00:00
trezor-firmware/core/embed/rust/trezorhal.h

35 lines
547 B
C
Raw Normal View History

#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"