aboutsummaryrefslogtreecommitdiffstats
path: root/src/FreeRTOS/portmacro_cmsis.h
Commit message (Collapse)AuthorAgeFilesLines
* Use all free RAM for FreeRTOS heapFelipe Martínez2024-12-091-0/+1
| | | | | * Use all free RAM for FreeRTOS heap * Wrap newlib malloc and related functions * Implement calloc
* Fix IRQ management in FreeRTOS to avoid crash and deadlock in BLE stack.Jean-François Milants2021-02-141-2/+4
|
* Use PRIMASK instead of BASEPRI for critical sections in FreeRTOS. This is ↵JF2020-06-191-2/+2
| | | | needed by NimBLE to be able to mask radio interrupt (which has priority 0).
* Improve power consumption and SLEEP mode :JF2020-01-051-0/+187
- Disable IDLE hook (it would wake the device up as soon as possible). - Logger task sleep for 100ms (disable logging for better battery life) - Logging is disabled by default - Apply fix for ERRATA 87 (clear FPU interrupt before going to sleep). Ports files from FreeRTOS are now in the sources (they where in the SDK before)