1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 02:49:02 +00:00
trezor-firmware/micropython/bootloader/messages.h
2017-04-16 14:16:40 +02:00

13 lines
299 B
C

#ifndef __MESSAGES_H__
#define __MESSAGES_H__
#include <stdbool.h>
#include <stdint.h>
void send_msg_Success(int iface);
void send_msg_Failure(int iface);
void send_msg_Features(int iface, bool firmware_present);
void send_msg_FirmwareRequest(int iface, uint32_t offset, uint32_t length);
#endif