
1. effective "Differential Upgrade" patch algorithm with high compression rate 2. effective recovery algorithm support recovery firmware in blocks which has low memory consumption and wear-leveling strategies, especially suitable for embeded devices with low RAM. 3. add sample ota bootloader project, see: board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_bootloader_recovery 4. add sample application project for download firmware through http, see: board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_application_download_through_http 5. add sample application project for download firmware through qcloud explorer console, see: board\TencentOS_tiny_EVB_MX_Plus\KEIL\ota\ota_application_download_through_qcloud_iot_explorer 6. an OTA markdown document is pending
90 lines
2.5 KiB
C
90 lines
2.5 KiB
C
/*----------------------------------------------------------------------------
|
|
* Tencent is pleased to support the open source community by making TencentOS
|
|
* available.
|
|
*
|
|
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
|
|
* If you have downloaded a copy of the TencentOS binary from Tencent, please
|
|
* note that the TencentOS binary is licensed under the BSD 3-Clause License.
|
|
*
|
|
* If you have downloaded a copy of the TencentOS source code from Tencent,
|
|
* please note that TencentOS source code is licensed under the BSD 3-Clause
|
|
* License, except for the third-party components listed below which are
|
|
* subject to different license terms. Your integration of TencentOS into your
|
|
* own projects may require compliance with the BSD 3-Clause License, as well
|
|
* as the other licenses applicable to the third-party components included
|
|
* within TencentOS.
|
|
*---------------------------------------------------------------------------*/
|
|
|
|
#include "tos_evtdrv.h"
|
|
|
|
#if TOS_CFG_EVENT_DRIVEN_EN > 0u
|
|
|
|
__API__ evtdrv_err_t tos_evtdrv_sys_init(evtdrv_task_entry_t tasks[], evtdrv_ttb_sz_t task_table_size, k_evtdrv_poll_t poll)
|
|
{
|
|
k_err_t kerr;
|
|
evtdrv_err_t err;
|
|
|
|
evtdrv_task_table = &tasks[0];
|
|
evtdrv_task_table_size = task_table_size;
|
|
|
|
evtdrv_poll = poll;
|
|
|
|
#if TOS_CFG_MMHEAP_EN > 0
|
|
#if TOS_CFG_MMHEAP_DEFAULT_POOL_EN > 0u
|
|
kerr = mmheap_init_with_pool(k_mmheap_default_pool, TOS_CFG_MMHEAP_DEFAULT_POOL_SIZE);
|
|
#else
|
|
kerr = mmheap_init();
|
|
#endif
|
|
if (kerr != K_ERR_NONE) {
|
|
return EVTDRV_ERR_MMHEAP_INIT_FAILED;
|
|
}
|
|
#endif
|
|
|
|
err = evtdrv_event_init();
|
|
if (err != EVTDRV_ERR_NONE) {
|
|
return err;
|
|
}
|
|
|
|
evtdrv_msg_init();
|
|
|
|
evtdrv_task_init();
|
|
|
|
return EVTDRV_ERR_NONE;
|
|
}
|
|
|
|
__STATIC__ void evtdrv_sys_run(void)
|
|
{
|
|
evtdrv_event_flag_t event_flag = TOS_EVTDRV_EVENT_NONE;
|
|
evtdrv_task_id_t task_id = TOS_EVTDRV_TASK_ID_NONE;
|
|
|
|
evtdrv_timer_update();
|
|
|
|
if (evtdrv_poll) {
|
|
evtdrv_poll();
|
|
}
|
|
|
|
event_flag = evtdrv_event_fetch(&task_id);
|
|
if (event_flag != TOS_EVTDRV_EVENT_NONE) {
|
|
evtdrv_curr_task = task_id;
|
|
event_flag = (EVTDRV_TASK_ID2TASK(task_id))(event_flag);
|
|
evtdrv_curr_task = TOS_EVTDRV_TASK_ID_NONE;
|
|
|
|
// after task process, event that the task handled is returned.
|
|
tos_evtdrv_event_reset(task_id, event_flag);
|
|
} else {
|
|
#if TOS_CFG_PWR_MGR_EN > 0u
|
|
pm_power_manager();
|
|
#endif
|
|
}
|
|
}
|
|
|
|
__API__ void tos_evtdrv_sys_start(void)
|
|
{
|
|
while (K_TRUE) {
|
|
evtdrv_sys_run();
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|