1 /*
2  * Copyright (C) 2015-2019 Alibaba Group Holding Limited
3  */
4 
5 #ifndef APP_UPGRADE_H
6 #define APP_UPGRADE_H
7 
8 #include <stdint.h>
9 
10 #define AMP_OTA_MODULE_NAME "jsapp"
11 
12 #define SUBDEV_FILE_PATH   AMP_FS_ROOT_DIR"/pack.bin"
13 #define JS_JSON_PATH       AMP_FS_ROOT_DIR"/js.json"
14 #define OS_APP_PATH        AMP_FS_ROOT_DIR"/os_app.bin"
15 #define OS_KERNEL_PATH     AMP_FS_ROOT_DIR"/os_kernel.bin"
16 
17 
18 int ota_load_jsapp(void *ota_ctx);
19 int32_t amp_app_upgrade_service(void *mqtt_handle);
20 void internal_sys_upgrade_start(void *ctx);
21 #endif /* APP_UPGRADE_H */
22