Fix zephyr samples build issue caused by zephyr kernel API update (#232)

* Clean compiling warnings of zephyr samples

* Support xtensa AOT and fix build issue of alios

* Refine wgl native functions call

* Fix zephyr samples build issue caused by zephyr kernel API update
This commit is contained in:
Weining
2020-04-13 07:46:16 +08:00
committed by GitHub
parent 42d982e431
commit ffd975d2d6
5 changed files with 11 additions and 11 deletions

View File

@ -38,7 +38,7 @@ void app_manager_timer_destroy(void *timer)
void app_manager_timer_start(void *timer, int timeout)
{
k_timer_start(timer, timeout, 0);
k_timer_start(timer, Z_TIMEOUT_MS(timeout), Z_TIMEOUT_MS(0));
}
void app_manager_timer_stop(void *timer)