Searched refs:Task (Results 1 – 25 of 36) sorted by relevance
12
/hal_espressif-2.7.6/tools/esp_app_trace/test/sysview/ |
D | heap_log_mcore.svdat | 33 �G����5���B�R�Q�EBI (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c 38 �5���Z?<I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c 39 �!B�R�D����EBI (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec 42 Z?<I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec 45 �G����B�5���R�Q�EBI (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4 49 �������Z?<I (332) example: Task[0x3ffb49a8]: free memory @ 0x3ffb87e4 52 EBI (360) example: Task[0x3ffb7f40]: allocated 4 bytes @ 0x3ffb828c 54 ��u���Z?<I (360) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c 56 �5���EBI (361) example: Task[0x3ffb82a0]: allocated 8 bytes @ 0x3ffb87e4 58 �u���Z?<I (361) example: Task[0x3ffb8484]: free memory @ 0x3ffb87e4 [all …]
|
D | expected_output_mcore | 182 EVENT[145]: 0.004291975 - core[0].svPrint(26), plen 69: [msg: I (330) example: Task[0x3ffb7f40]: al… 184 [0.004291975] LOG: I (330) example: Task[0x3ffb7f40]: allocated 2 bytes @ 0x3ffb828c 258 EVENT[183]: 0.004936525 - core[1].svPrint(26), plen 63: [msg: I (330) example: Task[0x3ffb8124]: fr… 260 [0.004936525] LOG: I (330) example: Task[0x3ffb8124]: free memory @ 0x3ffb828c 264 EVENT[187]: 0.004990925 - core[0].svPrint(26), plen 69: [msg: I (331) example: Task[0x3ffb82a0]: al… 266 [0.004990925] LOG: I (331) example: Task[0x3ffb82a0]: allocated 4 bytes @ 0x3ffb85ec 298 EVENT[204]: 0.005195500 - core[1].svPrint(26), plen 63: [msg: I (331) example: Task[0x3ffb8484]: fr… 300 [0.005195500] LOG: I (331) example: Task[0x3ffb8484]: free memory @ 0x3ffb85ec 361 EVENT[236]: 0.005631150 - core[0].svPrint(26), plen 69: [msg: I (331) example: Task[0x3ffb8600]: al… 363 [0.005631150] LOG: I (331) example: Task[0x3ffb8600]: allocated 6 bytes @ 0x3ffb87e4 [all …]
|
/hal_espressif-2.7.6/examples/system/heap_task_tracking/ |
D | README.md | 1 # Heap Task Tracking Example 30 Task: Pre-Scheduler allocs -> CAP_8BIT: 5360 CAP_32BIT: 0 31 Task: esp_timer -> CAP_8BIT: 1724 CAP_32BIT: 0 32 Task: ipc0 -> CAP_8BIT: 8316 CAP_32BIT: 0 33 Task: main -> CAP_8BIT: 3480 CAP_32BIT: 0 34 Task: ipc1 -> CAP_8BIT: 12 CAP_32BIT: 0 35 Task: example_task -> CAP_8BIT: 696 CAP_32BIT: 0
|
/hal_espressif-2.7.6/components/app_trace/ |
D | Kconfig | 149 bool "Task Start Execution Event" 153 Enables "Task Start Execution" event. 156 bool "Task Stop Execution Event" 160 Enables "Task Stop Execution" event. 163 bool "Task Start Ready State Event" 167 Enables "Task Start Ready State" event. 170 bool "Task Stop Ready State Event" 174 Enables "Task Stop Ready State" event. 177 bool "Task Create Event" 181 Enables "Task Create" event. [all …]
|
/hal_espressif-2.7.6/components/esp_common/ |
D | Kconfig | 222 bool "Initialize Task Watchdog Timer on startup" 225 The Task Watchdog Timer can be used to make sure individual tasks are still 226 running. Enabling this option will cause the Task Watchdog Timer to be 227 initialized automatically at startup. The Task Watchdog timer can be 228 initialized after startup as well (see Task Watchdog Timer API Reference) 231 bool "Invoke panic handler on Task Watchdog timeout" 235 If this option is enabled, the Task Watchdog Timer will be configured to 237 at run time (see Task Watchdog Timer API Reference) 240 int "Task Watchdog timeout period (seconds)" 245 Timeout period configuration for the Task Watchdog Timer in seconds. [all …]
|
/hal_espressif-2.7.6/docs/en/api-guides/ |
D | freertos-smp.rst | 80 Tasks and Task Creation 102 For example ``xTaskCreatePinnedToCore(tsk_callback, “APP_CPU Task”, 1000, NULL, 10, NULL, 1)`` 113 Each Task Control Block (TCB) in ESP-IDF stores the ``xCoreID`` as a member. 154 :alt: Vanilla FreeRTOS Ready Task List Structure 156 Illustration of FreeRTOS Ready Task List Data Structure 172 :alt: ESP-IDF FreeRTOS Ready Task List Structure 174 Illustration of FreeRTOS Ready Task List Data Structure in ESP-IDF 200 1) **PRO_CPU** calls the scheduler and selects Task A to run, hence moves 201 ``pxIndex`` to point to Task A 204 ``pxIndex`` which is Task B. However Task B is not selected to run as it is not [all …]
|
D | app_trace.rst | 336 - Task Start Execution Event 337 - Task Stop Execution Event 338 - Task Start Ready State Event 339 - Task Stop Ready State Event 340 - Task Create Event 341 - Task Terminate Event
|
/hal_espressif-2.7.6/docs/en/api-reference/system/ |
D | ipc.rst | 17 an IPC Task of a particular core is unblocked, it will preempt the current 25 until the IPC Task begins execution of the given function. 27 until the IPC Task has completed execution of the given function.
|
D | wdts.rst | 8 and the Task Watchdog Timer (TWDT). The Interrupt Watchdog Timer and the TWDT 57 Task Watchdog Timer 60 The Task Watchdog Timer (TWDT) is responsible for detecting instances of tasks 106 …artup. If this option is disabled, it is still possible to initialize the Task WDT at runtime by c… 139 Task Watchdog API Reference 142 A full example using the Task Watchdog is available in esp-idf: :example:`system/task_watchdog`
|
D | freertos.rst | 16 Task API
|
D | freertos_additions.rst | 483 specific functionality to be added to the Idle Task and Tick Interrupt. 494 defined Idle Hook and Tick Hook on every iteration of the Idle Task and Tick
|
/hal_espressif-2.7.6/docs/zh_CN/api-guides/ |
D | app_trace.rst | 337 - Task Start Execution Event 338 - Task Stop Execution Event 339 - Task Start Ready State Event 340 - Task Stop Ready State Event 341 - Task Create Event 342 - Task Terminate Event
|
/hal_espressif-2.7.6/examples/system/sysview_tracing/ |
D | README.md | 63 ESP_LOGI(TAG, "Task[%p]: received event %d", xTaskGetCurrentTaskHandle(), event_val); 68 …e task and timer has no any mechanism to acknowledge the events transfer. Task needs some time to … 74 I (297) example: Task[0x3ffb6c10]: received event 1 75 I (300) example: Task[0x3ffb6c10]: received event 2 76 I (306) example: Task[0x3ffb6c10]: received event 5 77 I (311) example: Task[0x3ffb6c10]: received event 8 78 I (317) example: Task[0x3ffb6c10]: received event 10
|
/hal_espressif-2.7.6/examples/peripherals/uart/nmea0183_parser/main/ |
D | Kconfig.projbuild | 11 int "NMEA Parser Task Stack Size" 18 int "NMEA Parser Task Priority"
|
/hal_espressif-2.7.6/examples/system/sysview_tracing_heap_log/ |
D | README.md | 94 [0.002835275] LOG: I (298) example: Task[0x3ffb61d4]: allocated 2 bytes @ 0x3ffafff4 95 [0.002974600] LOG: I (299) example: Task[0x3ffb6d04]: free memory @ 0x3ffafff4 99 [2.942891550] LOG: I (3239) example: Task[0x3ffb7840]: allocated 396 bytes @ 0x3ffb9d08 100 [2.943024150] LOG: I (3239) example: Task[0x3ffb6d04]: free memory @ 0x3ffb9c3c 105 [2.943212125] LOG: I (3239) example: Task[0x3ffb83ec]: free memory @ 0x3ffb9d08 114 [2.943734250] LOG: I (3240) example: Task[0x3ffb8f28]: allocated 594 bytes @ 0x3ffb9c3c 115 [2.943867850] LOG: I (3240) example: Task[0x3ffb9ad4]: free memory @ 0x3ffb9c3c
|
/hal_espressif-2.7.6/examples/protocols/pppos_client/main/ |
D | Kconfig.projbuild | 87 int "UART Event Task Stack Size" 94 int "UART Event Task Priority"
|
/hal_espressif-2.7.6/tools/idf_py_actions/ |
D | README.md | 36 - tasks - list of Task objects
|
/hal_espressif-2.7.6/examples/peripherals/uart/nmea0183_parser/ |
D | README.md | 45 - Set the stack size of the NMEA Parser task in `NMEA Parser Task Stack Size` option. 46 - Set the priority of the NMEA Parser task in `NMEA Parser Task Priority` option.
|
/hal_espressif-2.7.6/examples/bluetooth/nimble/blecent/ |
D | README.md | 62 I (722) NimBLE_BLE_CENT: BLE Host Task Started 88 I (480) NimBLE_BLE_CENT: BLE Host Task Started
|
/hal_espressif-2.7.6/examples/system/freertos/real_time_stats/ |
D | README.md | 46 | Task | Run Time | Percentage
|
/hal_espressif-2.7.6/examples/bluetooth/nimble/blehr/ |
D | README.md | 52 I (421) NimBLE_BLE_HeartRate: BLE Host Task Started
|
/hal_espressif-2.7.6/tools/ |
D | idf.py | 213 class Task(object): class 277 return Task(
|
/hal_espressif-2.7.6/examples/bluetooth/bluedroid/classic_bt/bt_spp_initiator/ |
D | README.md | 121 - Task configuration part is in `example_spp_initiator_demo.c`.
|
/hal_espressif-2.7.6/examples/bluetooth/nimble/bleprph/ |
D | README.md | 61 I (508) NimBLE_BLE_PRPH: BLE Host Task Started
|
/hal_espressif-2.7.6/docs/en/api-reference/protocols/ |
D | esp_tls.rst | 99 | Task Stack Used | ~2.2 Kb | ~3.6 Kb |
|
12