Difference between revisions of "FreeRTOS"
m (→Specific Boards Usable with FreeRTOS) |
m |
||
Line 27: | Line 27: | ||
<!-- comment --> | <!-- comment --> | ||
− | == First Topics Explored == | + | == [[#top|^]] First Topics Explored == |
RTOS fundamentals covered in pages of FreeRTOS site: | RTOS fundamentals covered in pages of FreeRTOS site: | ||
Line 50: | Line 50: | ||
<!-- comment --> | <!-- comment --> | ||
− | == FreeRTOS Ported To Microcontroller Families == | + | == [[#top|^]] FreeRTOS Ported To Microcontroller Families == |
Line 63: | Line 63: | ||
<!-- comment --> | <!-- comment --> | ||
− | == Specific Boards Usable with FreeRTOS == | + | == [[#top|^]] Specific Boards Usable with FreeRTOS == |
Line 75: | Line 75: | ||
+ | <!-- comment --> | ||
+ | |||
+ | == [[#top|^]] FreeRTOS Architecture == | ||
+ | |||
+ | Task Control Block (TCB) memory allocation . . . | ||
− | + | * https://www.freertos.org/FreeRTOS_Support_Forum_Archive/January_2018/freertos_Task_control_block_memory_allocation_55c3c1a5j.html | |
Revision as of 19:54, 11 May 2018
Wiki Main Page | User Page of Ted | Google search engine
FreeRTOS notes
operating system used and recommended by Neil M.
2017-12-08
Contents
Overview
Ted starting a wiki page to hold notes and findings from working through demos and tutorials on FreeRTOS operating system. First goals include:
- Learning what target CPUs, dev boards and systems run FreeRTOS
- Learning what emulators run and support testing of FreeRTOS instances
^ First Topics Explored
RTOS fundamentals covered in pages of FreeRTOS site:
These initial links will likely be moved or removed, they're just first places Ted checked out at FreeRTOS site:
- 2017-12-27 WED -
FreeRTOS demo applications described in overview fashion at https://www.freertos.org/a00102.html.
- https://www.freertos.org/a00017.html . . . source code organization,
- https://www.freertos.org/a00090.html . . . FreeRTOS ports, each its own web page,
^ FreeRTOS Ported To Microcontroller Families
- 2017-12-15 FRI -
FreeRTOS ports to various microcontroller families:
^ Specific Boards Usable with FreeRTOS
2018-04-10
Singleton Pattern mentioned in section named "Basics" in the following wiki document about San Jose State University LPC1758 dev board:
^ FreeRTOS Architecture
Task Control Block (TCB) memory allocation . . .