aboutsummaryrefslogtreecommitdiffstats
path: root/src/FreeRTOS
Commit message (Collapse)AuthorAgeFilesLines
* Refactor pvPortRealloc() to improve readability.Jean-François Milants2023-05-181-51/+36
|
* Add pvPortRealloc() in heap_4_infinitime.c. An implementation of realloc() ↵Jean-François Milants2023-05-181-0/+73
| | | | is needed by NimBLE.
* Copy the memory manager heap_4.c from the FreeRTOS distribution to the ↵Jean-François Milants2023-05-181-0/+444
| | | | InfiniTime project codebase. This will allow to implement custom functionalities that are not available in the original implementation.
* Remove debug defines (DEBUG & DEBUG_NRF_USER) from the build. These debug ↵JF0022021-06-011-20/+19
| | | | | | can be useful for debugging purposes but not in production (release). (#400) This reduces the size of the binary by about 6KB! This also removes filepath that were embedded into the binary (.bin) file.
* Fix IRQ management in FreeRTOS to avoid crash and deadlock in BLE stack.Jean-François Milants2021-02-142-2/+24
|
* 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).
* Apply fix for errata 87 (FPU issue).JF2020-06-191-0/+8
|
* Improve power consumption and SLEEP mode :JF2020-01-055-0/+1032
- 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)