123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #ifndef _OTA_PROTOCOL_H
- #define _OTA_PROTOCOL_H
- #define MAX_OTA_PARAM_SIZE 256
- #define OTA_DATA_BURST_SIZE (((uint32_t)s_ota_ctx.mtu_a)*((uint32_t)s_ota_burst_size))
- enum{
- OTA_CMD_START_OTA = 1,
- OTA_CMD_PARTITION_INFO,
- OTA_CMD_BLOCK_INFO,
- OTA_CMD_REBOOT,
- OTA_CMD_ERASE,
- OTA_RSP_START_OTA = 0x81,
- OTA_RSP_PARAM,
- OTA_RSP_OTA_COMPLETE,
- OTA_RSP_PARTITION_INFO,
- OTA_RSP_PARTITION_COMPLETE,
- OTA_RSP_BLOCK_INFO,
- OTA_RSP_BLOCK_BURST,
- OTA_RSP_BLOCK_COMPLETE,
- OTA_RSP_ERASE,
- OTA_RSP_REBOOT,
- OTA_RSP_ERROR = 0xff,
- };
- typedef struct{
- uint8_t cmd;
-
- union{
-
- struct{
- uint8_t sector_num;
- uint8_t burst_size;
- } start;
- struct{
- uint8_t index;
- uint8_t flash_addr[4];
- uint8_t run_addr[4];
- uint8_t size[4];
- uint8_t checksum[2];
- } part;
- struct{
- uint8_t size[2];
- uint8_t index;
- } block;
-
- struct{
- uint8_t flash_addr[4];
- uint8_t size[4];
- } erase;
- uint8_t reboot_flag;
- } p;
- }ota_cmd_t;
- extern const char* OTA_CRYPTO_IV;
- extern bool aes_ccm_phyplus_dec(const unsigned char* iv, unsigned char* din,int dLen, unsigned char* micIn, unsigned char*dout);
- void otaProtocol_mtu(uint16_t mtu);
- void otaProtocol_TimerEvt(void);
- bool otaProtocol_address_plus(void);
- void otaProtocol_BootMode(void);
- void otaProtocol_RunApp(void);
- int otaProtocol_init(uint8_t task_id, uint16_t tm_evt);
- #endif
|