fsfw/osal/FreeRTOS
2020-06-02 15:57:04 +02:00
..
BinarySemaphore.cpp removed context switch request 2020-05-29 13:02:13 +02:00
BinarySemaphore.h removed extern "C" for freertos includes 2020-05-29 13:18:27 +02:00
BinSemaphUsingTask.cpp removed context switch request 2020-05-29 13:02:13 +02:00
BinSemaphUsingTask.h removed extern "C" for freertos includes 2020-05-29 13:18:27 +02:00
Clock.cpp actually extern "C" is not needed 2020-05-29 13:15:37 +02:00
CountingSemaphore.cpp removed extern "C" for freertos includes 2020-05-29 13:18:27 +02:00
CountingSemaphore.h implemented counting semaph for linux 2020-05-29 01:41:16 +02:00
CountingSemaphUsingTask.cpp retval fix, unittest running again 2020-05-29 03:03:48 +02:00
CountingSemaphUsingTask.h retval fix, unittest running again 2020-05-29 03:03:48 +02:00
FixedTimeslotTask.cpp removed conflict markers 2020-05-15 21:14:21 +02:00
FixedTimeslotTask.h corrected doc for task factory interface 2020-05-31 00:23:38 +02:00
MessageQueue.cpp removed extern "C" for freertos includes 2020-05-29 13:18:27 +02:00
MessageQueue.h removed extern "C" for freertos includes 2020-05-29 13:18:27 +02:00
Mutex.cpp using nullptr now 2020-05-29 14:15:45 +02:00
Mutex.h using nullptr now 2020-05-29 14:15:45 +02:00
MutexFactory.cpp Merge branch 'mueller_BinSempahInterface' into mueller_framework 2020-05-18 20:46:50 +02:00
PeriodicTask.cpp added deadline check 2020-05-16 13:09:50 +02:00
PeriodicTask.h improved include guard and removed old comment 2020-06-02 15:57:04 +02:00
QueueFactory.cpp some refactoring 2020-05-16 20:58:48 +02:00
README.md Updated FreeRTOS Osal 2019-08-28 14:50:24 +02:00
SemaphoreFactory.cpp replaced old semaph api 2020-05-27 21:27:31 +02:00
TaskFactory.cpp self deletion nullptr 2020-05-31 23:28:51 +02:00
TaskManagement.cpp removed context switch request 2020-05-29 13:02:13 +02:00
TaskManagement.h removed context switch request 2020-05-29 13:02:13 +02:00
Timekeeper.cpp improved structure a bit 2020-05-29 13:09:47 +02:00
Timekeeper.h actually extern "C" is not needed 2020-05-29 13:15:37 +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.