This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
FreeRTOS-Kernel/FreeRTOS/Demo/Common/Minimal
Richard Barry 225f13bac2 Update TaskNotify.c to test the condition where a direct to task notification is sent to a suspended task.
Introduce configSTACK_DEPTH_TYPE so the application writer change the type used to specify a stack size from uint16_t to whatever they like.  Defaults to uint16_t if not defined.
Introduce configINITIAL_TICK_COUNT to allow users to start the tick count at something other than 0.  Used for testing, but overflows can be better tested by setting configUSE_16_BIT_TICKS to 1.
Split xQueueGenericReceive() into xQueueReceive(), xQueuePeek() and xQueueSemaphoreTake() as the first step in refactoring xQueueGenericReceive().
Add Cortex-M3 port layer for Code Composer Studio - previously there was only a Cortex-M4F port.
Introduce configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING() to allow applications to prevent portSUPPRESS_TICKS_AND_SLEEP() being called.  Previously the portPRE_SLEEP_PROCESSING() macro could only be used to abort entry into sleep time after clocks had been re-programmed for the distant wake time.
2016-11-25 21:07:56 +00:00
..
AbortDelay.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
BlockQ.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
blocktim.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
comtest_strings.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
comtest.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
countsem.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
crflash.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
crhook.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
death.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
dynamic.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
EventGroupsDemo.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
flash_timer.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
flash.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
flop.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
GenQTest.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
integer.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
IntQueue.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
IntSemTest.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
PollQ.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
QPeek.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
QueueOverwrite.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
QueueSet.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
QueueSetPolling.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
readme.txt Prepare for a FreeRTOS V9 release candidate: 2016-02-18 10:07:42 +00:00
recmutex.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
semtest.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
sp_flop.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
StaticAllocation.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00
TaskNotify.c Update TaskNotify.c to test the condition where a direct to task notification is sent to a suspended task. 2016-11-25 21:07:56 +00:00
TimerDemo.c Prepare for V9.0.0 release: 2016-05-20 18:05:46 +00:00

This directory contains the implementation of the "common demo tasks".  These
are test tasks and demo tasks that are used by nearly all the demo applications.