2017-04-12 16:31:23 +00:00
|
|
|
#ifndef __MESSAGES_H__
|
|
|
|
#define __MESSAGES_H__
|
|
|
|
|
2017-04-15 15:44:19 +00:00
|
|
|
#include <stdint.h>
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-06-14 18:40:31 +00:00
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
#define USB_PACKET_SIZE 64
|
|
|
|
#define USB_IFACE_NUM 0
|
|
|
|
|
2017-10-26 21:51:39 +00:00
|
|
|
secbool msg_parse_header(const uint8_t *buf, uint16_t *msg_id, uint32_t *msg_size);
|
2017-04-12 16:31:23 +00:00
|
|
|
|
2017-10-26 21:51:39 +00:00
|
|
|
void process_msg_Initialize(uint8_t iface_num, uint32_t msg_size, uint8_t *buf, secbool firmware_present);
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_Ping(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
|
|
|
void process_msg_FirmwareErase(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
2017-10-16 16:03:04 +00:00
|
|
|
int process_msg_FirmwareUpload(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
2017-10-16 18:24:28 +00:00
|
|
|
int process_msg_WipeDevice(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_unknown(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
2017-04-12 16:31:23 +00:00
|
|
|
|
2017-04-15 15:44:19 +00:00
|
|
|
#endif
|