Zephyr rtos threads

From Wiki at Neela Nurseries
Revision as of 22:03, 28 September 2021 by Ted (talk | contribs) (Created page with " Some Zephyr RTOS API functions to learn: <ul> * k_sem_take(&lte_connected, K_FOREVER); * k_work_schedule(&connect_work, K_NO_WAIT); </ul> Unsure whether this routine a Ze...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Some Zephyr RTOS API functions to learn:

    • k_sem_take(&lte_connected, K_FOREVER);
    • k_work_schedule(&connect_work, K_NO_WAIT);

Unsure whether this routine a Zephyr one:

 work_init();


Following non-function entities from aws_iot main.c appear important:

77 static struct k_work_delayable shadow_update_work;
78 static struct k_work_delayable connect_work;
79 static struct k_work shadow_update_version_work;