Files
luban-lite-t3e-pro/packages/artinchip/ota/absystem.h

29 lines
568 B
C
Raw Normal View History

2023-11-09 20:19:51 +08:00
/*
* Copyright (c) 2023, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*
* Authors: xuan.wen <xuan.wen@artinchip.com>
*/
#ifndef __ABSYSTEM_H__
#define __ABSYSTEM_H__
#ifdef __cplusplus
extern "C" {
#endif
int aic_upgrade_start(void);
char *aic_upgrade_get_partname(unsigned char index);
int aic_upgrade_end(void);
int aic_ota_status_update(void);
int aic_get_rodata_to_mount(char *target_rodata);
2024-06-04 19:00:30 +08:00
int aic_get_mmc_rodata_to_mount(char *target_rodata);
int aic_get_data_to_mount(char *target_data);
2023-11-09 20:19:51 +08:00
#ifdef __cplusplus
}
#endif
#endif