1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 14:08:11 +00:00

fix(core): use stm32f4 implementation of secret.c for unix too

(fixes bootloader_emu build because there was an error in the unix dummy
impl)
This commit is contained in:
matejcik 2023-08-15 17:11:36 +02:00 committed by matejcik
parent 92e29b6036
commit c0de11fbeb

View File

@ -1,9 +0,0 @@
#include "secret.h"
void secret_write(uint8_t* data, uint32_t offset, uint32_t len) {}
void secret_read(uint8_t* data, uint32_t offset, uint32_t len) {}
secbool secret_wiped(void) { return secfalse; }
void secret_erase(void) {}

View File

@ -0,0 +1 @@
../stm32f4/secret.c