From 8076f393f3a8e41aeb1eb1fed8dd3f65b047fb8c Mon Sep 17 00:00:00 2001 From: Gunar Schorcht <gunar@schorcht.net> Date: Wed, 26 Dec 2018 17:10:37 +0100 Subject: [PATCH] cpu/esp8266: doc fixes for esp_task thread --- cpu/esp8266/doc.txt | 12 ++++++------ cpu/esp8266/sdk/ets_task.c | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/cpu/esp8266/doc.txt b/cpu/esp8266/doc.txt index 5debf97e26..9d6e021821 100644 --- a/cpu/esp8266/doc.txt +++ b/cpu/esp8266/doc.txt @@ -715,10 +715,10 @@ necessary, for example, if you want to use the built-in WLAN module. The SDK is also used automatically when software timers are used by activating the `esp_sw_timer` module. -Internally, the SDK uses its own priority-based multitasking, the **ETS**, -to handle hardware components such as the WiFi interface, or to implement -event-driven functions such as software timers. ETS periodically executes -all ETS tasks with pending events in an infinite loop with the ROM +Internally, the SDK uses its own priority-based multitasking sytsem, +the **ETS**, to handle hardware components such as the WiFi interface, or to +implement event-driven functions such as software timers. ETS periodically +executes all ETS tasks with pending events in an infinite loop with the ROM function `ets_run`. ETS doesn't process interrupts directly in interrupt service routines. @@ -726,8 +726,8 @@ Instead, they use the `ets_post` ROM function to send an event to one of the ETS tasks, which then processes the interrupts asynchronously. Context switches are not possible in interrupt service routines. -To use SDK functions and keep the system alive, ETS tasks with pending have to -be handled. For that purpose +To use SDK functions and keep the system alive, ETS tasks with pending events +have to be handled. For that purpose - the `ets_task_func` RIOT thread with highest possible priority is used - the ROM functions `ets_run` and `ets_post` are overwritten. diff --git a/cpu/esp8266/sdk/ets_task.c b/cpu/esp8266/sdk/ets_task.c index b579d96e16..d9702315a7 100644 --- a/cpu/esp8266/sdk/ets_task.c +++ b/cpu/esp8266/sdk/ets_task.c @@ -9,10 +9,10 @@ */ /* - * Internally, the SDK uses its own priority-based multitasking, the *ETS*, - * to handle hardware components such as the WiFi interface, or to implement - * event-driven functions such as software timers. ETS periodically executes - * all ETS tasks with pending events in an infinite loop with the ROM + * Internally, the SDK uses its own priority-based multitasking system, + * the *ETS*, to handle hardware components such as the WiFi interface, or to + * implement event-driven functions such as software timers. ETS periodically + * executes all ETS tasks with pending events in an infinite loop with the ROM * function *ets_run*. * * ETS doesn't process interrupts directly in interrupt service routines. @@ -20,8 +20,8 @@ * ETS tasks, which then processes the interrupts asynchronously. Context * switches are not possible in interrupt service routines. * - * To use SDK functions and keep the system alive, ETS tasks with pending have - * to be handled. For that purpose + * To use SDK functions and keep the system alive, ETS tasks with pending + * events have to be handled. For that purpose * * - the *ets_task_func* RIOT thread with highest possible priority is used * - the ROM functions *ets_run* and *ets_post* are overwritten. -- GitLab