13 lines
206 B
C
13 lines
206 B
C
|
#ifndef _APP_OTA_H_
|
||
|
#define _APP_OTA_H_
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
void app_ota_init(void);
|
||
|
void app_ota_proc(void);
|
||
|
bool app_is_ota_proc(void);
|
||
|
|
||
|
void app_otas_rxd(uint16_t len, const uint8_t *data);
|
||
|
|
||
|
#endif
|