fsfw/osal/FreeRTOS
2020-04-22 19:42:42 +02:00
..
BinarySemaphore.cpp freertos includes in extern "C" 2020-04-22 19:42:42 +02:00
BinarySemaphore.h freertos includes in extern "C" 2020-04-22 19:42:42 +02:00
Clock.cpp various changes, stopwatch 2020-04-08 18:08:14 +02:00
FixedTimeslotTask.cpp fixed slot sequence safety check added 2020-04-16 13:17:26 +02:00
FixedTimeslotTask.h new file for freeRTOS task management functions 2020-02-26 16:55:35 +01:00
MessageQueue.cpp message queue adaptation for ISRs 2020-04-18 13:32:40 +02:00
MessageQueue.h Merge remote-tracking branch 'upstream/master' 2020-04-18 13:30:22 +02:00
Mutex.cpp sempahore wrapper extended 2020-02-25 17:04:21 +01:00
Mutex.h freertos includes in extern "C" 2020-04-22 19:42:42 +02:00
MutexFactory.cpp message queue IF return values 2020-02-27 19:00:51 +01:00
PeriodicTask.cpp Updated FreeRTOS Osal 2019-08-28 14:50:24 +02:00
PeriodicTask.h new file for freeRTOS task management functions 2020-02-26 16:55:35 +01:00
QueueFactory.cpp Small possilbe bugfix in MessageQueue.cpp 2020-02-15 15:37:00 +01:00
README.md Updated FreeRTOS Osal 2019-08-28 14:50:24 +02:00
TaskFactory.cpp Small possilbe bugfix in MessageQueue.cpp 2020-02-15 15:37:00 +01:00
TaskManagement.cpp Merge branch 'mueller_framework' of https://egit.irs.uni-stuttgart.de/KSat/fsfw into mueller_framework 2020-03-03 00:07:48 +01:00
TaskManagement.h renamed system context to call context 2020-03-02 01:00:17 +01:00
Timekeeper.cpp various changes, stopwatch 2020-04-08 18:08:14 +02:00
Timekeeper.h various changes, stopwatch 2020-04-08 18:08:14 +02:00

FreeRTOS Readme

Main.cpp Notices

Tasks

A FreeRTOS application needs to start

vTaskStartScheduler()

before creating Tasks. Keep this in mind for the mission dependent code! This has to be done before the Task Factory is used.