You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/core/embed/fw_cs/core_api_impl.c

9 lines
200 B

#include <core_api.h>
#include <display.h>
#include <embed/fw_ss/secure_api.h>
void core_print(char* text) { display_printf("%s", text); }
int core_get_secret(void) { return secure_get_secret(); }