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-12-17 00:09:45 +00:00
|
|
|
#include "image.h"
|
2017-10-26 21:51:39 +00:00
|
|
|
#include "secbool.h"
|
2017-06-14 18:40:31 +00:00
|
|
|
|
2018-02-13 22:11:18 +00:00
|
|
|
#define USB_TIMEOUT 500
|
2017-06-16 13:40:27 +00:00
|
|
|
#define USB_PACKET_SIZE 64
|
|
|
|
|
2018-01-23 11:50:25 +00:00
|
|
|
#define FIRMWARE_SECTORS_COUNT 13
|
|
|
|
extern const uint8_t firmware_sectors[FIRMWARE_SECTORS_COUNT];
|
|
|
|
|
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
|
|
|
|
2018-01-24 16:00:25 +00:00
|
|
|
void send_user_abort(uint8_t iface_num, const char *msg);
|
|
|
|
|
2017-12-17 00:09:45 +00:00
|
|
|
void process_msg_Initialize(uint8_t iface_num, uint32_t msg_size, uint8_t *buf, const vendor_header * const vhdr, const image_header * const hdr);
|
2018-02-06 16:06:43 +00:00
|
|
|
void process_msg_GetFeatures(uint8_t iface_num, uint32_t msg_size, uint8_t *buf, const vendor_header * const vhdr, const image_header * const hdr);
|
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
|