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/embed/extmod/modtrezorio/unix-flash-mock.h

53 lines
765 B

/*
* Copyright (c) Pavol Rusnak, SatoshiLabs
*
* Licensed under TREZOR License
* see LICENSE file for details
*/
#include "../../trezorhal/flash.h"
int flash_init(void)
{
return 0;
}
void flash_set_option_bytes(void)
{
}
bool flash_unlock(void)
{
return false;
}
bool flash_lock(void)
{
return false;
}
bool flash_erase_sectors(int start, int end, void (*progress)(uint16_t val))
{
return false;
}
bool flash_otp_read(uint8_t block, uint8_t offset, uint8_t *data, uint8_t datalen)
{
return false;
}
bool flash_otp_write(uint8_t block, uint8_t offset, const uint8_t *data, uint8_t datalen)
{
return false;
}
bool flash_otp_lock(uint8_t block)
{
return false;
}
bool flash_otp_is_locked(uint8_t block)
{
return false;
}