mirror of
https://github.com/cwyark/ameba-sdk-gcc-make.git
synced 2024-11-24 15:04:19 +00:00
10 lines
348 B
C
Executable file
10 lines
348 B
C
Executable file
#ifndef UPDATE_H
|
|
#define UPDATE_H
|
|
|
|
//--------------------------------------------------------------------------
|
|
int update_ota_local(char *ip, int port);
|
|
int update_ota_cloud(char *repository, char *file_path);
|
|
void cmd_update(int argc, char **argv);
|
|
|
|
//----------------------------------------------------------------------------
|
|
#endif
|