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-06-14 18:40:31 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#include <pb.h>
|
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
#define MSG_HEADER1_LEN 9
|
|
|
|
#define MSG_HEADER2_LEN 1
|
|
|
|
|
|
|
|
#define USB_PACKET_SIZE 64
|
|
|
|
#define USB_IFACE_NUM 0
|
|
|
|
|
2017-06-19 21:05:21 +00:00
|
|
|
#define FIRMWARE_CHUNK_SIZE (128*1024)
|
2017-06-14 18:40:31 +00:00
|
|
|
|
|
|
|
bool msg_parse_header(const uint8_t *buf, uint16_t *msg_id, uint32_t *msg_size);
|
2017-04-12 16:31:23 +00:00
|
|
|
|
2017-06-16 13:40:27 +00:00
|
|
|
void process_msg_Initialize(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
|
|
|
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);
|
|
|
|
void process_msg_FirmwareUpload(uint8_t iface_num, uint32_t msg_size, uint8_t *buf);
|
|
|
|
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
|