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/extmod/modtrezormsg/modtrezormsg-stmhal.h

19 lines
184 B

void msg_init(void)
{
}
const uint8_t *msg_recv(void)
{
return 0;
}
int msg_send(uint8_t *buf, size_t len)
{
return -1;
}
uint32_t msg_poll_ui_event(void)
{
return 0;
}