trezor-core/micropython/bootloader/messages.h

13 lines
299 B
C
Raw Normal View History

#ifndef __MESSAGES_H__
#define __MESSAGES_H__
#include <stdbool.h>
2017-04-15 08:44:19 -07:00
#include <stdint.h>
2017-04-15 08:44:19 -07:00
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);
2017-04-15 08:44:19 -07:00
#endif