1 Documentation and download available at http://www.FreeRTOS.org/
3 Changes between FreeRTOS V10.4.0 and FreeRTOS V10.3.1 released September 2020
5 See https://www.FreeRTOS.org/FreeRTOS-V10.4.x.html
9 + Task notifications: Prior to FreeRTOS V10.4.0 each created task had a
10 single direct to task notification. From FreeRTOS V10.4.0 each task has
11 an array of notifications. The direct to task notification API has been
12 extended with API functions postfixed with "Indexed" to enable the API to
13 operate on a task notification at any array index. See
14 https://www.freertos.org/RTOS-task-notifications.html for more information.
15 + Kernel ports that support memory protection units (MPUs): The ARMv7-M and
16 ARMv8-M MPU ports now support a privilege access only heap. The ARMv7-M
17 MPU ports now support devices that have 16 MPU regions, have the ability
18 to override default memory attributes for privileged code and data
19 regions, and have the ability to place the FreeRTOS kernel code outside of
20 the Flash memory. The ARMv8-M MPU ports now support tickless idle mode.
21 See https://www.freertos.org/FreeRTOS-MPU-memory-protection-unit.html
24 Additional noteworthy updates:
26 + Code formatting is now automated to facilitate the increase in
27 collaborative development in Git. The auto-formated code is not identical
28 to the original formatting conventions. Most notably spaces are now used
30 + The prototypes for callback functions (those that start with "Application",
31 such as vApplicationStackOverflowHook()) are now in the FreeRTOS header
32 files, removing the need for application writers to add prototypes into
33 the C files in which they define the functions.
34 + New Renesas RXv3 port layer.
35 + Updates to the Synopsys ARC code, including support for EM and HS cores,
37 + Added new POSIX port layer that allows FreeRTOS to run on Linux hosts in
38 the same way the Windows port layer enables FreeRTOS to run on Windows
40 + Many other minor optimisations and enhancements. For full details
41 see https://github.com/FreeRTOS/FreeRTOS-Kernel/commits/master
44 Changes between FreeRTOS V10.2.1 and FreeRTOS V10.3.0 released February 7 2020
46 See http://www.FreeRTOS.org/FreeRTOS-V10.3.x.html
48 New and updated kernel ports:
50 + Added RISC-V port for the IAR compiler.
51 + Update the Windows simulator port to use a synchronous object to prevent
52 a user reported error whereby a task continues to run for a short time
53 after being moved to the Blocked state. Note we were not able to
54 replicate the reported issue and it likely depends on your CPU model.
55 + Correct alignment of stack top in RISC-V port when
56 configISR_STACK_SIZE_WORDS is defined to a non zero value, which causes
57 the interrupt stack to be statically allocated.
58 + The RISC-V machine timer compare register can now be for any HART, whereas
59 previously it was always assumed FreeRTOS was running on HART 0.
60 + Update the sequence used to update the 64-bit machine timer
61 compare register on 32-bit cores to match that suggested in RISC-V
63 + Added tickless low power modes into the ARM, IAR and GCC Cortex-M0 compiler
65 + Updated the behaviour of the ARMv7-M MPU (Memory Protection Unit) ports to
66 match that of the ARMv8-M ports whereby privilege escalations can only
67 originate from within the kernel's own memory segment. Added
68 configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY configuration constant.
69 + Update existing MPU ports to correctly disable the MPU before it is
71 + Added contributed port and demo application for a T-Head (formally C-SKY)
76 + Added the vPortGetHeapStats() API function which returns information on
77 the heap_4 and heap_5 state.
78 + Added xTaskCatchUpTicks(), which corrects the tick count value after the
79 application code has held interrupts disabled for an extended period.
80 + Added xTaskNotifyValueClear() API function.
81 + Added uxTimerGetReloadMode() API function.
83 Other miscellaneous changes:
84 + Change type of uxPendedTicks from UBaseType_t to TickType_t to ensure it
85 has the same type as variables with which it is compared to, and therefore
86 also renamed the variable xPendingTicks.
87 + Update Keil projects that use the MPU so memory regions come from linker
88 script (scatter file) variables instead of being hard coded.
89 + Added LPC51U68 Cortex-M0+ demos for GCC (MCUXpresso), Keil and IAR
91 + Added CORTEX_MPU_STM32L4_Discovery_Keil_STM32Cube demo.
92 + Added LPC54018 MPU demo.
93 + Rename xTaskGetIdleRunTimeCounter() to ulTaskGetIdleRunTimeCounter().
96 Changes between FreeRTOS V10.2.1 and FreeRTOS V10.2.0 released May 13 2019:
98 + Added ARM Cortex-M23 port layer to complement the pre-existing ARM
99 Cortex-M33 port layer.
100 + The RISC-V port now automatically switches between 32-bit and 64-bit
102 + Introduced the portMEMORY_BARRIER macro to prevent instruction re-ordering
103 when GCC link time optimisation is used.
104 + Introduced the portDONT_DISCARD macro to the ARMv8-M ports to try and
105 prevent the secure side builds from removing symbols required by the
106 non secure side build.
107 + Introduced the portARCH_NAME to provide additional data to select semi-
108 automated build environments.
109 + Cortex-M33 and Cortex-M23 ports now correctly disable the MPU before
110 updating the MPU registers.
112 + Added Nuvoton NuMaker-PFM-M2351 ARM Cortex-M23 demo.
113 + Added LPC55S69 ARM Cortex-M33 demo.
114 + Added an STM32 dual core AMP stress test demo.
117 Changes between FreeRTOS V10.1.1 and FreeRTOS V10.2.0 released February 25 2019:
119 + Added GCC RISC-V MCU port with three separate demo applications.
120 + Included pre-existing ARM Cortex-M33 (ARMv8-M) GCC/ARMclang and IAR ports
121 with Keil simulator demo.
122 + Update the method used to detect if a timer is active. Previously the
123 timer was deemed to be inactive if it was not referenced from a list.
124 However, when a timer is updated it is temporarily removed from, then
125 re-added to a list, so now the timer's active status is stored separately.
126 + Add vTimerSetReloadMode(), xTaskGetIdleRunTimeCounter(), and
127 xTaskGetApplicationTaskTagFromISR() API functions.
128 + Updated third party Xtensa port so it is MIT licensed.
129 + Added configINCLUDE_PLATFORM_H_INSTEAD_OF_IODEFINE_H to the Renesas
130 compiler RX600v2 port to enable switching between platform.h and
131 iodefine.h includes within that port's port.c file.
132 + Removed the 'FromISR' functions from the MPU ports as ISRs run privileged
134 + Added uxTaskGetStackHighWaterMark2() function to enable the return type to
135 be changed without breaking backward compatibility.
136 uxTaskGetStackHighWaterMark() returns a UBaseType_t as always,
137 uxTaskGetStackHighWaterMark2() returns configSTACK_DEPTH_TYPE to allow the
138 user to determine the return type.
139 + Fixed issues in memory protected ports related to different combinations
140 of static memory only and dynamic memory only builds. As a result the
141 definition of tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE became more
142 complex and was moved to FreeRTOS.h with a table explaining its definition.
143 + Added a 'get task tag from ISR' function.
144 + Change the method used to determine if a timer is active or not from just
145 seeing if it is referenced from the active timer list to storing its
146 active state explicitly. The change prevents the timer reporting that it
147 is inactive while it is being moved from one list to another.
148 + The pcName parameter passed into the task create functions can be NULL,
149 previously a name had to be provided.
150 + When using tickless idle, prvResetNextTaskUnblockTime() is now only called
151 in xTaskRemoveFromEventList() if the scheduler is not suspended.
152 + Introduced portHAS_STACK_OVERFLOW_CHECKING, which should be set to 1 for
153 FreeRTOS ports that run on architectures that have stack limit registers.
156 Changes between FreeRTOS V10.1.0 and FreeRTOS V10.1.1 released 7 September 2018
158 + Reverted a few structure name changes that broke several kernel aware
160 + Updated to the latest trace recorder code.
161 + Fixed some formatting in the FreeRTOS+TCP TCP/IP stack code.
162 + Reverted moving some variables from file to function scope as doing so
163 broke debug scenarios that require the static qualifier to be removed.
165 Changes between FreeRTOS V10.0.1 and FreeRTOS V10.1.0 released 22 August 2018
167 FreeRTOS Kernel Changes:
169 + Update lint checked MISRA compliance to use the latest MISRA standard, was
170 previously using the original MISRA standard.
171 + Updated all object handles (TaskHandle_t, QueueHandle_t, etc.) to be
172 unique types instead of void pointers, improving type safety. (this was
173 attempted some years back but had to be backed out due to bugs in some
174 debuggers). Note this required the pvContainer member of a ListItem_t
175 struct to be renamed - set configENABLE_BACKWARD_COMPATIBILITY to 1 if
176 this causes an issue.
177 + Added configUSE_POSIX_ERRNO to enable per task POSIX style errno
178 functionality in a more user friendly way - previously the generic thread
179 local storage feature was used for this purpose.
180 + Added Xtensa port and demo application for the XCC compiler.
181 + Changed the implementation of vPortEndScheduler() for the Win32 port to
182 simply call exit( 0 ).
183 + Bug fix in vPortEnableInterrupt() for the GCC Microblaze port to protect
184 the read modify write access to an internal Microblaze register.
185 + Fix minor niggles when the MPU is used with regards to prototype
186 differences, static struct size differences, etc.
187 + The usStackHighWaterMark member of the TaskStatus_t structure now has type
188 configSTACK_DEPTH_TYPE in place of uint16_t - that change should have been
189 made when the configSTACK_DEPTH_TYPE type (which gets around the previous
190 16-bit limit on stack size specifications) was introduced.
191 + Added the xMessageBufferNextLengthBytes() API function and likewise stream
193 + Introduce configMESSAGE_BUFFER_LENGTH_TYPE to allow the number of bytes
194 used to hold the length of a message in the message buffer to be reduced.
195 configMESSAGE_BUFFER_LENGTH_TYPE default to size_t, but if, for example,
196 messages can never be more than 255 bytes it could be set to uint8_t,
197 saving 3 bytes each time a message is written into the message buffer
198 (assuming sizeof( size_t ) is 4).
199 + Updated the StaticTimer_t structure to ensure it matches the size of the
200 Timer_t structure when the size of TaskFunction_t does not equal the size
202 + Update various Xilinx demos to use 2018.1 version of the SDK tools.
203 + Various updates to demo tasks to maintain test coverage.
204 + FreeRTOS+UDP was removed in FreeRTOS V10.1.0 as it was replaced by
205 FreeRTOS+TCP, which was brought into the main download in FreeRTOS
206 V10.0.0. FreeRTOS+TCP can be configured as a UDP only stack, and
207 FreeRTOS+UDP does not contain the patches applied to FreeRTOS+TCP.
209 FreeRTOS+TCP Changes:
211 + Multiple security improvements and fixes in packet parsing routines, DNS
212 caching, and TCP sequence number and ID generation.
213 + Disable NBNS and LLMNR by default.
214 + Add TCP hang protection by default.
216 We thank Ori Karliner of Zimperium zLabs Team for reporting these issues.
219 Changes between FreeRTOS V10.0.0 and FreeRTOS V10.0.1, released December 20 2017
221 + Fix position of "#if defined( __cplusplus )" in stream_buffer.h.
222 + Correct declarations of MPU_xQueuePeek() and MPU_xQueueSemaphoreTake() in
224 + Correct formatting in vTaskList() helper function when it prints the state
225 of the currently executing task.
226 + Introduce #error if stream_buffer.c is built without
227 configUSE_TASK_NOTIFICATIONS set to 1.
228 + Update FreeRTOS+TCP to V2.0.0
229 - Improve the formatting of text that displays the available netword
230 interfaces when FreeRTOS+TCP is used on Windows with WinPCap.
231 - Introduce ipconfigSOCKET_HAS_USER_WAKE_CALLBACK option to enable a user
232 definable callback to execute when data arrives on a socket.
234 Changes between FreeRTOS V9.0.1 and FreeRTOS V10.0.0:
236 The FreeRTOS kernel is now MIT licensed: https://www.FreeRTOS.org/license
238 New Features and components:
240 + Stream Buffers - see http://www.FreeRTOS.org/RTOS-stream-buffer-example.html
241 + Message Buffers - see http://www.FreeRTOS.org//RTOS-message-buffer-example.html
242 + Move FreeRTOS+TCP into the main repository, along with the basic Win32
243 TCP demo FreeRTOS_Plus_TCP_Minimal_Windows_Simulator.
247 + Added demo for TI SimpleLink CC3220 MCU.
248 + Added MPU and non MPU projects for Microchip CEC and MEC 17xx and 51xx
250 + Added CORTEX_MPU_Static_Simulator_Keil_GCC demo to test static allocation
253 Fixes or enhancements:
255 + Cortex-M ports push additional register prior to calling
256 vTaskSwitchContext to ensure 8-byte alignment is maintained. Only
257 important if a user defined tick hook function performs an operation that
258 requires 8-byte alignment.
259 + Optimisations to the implementation of the standard tickless idle mode on
261 + Improvements to the Win32 port including using higher priority threads.
262 + Ensure interrupt stack alignment on PIC32 ports.
263 + Updated GCC TriCore port to build with later compiler versions.
264 + Update mpu_wrappers.c to support static allocation.
265 + The uxNumberOfItems member of List_t is now volatile - solving an issue
266 when the IAR compiler was used with maximum optimization.
267 + Introduced configRECORD_STACK_HIGH_ADDRESS. When set to 1 the stack start
268 address is saved into each task's TCB (assuming stack grows down).
269 + Introduced configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H to allow user defined
270 functionality, and user defined initialisation, to be added to FreeRTOS's
271 tasks.c source file. When configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H is
272 set to 1 a user provided header file called freertos_task_c_additions.h
273 will be included at the bottom of tasks.c. Functions defined in that
274 header file can call freertos_tasks_c_additions_init(), which in turn
275 calls a macro called FREERTOS_TASKS_C_ADDITIONS_INIT(), if it is defined.
276 FREERTOS_TASKS_C_ADDITIONS_INIT() can be defined in FreeRTOSConfig.h.
277 + Introduced configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( x ) which can be
278 defined by a user in FreeRTOSConfig.h. The macro is called before
279 assessing whether to enter tickless idle mode or not. If the macro sets
280 x to zero then tickless idle mode will not be entered. This allows users
281 to abort tickless idle mode entry before the tickless idle function is
282 even called - previously it was only possible to abort from within the
283 tickless idle function itself.
284 + Added configPRINTF(), which can be defined by users to allow all libraries
285 to use the same print formatter.
286 + Introduced configMAX() and configMIN() macros which default to standard
287 max( x, y ) and min( x, y ) macro behaviour, but can be overridden if the
288 application writer defines the same macros in FreeRTOSConfig.h.
289 + Corrected the definition of StaticTask_t in the case where
290 INCLUDE_xTaskAbortDelay is set to 1.
291 + Introduced configTIMER_SERVICE_TASK_NAME and configIDLE_TASK_NAME, both of
292 which can be defined to strings in FreeRTOSConfig.h to change the default
293 names of the timer service and idle tasks respectively.
294 + Only fill the stack of a newly created task with a known value if stack
295 checking, or high water mark checking/viewing, is in use - removing the
296 dependency on memset() in other cases.
297 + Introduced xTaskCreateRestrictedStatic() so static allocation can be used
299 + Ensure suspended tasks cannot be unsuspended by a received task
301 + Fix race condition in vTaskSetTimeOutState().
302 + Updated trace recorder files to the latest version.
304 Changes since FreeRTOS V9.0.0:
306 + Priority dis-inheritance behaviour has been enhanced in the case where a
307 task that attempted to take a mutex that was held by a lower priority task
308 timed out before it was able to obtain the mutex (causing the task that
309 holds the mutex to have its priority raised, then lowered again, in
310 accordance with the priority inheritance protocol).
311 + Split the overloaded xQueueGenericReceive() function into three separate
313 + Allow the default human readable text names given to the Idle and Timer
314 tasks to be overridden by defining the configIDLE_TASK_NAME and
315 configTIMER_SERVICE_TASK_NAME definitions respectively in FreeRTOSConfig.h.
316 + Introduced configINITIAL_TICK_COUNT to allow the tick count to take a
317 value of than than 0 when the system boots. This can be useful for
318 testing purposes - although setting configUSE_16_BIT_TICKS to 1 can also
319 be used to test frequent tick overflows.
320 + Ensure the Cortex-M SysTick count is cleared to zero before starting the
322 + Add configASSERT() into ARM Cortex-M ports to check the number of priority
324 + Clear the 'control' register before starting ARM Cortex-M4F ports in case
325 the FPU is used before the scheduler is started. This just saves a few
326 bytes on the main stack as it prevents space being left for a later save
328 + Added xSemaphoreGetMutexHolderFromISR().
329 + Corrected use of portNVIC_PENDSVSET to portNVIC_PENDSVSET_BIT in MPU ports.
330 + Introduced configSTACK_DEPTH_TYPE to allow users to change the type used
331 to specify the stack size when using xTaskCreate(). For historic reasons,
332 when FreeRTOS was only used on small MCUs, the type was set to uint16_t,
333 but that can be too restrictive when FreeRTOS is used on larger
334 processors. configSTACK_DEPTH_TYPE defaults to uint16_t.
335 xTaskCreateStatic(), being a newer function, used a uint32_t.
336 + Increase the priority of the Windows threads used by the Win32 port. As
337 all the threads run on the same core, and the threads run with very high
338 priority, there is a risk that the host will become unresponsive, so also
339 prevent the Windows port executing on single core hosts.
341 Changes between FreeRTOS V9.0.0 and FreeRTOS V9.0.0rc2 released May 25 2016:
343 See http://www.FreeRTOS.org/FreeRTOS-V9.html
347 + The prototype of the new xTaskCreateStatic() API function was modified to
348 remove a parameter and improve compatibility with other new
349 "CreateStatic()" API functions. The stack size parameter in
350 xTaskCreateStatic() is now uint32_t, which changes the prototype of the
351 callback functions. See the following URL:
352 http://www.freertos.org/xTaskCreateStatic.html
353 + GCC ARM Cortex-A port: Introduced the configUSE_TASK_FPU_SUPPORT
354 constant. When configUSE_TASK_FPU_SUPPORT is set to 2 every task is
355 automatically given a floating point (FPU) context.
356 + GCC ARM Cortex-A port: It is now possible to automatically save and
357 restore all floating point (FPU) registers on entry to each potentially
358 nested interrupt by defining vApplicationFPUSafeIRQHandler() instead of
359 vApplicationIRQHandler().
360 + All ARM Cortex-M3/4F/7 ports: Clear the least significant bit of the task
361 entry address placed onto the stack of a task when the task is created for
362 strict compliance with the ARM Cortex-M3/4/7 architecture documentation
363 (no noticeable effect unless using the QMEU emulator).
364 + Added GCC and Keil ARM Cortex-M4F MPU ports - previously the MPU was only
365 supported on ARM Cortex-M3.
366 + ARM Cortex-M3/4F MPU ports: Update to fully support the FreeRTOS V9.0.0
367 API (other than static object creation) and added the
368 FreeRTOS/Demo/CORTEX_MPU_Simulator_Keil_GCC demo application to
369 demonstrate how to use the updated MPU port.
370 + All ARM Cortex-M3/4F/7 ports: Add additional barrier instructions to the
371 default low power tickless implementation.
372 + All ARM Cortex-M0 ports: Prevent an item being left on the stack of the
373 first task that executes.
374 + Win32 ports: Reduce the amount of stack used and change the way Windows
375 threads are deleted to increase the maximum execution time.
376 + Add an ARM Cortex-M4F port for the MikroC compiler. Ensure to read the
377 documentation page for this port before use.
378 + MPS430X IAR port: Update to be compatible with the latest EW430 tools
380 + IAR32 GCC port: Correct vPortExitCritical() when
381 configMAX_API_CALL_INTERRUPT_PRIORITY == portMAX_PRIORITY.
382 + For consistency vTaskGetTaskInfo() now has the alias vTaskGetInfo(),
383 xTaskGetTaskHandle() now has the alias xTaskGetHandle() and
384 pcQueueGetQueueName() now has an alias pcQueueGetName().
385 + Fix various errors in comments and compiler warnings.
387 Demo application updates:
389 + Update Atmel Studio projects to use Atmel Studio 7.
390 + Update Xilinx SDK projects to use the 2016.1 version of the SDK.
391 + Remove dependency on legacy IO libraries from the PIC32 demos.
392 + Move the Xilinx UltraScale Cortex-R5 demo into the main distribution.
393 + Update the MSP432 libraries to the latest version.
394 + Add Microchip CEC1302 (ARM Cortex-M4F) demos for GCC, Keil and MikroC
396 + Move the Atmel SAMA5D2 demo into the main distribution.
398 Changes between FreeRTOS V9.0.0rc1 and FreeRTOS V9.0.0rc2 (release candidate 2)
399 released March 30 2016:
401 NOTE - See http://www.FreeRTOS.org/FreeRTOS-V9.html for details
403 + The functions that create RTOS objects using static memory allocation have
404 been simplified and will not revert to using dynamic allocation if a
405 buffer is passed into a function as NULL.
406 + Introduced the configSUPPORT_DYNAMIC_ALLOCATION configuration constant to
407 allow a FreeRTOS application to be built without a heap even being being
408 defined. The Win32 example located in the
409 /FreeRTOS/demo/WIN32-MSVC-Static-Allocation-Only directory is provided as
410 a reference for projects that do not include a FreeRTOS heap.
411 + Minor run-time optimisations.
412 + Two new low power tickless implementations that target Silicon Labs EFM32
414 + Addition of the xTimerGetPeriod() and xTimerGetExpireTime() API functions.
416 Changes between FreeRTOS V8.2.3 and FreeRTOS V9.0.0rc1 (release candidate 1)
417 released February 19 2016:
421 + Major new feature - tasks, semaphores, queues, timers and event groups can
422 now be created using statically allocated memory, so without any calls to
424 + Major new features - Added the xTaskAbortDelay() API function which allows
425 one task to force another task to immediately leave the Blocked state,
426 even if the event the blocked task is waiting for has not occurred, or the
427 blocked task's timeout has not expired.
428 + Updates necessary to allow FreeRTOS to run on 64-bit architectures.
429 + Added vApplicationDaemonTaskStartupHook() which executes when the RTOS
430 daemon task (which used to be called the timer service task) starts
431 running. This is useful if the application includes initialisation code
432 that would benefit from executing after the scheduler has been started.
433 + Added the xTaskGetTaskHandle() API function, which obtains a task handle
434 from the task's name. xTaskGetTaskHandle() uses multiple string compare
435 operations, so it is recommended that it is called only once per task.
436 The handle returned by xTaskGetTaskHandle() can then be stored locally for
438 + Added the pcQueueGetQueueName() API function, which obtains the name of
439 a queue from the queue's handle.
440 + Tickless idling (for low power applications) can now also be used when
441 configUSE_PREEMPTION is 0.
442 + If one task deletes another task, then the stack and TCB of the deleted
443 task is now freed immediately. If a task deletes itself, then the stack
444 and TCB of the deleted task are freed by the Idle task as before.
445 + If a task notification is used to unblock a task from an ISR, but the
446 xHigherPriorityTaskWoken parameter is not used, then pend a context switch
447 that will then occur during the next tick interrupt.
448 + Heap_1.c and Heap_2.c now use the configAPPLICATION_ALLOCATED_HEAP
449 settings, which previously was only used by heap_4.c.
450 configAPPLICATION_ALLOCATED_HEAP allows the application writer to declare
451 the array that will be used as the FreeRTOS heap, and in-so-doing, place
452 the heap at a specific memory location.
453 + TaskStatus_t structures are used to obtain details of a task.
454 TaskStatus_t now includes the bae address of the task's stack.
455 + Added the vTaskGetTaskInfo() API function, which returns a TaskStatus_t
456 structure that contains information about a single task. Previously this
457 information could only be obtained for all the tasks at once, as an array
458 of TaskStatus_t structures.
459 + Added the uxSemaphoreGetCount() API function.
460 + Replicate previous Cortex-M4F and Cortex-M7 optimisations in some
461 Cortex-M3 port layers.
463 Demo Application Updates:
465 Further demo applications will be added prior to the final FreeRTOS V9
468 + Updated SAM4L Atmel Studio project to use Atmel Studio 7.
469 + Added ARM Cortex-A53 64-bit port.
470 + Added a port and demo for the ARM Cortex-A53 64-bit cores on the Xilinx
472 + Added Cortex-M7 SAME70 GCC demo.
473 + Added EFM32 Giant and Wonder Gecko demos.
476 Changes between V8.2.2 and V8.2.3 released October 16, 2015
480 + Fix bug identified in a modification made in V8.2.2 to the software timer
481 code that allows tickless low power applications to sleep indefinitely
482 when software timers are used.
483 + Simplify and improve efficiency of stack overflow checking.
484 + Add xTaskNotifyStateClear() API function.
485 + New IAR and GCC Cortex-R ports for microprocessors that do not use an ARM
486 generic interrupt controller (GIC).
487 + New PIC32MEC14xx port.
488 + Add support for PIC32MZ EF parts (with floating point) into the PIC32MZ
490 + Zynq7000 port layer now declares the functions that setup and clear the
491 tick interrupt as weak symbols so they can be overridden by the
492 application, and uses a global XScuGic object so the same object can be
493 used by the application code.
494 + Introduced configUSE_TASK_FPU_SUPPORT, although the PIC32MZ EF port is
495 currently the only port that uses it.
496 + Updates to RL78 and 78K0 IAR port layers to improve support for
497 combinations of memory models.
498 + Minor updates to heap_5.c to remove compiler warnings generated by some
500 + License simplifications. See /FreeRTOS/License/license.txt in the
501 official distribution.
505 + Update directory names to use WolfSSL instead of CyaSSL, inline with
506 WolfSSL's re-branding.
507 + Update to latest WolfSSL code.
508 + Update to latest FreeRTOS+Trace recorder code.
509 + Add in the FreeRTOS+Trace recorder library required for streaming trace.
511 Demo application changes:
513 + Add demo applications for Renesas RZ/T (Cortex-R), PIC32MZ EF (PIC32 with
514 floating point hardware), PIC32MEC14xx, RX71M, RX113 and RX231.
515 + General tidy up of spelling and compiler warnings.
518 Changes between V8.2.1 and V8.2.2 released August 12, 2015
522 + Added Intel IA32/x86 32-bit port.
523 + General maintenance.
524 + PRIVILEGED_FUNCTION and PRIVILEGED_DATA macros, which are used in memory
525 protected systems, have been added to the newer event group and software
527 + Add the errno definitions used by FreeRTOS+ components into projdefs.h.
528 + Remove the restriction that prevented tick-less idle implementations
529 waiting indefinitely when software timers were used in the same
531 + Introduce xTaskNotifyAndQueryFromISR() as the interrupt safe version of
532 xTaskNotifyAndQuery().
533 + Add additional NOPs to the MSP430X port layers to ensure strict compliance
534 with the hardware documentation.
535 + Microblaze port: Added option for port optimised task selection.
536 + Microblaze port: Previously tasks inherited the exception enable state
537 at the time the task was created. Now all tasks are created with
538 exceptions enabled if the Microblaze design supports exceptions.
539 + Windows port: Add additional safe guards to ensure the correct start up
540 sequence and thread switching timing.
541 + Windows port: Improve the implementation of the port optimised task
542 selection assembly code.
543 + Update heap_4 and heap_5 to allow use on 64-bit processors.
544 + Simplify the code that creates a queue.
545 + General improved tick-less idle behaviour.
546 + Ensure none of the variables in the common kernel files are initialised to
547 anything other than zero.
548 + Correct calculation of xHeapStructSize in heap_4 and heap_5.
550 Demo application updates:
552 + Added demo project for the new IA32/x86 port that targets the Galileo
554 + Added MSP430FR5969 demos (previously provided as a separate download).
555 + Added FreeRTOS BSP repository for automatic creation of FreeRTOS
556 applications in the Xilinx SDK.
557 + Added Atmel Studio / GCC project for the SAMV71 (ARM Cortex-M7)
558 + Update Xilinx SDK projects to use version 2015.2 of the SDK.
559 + Remove Microblaze demos that were using obsolete tools.
560 + Add MSP43FR5969 IAR and CCS demos.
564 + Updated FreeRTOS+Trace recorder library, which requires an update to the
565 FreeRTOS+Trace application.
566 + Added Reliance Edge source code and demo application. Reliance edge is
567 a fail safe transactional file system ideal for applications that require
568 file storage, and especially when high reliability is essential.
569 + Introduce configAPPLICATION_PROVIDES_cOutputBuffer to allow FreeRTOS+CLI
570 users to place the output buffer at a fixed memory address.
571 + Improve the NetworkInterface.c file provided for the Windows port of
574 Changes between V8.2.0 and V8.2.1 released 24th March 2015.
578 + Added user definable and flexible thread local storage facility.
579 + Added vTimerSetTimerID() API function to complement the pvTimerGetTimerID()
580 function to allow the timer's ID to be used as timer local storage.
581 + Fixed a potential issue related to the use of queue sets from an ISR.
582 + Some updates to the Xilinx Microblaze GCC port.
583 + Added ARM Cortex-M4F port for Texas Instruments Code Composer Studio.
584 + Added ARM Cortex-M7 r0p1 port layer for IAR, GCC and Keil which contains a
585 minor errata work around. All other ARM Cortex-M7 core revisions should
586 use the ARM Cortex-M4F port.
587 + Exclude the whole of croutine.c if configUSE_CO_ROUTINES is set to 0.
588 + Change some data types from uint32_t to size_t in preparation for 64-bit
590 + Update the PIC32 port to remove deprecation warnings output by the latest
592 + Fix bug when xQueueOverwrite() and xQueueOverwrite() from ISR are used to
593 overwrite items in two queues that are part of the same set.
595 Demo application updates:
597 + Added demo application for TI's ARM Cortex-M4F based MSP432
598 microcontroller using IAR, Keil and CCS compilers.
599 + Added demo application for STM32F ARM Cortex-M7 based microcontroller
601 + Added demo application for Atmel SAMV71 ARM Cortex-M7 based
602 microcontroller using IAR and Keil.
603 + Added Microblaze demo that uses the 2014.4 version of the Xilinx SDK and
604 runs on the KC705 evaluation board (Kintex FPGA).
606 Changes between V8.1.2 and V8.2.0 released 16th January 2015
608 Changes between release candidate 1 and the official release are restricted
611 Significant RTOS kernel updates:
613 + MAJOR NEW FEATURE! Task notifications. Please see the following URL for
614 details: http://www.FreeRTOS.org/RTOS-task-notifications.html
615 + NEW HEADER FILE REQUIRED! Obsolete definitions have been separated into
616 a new header file called FreeRTOS/Source/include/deprecated_definitions.h.
617 This header file must be present to build. Note some of the obsolete
618 definitions are still used by very old demo application projects.
620 Other RTOS kernel updates:
622 + Made xSemaphoreGiveFromISR() a function rather than a macro that calls
623 xQueueGenericSendFromISR(). This allows for major performance
624 enhancements at the expense of some additional code size if both functions
625 are used in the same application. NOTE: In most uses cases such use of
626 a semaphore can now be replaced with a task notification which is smaller
628 + The TCB is now always allocated such that the task's stack grows away from
629 the TCB (improves debugging of stack overflows as the overflow will not
630 overwrite the task's name).
631 + GCC, IAR and Keil Cortex-M4F ports now use more inlining (performance
632 enhancements at the cost of a little additional code space).
633 + Queues are now allocated with a single call to pvPortMalloc() which
634 allocates both the queue structure and the queue storage area.
635 + Introduced a new critical section macro for reading the tick count that
636 defines away to nothing in cases where the width of the tick allows the
637 tick count to be read atomically (performance benefits - especially when
639 + Introduced configAPPLICATION_ALLOCATED_HEAP in heap_4.c to allow the
640 application writer to provide their own heap array - and in so doing
641 control the location of the heap.
642 + Introduced configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES which, when set, will
643 include known values in both list and list item structures. The values
644 are intended to assist debugging. If the values get overwritten then it
645 is likely application code has written over RAM used by the kernel.
646 + configASSERT()s in all Cortex-M ports used to test the lowest 5 bits of
647 the interrupt control register to detect taskENTER_CRITICAL() being called
648 from an interrupt. This has been changed to test all 8 bits.
649 + Introduced uxTaskPriorityGetFromISR().
650 + Microblze V8 port now tests XPAR_MICROBLAZE_0_USE_FPU for inequality to 0
651 rather than equality to 1, and 2 and 3 are also valid values.
652 + Cortex-A5 GIC-less port no longer passes the address of the interrupting
653 peripheral into the interrupt handler.
654 + Fix an issue in FreeRTOS-MPU where an attempt was made to free the stack
655 belonging to a task when the task was deleted, even when the stack was
656 allocated statically.
657 + Utility (helper) functions that format task statistic information into
658 human readable tables now pad task names with spaces to ensure columns
659 line up correctly even where task name lengths vary greatly.
660 + Update FreeRTOS+Trace recorder library to version 2.7.0.
662 Demo application updates:
664 + Added two new standard demo task sets: IntSemTest and TaskNotify.
665 + Added port and demo application for Atmel SAMA5D4 Cortex-A5 MPU.
666 + Added demo application for Altera Cyclone V Cortex-A9 MPU.
667 + Updated Zynq demo to use version 2014.4 of Xilinx's SDK and added in
668 demo tasks for new RTOS features.
669 + Updated Atmel SAM4E and SAM4S demos to include a lot of additional test
671 + Fixed a corner case issue in Atmel SAM4L low power tickless
672 implementation, and added button interrupt handling.
673 + Make the interrupt queue tests more tolerant to heave CPU loads.
674 + Updated MSVC FreeRTOS simulator demo to include the latest standard test
676 + Updated MingW/Eclipse FreeRTOS simulator demo to match the FreeRTOS MSVC
678 + Updated all demos that use FreeRTOS+Trace to work with the latest trace
682 Changes between V8.1.1 and V8.1.2 released September 2nd 2014
684 Move the defaulting of configUSE_PORT_OPTIMISED_TASK_SELECTION into the
685 individual port layers where necessary so it does not affect ports that do
686 not support the definition.
688 Changes between V8.1.0 and V8.1.1 released August 29th 2014
690 By popular requests - a minor patch to V8.1.0 to re-instate the ability to
691 give a mutex type semaphore (with priority inheritance) from an interrupt
694 Changes between V8.0.1 and V8.1.0 released August 26th 2014
696 FreeRTOS scheduler, kernel, demo and test updates:
698 + Improved the priority inheritance algorithms to assist integration with
699 off the shelf middleware that may hold multiple mutexes simultaneously.
700 + Introduce heap_5.c, which is similar to heap_4.c but allows the heap to
701 span multiple non-contiguous memory regions.
702 + Updated all Cortex-A9 ports to help trap a couple of common usage errors -
703 the first being when a task incorrectly attempts to exit its implementing
704 function and the second being when a non interrupt safe API function is
705 called from an interrupt.
706 + Update all Cortex-A9 ports to remove obsolete mode switches prior to
707 restoring a task context.
708 + configUSE_PORT_OPTIMISED_TASK_SELECTION now defaults to 1 instead of 0.
709 + Update all Cortex-M3/4F ports to trap a non interrupt safe API function
710 being called from an interrupt handler.
711 + Simplify the alignment checks in heap_4.c.
712 + Update the MSVC Windows simulator demo to use heap_5.c in place of
713 heap_4.c to ensure end users have an example to refer to.
714 + Updated standard demo test code to test the new priority inheritance
716 + Updated the standard demo tasks to make use of stdint and the FreeRTOS
717 specific typedefs that were introduced in FreeRTOS V8.0.0.
718 + Introduce the pdMS_TO_TICKS() macro as a more user friendly and intuitive
719 alternative to pdTICKS_PER_MS - both of which can be used to convert a
720 time specified in milliseconds to a time specified in RTOS ticks.
721 + Fix a bug in the Tasking compiler's Cortex-M port that resulted in an
722 incorrect value being written to the basepri register. This only effects
723 users of the Tasking compiler.
724 + Update the Zynq demo to use version 2014.2 of the SDK and add in an lwIP
725 example that demonstrates lwIP being used with both its raw and sockets
727 + Updated the CCS Cortex-R4 port to enable it to be built with the latest
730 New ports and demo applications:
732 + Two Renesas RX64M ports (RXv2 core) and demos introduced, one for the GCC
733 compiler and one for the Renesas compiler. Both demos use e2 studio.
734 + Generic IAR Cortex-A5 port (without any reliance on a GIC) introduced.
735 The new port is demonstrated on an Atmel SAMA5D3 XPlained board.
737 FreeRTOS+ component updates:
739 + Update CyaSSL to the latest version.
740 + Updated the FreeRTOS+ components supplied directly by Real Time Engineers
741 Ltd. to make use of stdint and the FreeRTOS specific typedefs that were
742 introduced in FreeRTOS V8.0.0.
743 + Rework and simplify the FreeRTOS+FAT SL RAM disk driver.
745 Miscellaneous updates and maintenance:
747 + Update the IAR and DS-5/ARM RZ demos to target the official RZ RSK
748 hardware in place of the previously targeted Renesas internal (not
749 publicly available) hardware.
750 + Various other maintenance tasks.
753 Changes between V8.0.0 and V8.0.1 released 2nd May 2014
755 + Minor fixes to the event group functionality that was released in V8.0.0.
756 The 'clear bits from ISR' functionality is now implemented using a
757 deferred interrupt callback instead of a function, and the 'wait bits' and
758 'task sync' functions now correctly clear internal control bits before
759 returning a value in every possible path through the respective functions.
760 + Ensure the updating of internal control data is protected by a critical
761 section after a task is deleted or suspended.
762 + Minor fixes to FreeRTOS+FAT SL - namely seeking beyond the end of a file
763 when the offset was not a multiple of the sector size.
764 + Ensure Cortex-A9 system registers are only ever accessed as 32-bit values,
765 even when only the lest significant byte of the register is implemented.
769 + Updated the XMC4200 IAR project so it links with version 7.x of the IAR
772 + Add pcTimerGetName() API function.
773 + Call _reclaim_reent() when a task is deleted if configUSE_NEWLIB_REENTRANT
776 Changes between V7.6.0 and V8.0.0 released 19th Feb 2014
778 http://www.freertos.org/upgrading-to-FreeRTOS-V8.html
780 FreeRTOS V8.x.x is a drop-in compatible replacement for FreeRTOS V7.x.x,
781 although a change to the type used to reference character strings may result
782 in application code generating a few (easily clearable) compiler warnings
783 after the upgrade, and an updated typedef naming convention means use of the
784 old typedef names is now discouraged.
785 See http://www.freertos.org/upgrading-to-FreeRTOS-V8.html for full
788 New features and functionality:
790 + Event groups - see http://www.freertos.org/FreeRTOS-Event-Groups.html
791 + Centralised deferred interrupt processing - see
792 http://www.freertos.org/xTimerPendFunctionCallFromISR.html
796 + Previously, when a task left the Blocked state, a context switch was
797 performed if the priority of the unblocked task was greater than or equal
798 to the priority of the Running task. Now a context switch is only
799 performed if the priority of the unblocked task is greater than the
800 priority of the Running task.
801 + New low power tickless demonstration project that targets the ST STM32L
802 microcontroller - see
803 http://www.freertos.org/STM32L-discovery-low-power-tickless-RTOS-demo.html
804 + Add xPortGetMinimumEverFreeHeapSize() to heap_4.c.
805 + Small change to the tickless low power implementation on the SAM4L to
806 ensure the alarm value (compare match value) cannot be set to zero when a
807 tickless period is exited due to an interrupt originating from a source
808 other than the RTOS tick.
809 + Update the GCC/Eclipse Win32 simulator demo to make better use of Eclipse
810 resource filters and match the functionality of the MSVC equivalent.
811 + xTaskIsTaskSuspended() is no longer a public function. Use
812 eTaskGetState() in its place.
813 + Improved trace macros, including tracing of heap usage.
814 + Remove one level of indirection when accepting interrupts on the PIC32MZ.
815 + Add Cortex-A9 GCC port layer.
816 + Add Xilinx Zynq demo application.
819 Changes between V7.5.3 and V7.6.0 released 18th November 2013
821 V7.6.0 changes some behaviour when the co-operative scheduler is used (when
822 configUSE_PREEMPTION is set to 0). It is important to note that the
823 behaviour of the pre-emptive scheduler is unchanged - the following
824 description only applies when configUSE_PREEMPTION is set to 0:
826 WHEN configUSE_PREEMPTION IS SET TO 0 (which is in a small minority of
827 cases) a context switch will now only occur when a task places itself into
828 the Blocked state, or explicitly calls taskYIELD(). This differs from
829 previous versions, where a context switch would also occur when implicitly
830 moving a higher priority task out of the Blocked state. For example,
831 previously, WHEN PREEMPTION WAS TURNED OFF, if task A unblocks task B by
832 writing to a queue, then the scheduler would switch to the higher priority
833 task. Now, WHEN PREEMPTION IS TURNED OFF, if task A unblocks task B by
834 writing to a queue, task B will not start running until task A enters the
835 Blocked state or task A calls taskYIELD(). [If configUSE_PREEMPTION is not
836 set to 0, so the normal pre-emptive scheduler is being used, then task B
837 will start running immediately that it is moved out of the Blocked state].
841 + Added a port layer and a demo project for the new PIC32MZ architecture.
842 + Update the PIC32MX port layer to re-introduce some ehb instructions that
843 were previously removed, add the ability to catch interrupt stack
844 overflows (previously only task stack overflows were trapped), and also
845 add the ability to catch an application task incorrectly attempting to
846 return from its implementing function.
847 + Make dramatic improvements to the performance of the Win32 simulator port
849 + Ensure tasks that are blocked indefinitely report their state as Blocked
850 instead of Suspended.
851 + Slight improvement to the Cortex-M4F port layers where previously one
852 register was inadvertently being saved twice.
853 + Introduce the xSemaphoreCreateBinary() API function to ensure consistency
854 in the semantics of how each semaphore type is created. It is no longer
855 recommended to use vSemaphoreCreateBinary() (the version prefixed with a
856 'v'), although it will remain in the code for backward compatibility.
857 + Update the Cortex-M0 port layers to allow the scheduler to be started
858 without using the SVC handler.
859 + Added a build configuration to the PIC32MX MPLAB X demo project that
860 targets the PIC32 USB II starter kit. Previously all the build
861 configurations required the Explorer 16 hardware.
862 + Some of the standard demo tasks have been updated to ensure they execute
863 correctly with the updated co-operative scheduling behaviour.
864 + Added comprehensive demo for the Atmel SAM4E, including use of
865 FreeRTOS+UDP, FreeRTOS+FAT SL and FreeRTOS+CLI.
869 + Minor maintenance on FreeRTOS+UDP.
871 Changes between V7.5.2 and V7.5.3 released October 14 2013
875 + Prior to V7.5.x yields requested from the tick hook would occur in the
876 same tick interrupt - revert to that original behaviour.
877 + New API function uxQueueSpacesAvailable().
878 + Introduced the prvTaskExitError() function to Cortex-M0, Cortex-M3/4
879 and Cortex-M4F ports. prvTaskExitError() is used to trap tasks that
880 attempt to return from their implementing functions (tasks should call
881 vTaskDelete( NULL ); if they want to exit).
882 + The Cortex-M0 version of portSET_INTERRUPT_MASK_FROM_ISR and
883 portCLEAR_INTERRUPT_MASK_FROM_ISR are now fully nestable.
884 + Improved behaviour and robustness of the default Cortex-M tickless idle
886 + Add workaround for silicon errata PMU_CM001 in Infineon XMC4000 devices to
887 all Cortex-M4F ports.
888 + Add Cortex-M0 port for Keil.
889 + Updated Cortus port.
890 + Ensure _impure_ptr is initialised before the scheduler is started.
891 Previously it was not set until the first context switch.
895 + Update FreeRTOS+UDP to V1.0.1 - including direct integration of the
896 FreeRTOS+Nabto task, improvements to the DHCP behaviour, and a correction
897 to the test that prevents the network event hook being called on the first
898 network down event. The FreeRTOS+UDP change history is maintained
900 + Correct the __NVIC_PRIO_BITS setting in the LPC18xx.h header files
901 provided in the NXP CMSIS library, then update the interrupts used by the
902 LPC18xx demos accordingly.
903 + Replace double quotes (") with single quotes (') in FreeRTOS+CLI help
904 strings to ensure the strings can be used with the JSON descriptions used
905 in the FreeRTOS+Nabto demos.
907 Demo and miscellaneous changes:
909 + Added demo for the Atmel SAMD20 Cortex-M0+. The demo includes
911 + Added a demo for the Infineon Cortex-M0 that can be built with the IAR
913 + Updated the Infineon XMC4000 demos for IAR, Keil, GCC and Tasking tools,
914 with additional build configurations to directly support the XMC4200 and
915 XMC4400 devices, in addition to the previously supported XMC4500.
916 + Updated the demo application.
917 + Added additional trace macros traceMALLOC and traceFREE to track heap
920 Changes between V7.5.0 and V7.5.2 released July 24 2013
922 V7.5.2 makes the new Cortex-M vPortCheckInterruptPriority() function
923 compatible with the STM32 standard peripheral driver library, and adds
924 an extra critical section to the default low power tickless mode
925 implementation. Only users of the STM32 peripheral library or the default
926 tickless implementation need update from version 7.5.0.
928 Changes between V7.4.2 and V7.5.0 released July 19 2013
930 V7.5.0 is a major upgrade that includes multiple scheduling and efficiency
931 improvements, and some new API functions.
933 Compatibility information for FreeRTOS users:
934 FreeRTOS V7.5.0 is backward compatible with FreeRTOS V7.4.0 with one
935 exception; the vTaskList() and vTaskGetRunTimeStats() functions are now
936 considered legacy, having been replaced by the single uxTaskGetSystemState()
937 function. configUSE_STATS_FORMATTING_FUNCTIONS must be set to 1 in
938 FreeRTOSConfig.h for vTaskList() and vTaskGetRunTimeStats() to be
941 Compatibility information for FreeRTOS port writers:
942 vTaskIncrementTick() is now called xTaskIncrementTick() (because it now
947 + Multiple scheduling and efficiency improvements.
948 + Core kernel files now pass PC-Lint V8 static checking without outputting
949 any warnings (information on the test conditions will follow).
953 + uxTaskGetSystemState() http://www.freertos.org/uxTaskGetSystemState.html
954 + xQueueOverwrite() http://www.freertos.org/xQueueOverwrite.html
955 + xQueueOverwriteFromISR()
956 + xQueuePeekFromISR()
958 The following ports and demos, which were previously available separately,
959 are now incorporated into the main FreeRTOS zip file download:
962 + ARM Cortex-A9 ARM compiler
964 + Microsemi SmartFusion2
966 New FreeRTOSConfig.h settings
967 http://shop.freertos.org/FreeRTOS_API_and_Configuration_Reference_s/1822.htm
969 + configUSE_TIME_SLICING
970 + configUSE_NEWLIB_REENTRANT
971 + configUSE_STATS_FORMATTING_FUNCTIONS
972 + configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS
976 + (MPU port only) The configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS
977 options provides a mechanism that allows application writers to execute
978 certain functions in privileged mode even when a task is running in user
980 + Ports that support interrupt nesting now include a configASSERT() that
981 will trigger if an interrupt safe FreeRTOS function is called from an
982 interrupt that has a priority designated as above the maximum system/API
983 call interrupt priority.
984 + The included FreeRTOS+Trace recorder code has been updated to the latest
985 version, and the demo applications that use the trace recorder code have
986 been updated accordingly.
987 + The FreeRTOS Windows Simulator (MSVC version only) has been updated to
988 include a new basic 'blinky' build option in addition to the original
989 comprehensive build option.
990 + Improve RAM usage efficiency of heap_4.c and heap_2.c.
991 + Prevent heap_4.c from attempting to free memory blocks that were not
992 allocated by heap_4.c, or have already been freed.
993 + As FreeRTOS now comes with FreeRTOS+FAT SL (donated by HCC) the Chan FATfs
994 files have been removed from FreeRTOS/Demo/Common.
995 + Fix build error when R4 port is build in co-operative mode.
996 + Multiple port and demo application maintenance activities.
998 Changes between V7.4.1 and V7.4.2 released May 1 2013
1000 NOTE: There are no changes in the FreeRTOS kernel between V7.4.1 and V7.4.2
1002 + Added FreeRTOS+FAT SL source code and demo project. The demo project
1003 runs in the FreeRTOS Windows simulator for easy and hardware independent
1004 experimentation and evaluation. See http://www.FreeRTOS.org/fat_sl
1006 Changes between V7.4.0 and V7.4.1 released April 18 2013
1008 + To ensure strict conformance with the spec and ensure compatibility with
1009 future chips data and instruction barrier instructions have been added to
1010 the yield macros of Cortex-M and Cortex-R port layers. For efficiency
1011 the Cortex-M port layer "yield" and "yield" from ISR are now implemented
1012 separately as the barrier instructions are not required in the ISR case.
1013 + Added FreeRTOS+UDP into main download.
1014 + Reorganised the FreeRTOS+ directory so it now matches the FreeRTOS
1015 directory with Source and Demo subdirectories.
1016 + Implemented the Berkeley sockets select() function in FreeRTOS+UDP.
1017 + Changed (unsigned) casting in calls to standard library functions with
1019 + Added the Atmel SAM4L and Renesas RX100 demos that demonstrates the
1020 tickless (tick suppression) low power FreeRTOS features.
1021 + Add a new RL78 IAR demo that targets numerous new RL78 chips and
1023 + Adjusted stack alignment on RX200 ports to ensure an assert was not
1024 falsely triggered when configASSERT() is defined.
1025 + Updated the Cortex_M4F_Infineon_XMC4500_IAR demo to build with the latest
1027 + Corrected header comments in the het.c and het.h files (RM48/TMS570 demo).
1030 Changes between V7.3.0 and V7.4.0 released February 20 2013
1032 + New feature: Queue sets. See:
1033 http://www.FreeRTOS.org/Pend-on-multiple-rtos-objects.html
1034 + Overhauled the default tickless idle mode implementation provided with the
1035 ARM Cortex-M3 port layers.
1036 + Enhanced tickless support in the core kernel code with the introduction of
1037 the configEXPECTED_IDLE_TIME_BEFORE_SLEEP macro and the
1038 eTaskConfirmSleepModeStatus() function.
1039 + Added the QueueSet.c common demo/test file. Several demo applications
1040 have been updated to use the new demo/test tasks.
1041 + Removed reliance on the PLIB libraries from the MPLAB PIC32 port layer and
1043 + Added the FreeRTOS+Trace recorder code to the MSVC Win32 demo.
1044 + Renamed eTaskStateGet() to eTaskGetState() for consistency, and added a
1045 pre-processor macro for backward compatibility with the previous name.
1046 + Updated functions implemented in the core queue.c source file to allow
1047 queue.h to be included from the .c file directly (this prevents compiler
1048 warnings that were generated by some compilers).
1049 + Updated the CCS Cortex-R4 port layer to replace the CLZ assembler function
1050 with the CLZ compiler intrinsic that is provided by the latest versions of
1051 the CCS ARM compiler.
1052 + Updated all heap_x.c implementations to replace the structure that was
1053 used to ensure the start of the heap was aligned with a more portable
1054 direct C code implementation.
1055 + Added support for PIC24 devices that include EDS.
1056 + Minor optimisations to the PIC32 port layer.
1057 + Minor changes to tasks.c that allow the state viewer plug-ins to display
1058 additional information.
1059 + Bug fix: Update prvProcessReceivedCommands() in timers.c to remove an
1060 issue that could occur if the priority of the timer daemon task was set
1061 below the priority of tasks that used timer services.
1062 + Update the FreeRTOS+Trace recorder code to the latest version.
1064 Changes between V7.2.0 and V7.3.0 released October 31 2012
1066 + Added ability to override the default scheduler task selection mechanism
1067 with implementations that make use of architecture specific instructions.
1068 + Added ability to suppress tick interrupts during idle time, and in so
1069 doing, provide the ability to make use of architecture specific low power
1071 + Added the portSUPPRESS_TICKS_AND_SLEEP() macro and vTaskStepTick() helper
1073 + Added the configSYSTICK_CLOCK_HZ configuration constant.
1074 + Reworked the Cortex-M3 and Cortex-M4F port layers for GCC, Keil and IAR to
1075 directly support basic power saving functionality.
1076 + Added hooks to allow basic power saving to be augmented in the application
1077 by making use of chip specific functionality.
1078 + Minor change to allow mutex type semaphores to be used from interrupts
1079 (which would not be a normal usage model for a mutex).
1080 + Change the behaviour of the interrupt safe interrupt mask save and restore
1081 macros in the Cortex-M ports. The save macro now returns the previous
1082 mask value. The restore macro now uses the previous mask value. These
1083 changes are not necessary for the kernel's own implementation, and are
1084 made purely because the macros were being used by application writers.
1085 + Added eTaskStateGet() API function.
1086 + Added port specific optimisations to the PIC32 port layer, and updated the
1087 PIC32 demo applications to make use of this new feature.
1088 + Added port specific optimisations to the Win32 simulator port.
1089 + Added new ports and demo applications for the TI Hercules RM48 and TMS570
1090 safety microcontrollers.
1091 + Added SAM3 demos targeting the ATSAM3S-EK2 and ATSAM3X-EK evaluation
1093 + Updated the PIC32 MPLAB X project to manually set the compiler include
1094 paths instead of using the IDE entry box following reports that the
1095 include paths were somehow being deleted.
1096 + Improved character handling in FreeRTOS+CLI.
1098 Changes between V7.1.1 and V7.2.0 released 14 August 2012
1100 FreeRTOS V7.2.0 is backward compatible with FreeRTOS V7.1.2.
1102 + Added a FreeRTOS+ sub-directory. The directory contains some FreeRTOS+
1103 source code, and example projects that use the FreeRTOS Win32 simulator.
1104 + Added a new example heap allocation implementation (heap_4.c) that
1105 includes memory block coalescence.
1106 + Added a demo that targets the Atmel SAM4S Cortex-M4 based microcontroller.
1107 The demo is preconfigured to build using the free Atmel Studio 6 IDE and
1109 + Added xSemaphoreTakeFromISR() implementation.
1110 + The last parameter in ISR safe FreeRTOS queue and semaphore functions
1111 (xHigherPriorityTaskWoken) is now optional and can be set to NULL if it
1113 + Update the IAR and MSP430X ports to clear all lower power mode bits before
1114 exiting the tick interrupt [bug fix].
1115 + Allow xQueueReset() to be used, even when the queues event lists are not
1117 + Added a vQueueDelete() handler for the FreeRTOS MPU port (this was
1118 previously missing).
1119 + Updated the vPortSVCHandler() functions in the FreeRTOS MPU port layer to
1120 ensure it compiles with the latest ARM GCC compilers from Linaro.
1121 + Updated the prvReadGP() function in the NIOS II port to ensure the compiler
1122 can choose any register for the functions parameter (required at high
1123 compiler optimisation levels).
1124 + Add #error macros into the Keil and IAR Cortex-M ports to ensure they
1125 cannot be built if the user has set configMAX_SYSCALL_INTERRUPT_PRIORITY
1127 + Added comments in the FreeRTOSConfig.h files associated with Cortex-M3 and
1128 Cortex-M4 demos stating that the configMAX_SYSCALL_INTERRUPT_PRIORITY
1129 parameter must not be set to 0.
1130 + Introduce new INCLUDE_xQueueGetMutexHolder configuration constant
1132 + Added two new list handling macros - for internal use only in upcoming new
1134 + Removed all mention of the legacy vTaskStartTrace and ulTaskEndTrace
1135 macros. FreeRTOS+Trace supersedes the legacy trace.
1136 + Added a configASSERT() into the vPortFree() function in heap_1.c as it is
1137 invalid for the function to be called.
1138 + Made the xRxLock and xTxLock members of the queue structure volatile.
1139 This is probably not necessary, and is included as a precautionary
1141 + Modify the assert() that checks to see if the priority passed into an
1142 xTaskCreate() function is within valid bounds to permit the assert to be
1143 used in the FreeRTOS MPU port.
1144 + The software timer service (daemon) task is now created in a way that
1145 to ensure compatibility with FreeRTOS MPU.
1147 Changes between V7.1.0 and V7.1.1 released May 1 2012
1151 The following ports are brand new:
1154 The following ports have been available as separate downloads for a number
1155 of months, but are now included in the main FreeRTOS download.
1158 + Cortex-M4F GCC (with full floating point support)
1163 The following demos are brand new:
1164 + Renesas RX63N RDK (Renesas compiler)
1166 The following demos have been available as separate downloads for a number
1167 of months, but are now included in the main FreeRTOS download.
1168 + NXP LPC1114 GCC/LPCXpresso
1170 + Infineon XMC4500 GCC/Atollic
1171 + Infineon XMC4500 IAR
1172 + Infineon XMC4500 Keil
1173 + Infineon XMC4500 Tasking
1176 Kernel miscellaneous / maintenance:
1178 + Introduced the portSETUP_TCB() macro to remove the requirement for the
1179 Windows simulator to use the traceTASK_CREATE() macro, leaving the trace
1180 macro available for use by FreeRTOS+Trace (http://www.FreeRTOS.org/trace).
1181 + Added a new trace macro, traceMOVE_TASK_TO_READY_STATE(), to allow future
1182 FreeRTOS+Trace versions to provide even more information to users.
1183 + Updated the FreeRTOS MPU port to be correct for changes that were
1184 introduced in FreeRTOS V7.1.0.
1185 + Introduced the xQueueReset() API function.
1186 + Introduced the xSemaphoreGetMutexHolder() API function.
1187 + Tidy up various port implementations to add the static key word where
1188 appropriate, and remove obsolete code.
1189 + Slight change to the initial stack frame given to the RX600 ports to allow
1190 them to be used in the Eclipse based E2Studio IDE without confusing GDB.
1191 + Correct the alignment given to the initial stack of Cortex-M4F tasks.
1192 + Added a NOP following each DINT instruction on MSP430 devices for strict
1193 conformance with the instructions on using DINT.
1194 + Changed the implementation of thread deletes in the Win32 port to prevent
1195 the port making use of the traceTASK_DELETE() trace macros - leaving this
1196 macro free for use by FreeRTOS+Trace.
1197 + Made some benign changes to the RX600 Renesas compiler port layer to
1198 ensure the code can be built to a library without essential code being
1199 removed by the linker.
1200 + Reverted the change in the name of the uxTaskNumber variable made in
1201 V7.1.0 as it broke the IAR plug-in.
1204 Demo miscellaneous / maintenance:
1206 + The command interpreter has now been formally released as FreeRTOS+CLI,
1207 and been moved out of the main FreeRTOS download, to instead be available
1208 from the FreeRTOS+ Ecosystem site http://www.FreeRTOS.org/plus.
1209 + flash_timer.c/h has been added to the list of standard demo tasks. This
1210 performs the same functionality as the flash.c tasks, but using software
1211 timers in place of tasks.
1212 + Upgraded the PIC32 demo as follows: Changes to how the library functions
1213 are called necessitated by the new compiler version, addition of MPLAB X
1214 project with PIC32MX360, PIC32MX460 and PIC32MX795 configurations,
1215 addition of simply blinky demo, updated FreeRTOSConfig.h to include more
1216 parameters, addition of hook function stubs.
1217 + The MSP430X IAR and CCS demos have been updated to ensure the power
1218 settings are correct for the configured CPU frequency.
1219 + Rowley CrossWorks projects have been updated to correct the "multiple
1220 definition of ..." warnings introduced when the toolchain was updated.
1221 + Updated various FreeRTOSConfig.h header files associated with projects
1222 that build with Eclipse to include a #error statement informing the user
1223 that the CreateProjectDirectoryStructure.bat batch file needs to be
1224 executed before the projects can be opened.
1225 + Renamed directories that included "CCS4" in their name to remove the '4'
1226 and instead just be "CCS". This is because the demo was updated and
1227 tested to also work with later Code Composer Studio versions.
1228 + Updated the TCP/IP periodic timer frequency in numerous uIP demos to be
1229 50ms instead of 500ms.
1231 Changes between V7.0.2 and V7.1.0 released December 13 2011
1235 + Cortex-M4F IAR port.
1236 + Cortex-M4F Keil/RVDS port.
1241 + NXP LPC4350 using the Keil MDK, and demonstrated on a Hitex development
1243 + ST STM32F407 using the IAR Embedded Workbench for ARM, and demonstrated on
1244 the IAR STM32F407ZG-SK starter kit.
1245 + Infineon TriCore TC1782, using the GCC compiler, demonstrated on the
1246 TriBoard TC1782 evaluation board.
1247 + Renesas RX630, using the Renesas compiler and HEW, demonstrated on an
1248 RX630 RSK (Renesas Starter Kit).
1250 Miscellaneous / maintenance:
1252 + Removed all calls to printf() from the K60/IAR Kinetis demo so the project
1253 can execute stand alone - without being connected to the debugger.
1254 + Completed the command interpreter framework. Command handlers now receive
1255 the entire command string, giving them direct access to parameters.
1256 Utility functions are provided to check the number of parameters, and
1257 return parameter sub-strings.
1258 + The previously documented fix for the bug in xTaskResumeFromISR() that
1259 effected (only) ports supporting interrupt nesting has now been
1260 incorporated into the main release.
1261 + The portALIGNMENT_ASSERT_pxCurrentTCB() definition has been added to allow
1262 specific ports to skip the second stack alignment check when a task is
1263 created. This is because the second check is not appropriate for some
1264 ports - including the new TriCore port where the checked pointer does not
1265 actually point to a stack.
1266 + The portCLEAN_UP_TCB() macro has been added to allow port specific clean
1267 up when a task is deleted - again this is required by the TriCore port.
1268 + Various other minor changes to ensure warning free builds on a growing
1269 number of microcontroller and toolchain platforms. This includes a
1270 (benign) correction to the prototype of the
1271 vApplicationStackOverflowHook() definition found in lots of recent demos.
1275 + The legacy trace mechanism has been completely removed - it has been
1276 obsolete for the years since the trace macros were introduced. The
1277 configuration constant configUSE_TRACE_FACILITY is now used to optionally
1278 include additional queue and task information. The additional information
1279 is intended to make the trace mechanism more generic, and allow the trace
1280 output to provide more information. When configUSE_TRACE_FACILITY is set
1282 - the queue structure includes an additional member to hold the queue
1283 type, which can be base, mutex, counting semaphore, binary semaphore
1285 - the queue structure includes an additional member to hold a queue
1286 number. A trace tool can set and query the queue number for its own
1287 purposes. The kernel does not use the queue number itself.
1288 - the TCB structure includes an additional member to hold a task number
1289 number. A trace tool can set and query the task number for its own
1290 purposes. The kernel does not use the task number itself.
1291 + Queues and all types of semaphores are now automatically allocated their
1292 type as they are created.
1293 + Added two new trace macros - traceTASK_PRIORITY_INHERIT() and
1294 traskTASK_PRIORITY_DISINHERIT().
1295 + Updated the traceQUEUE_CREATE_FAILED() macro to take a parameter that
1296 indicates the type of queue, mutex, or semaphore that failed to be
1298 + The position from which traceCREATE_MUTEX() is called has been moved from
1299 after the call to xQueueGenericSend() [within the same function] to before
1300 the call. This ensures the trace events occur in the correct order.
1301 + The value passed into tracePRIORITY_SET() has been corrected for the case
1302 where vTaskPrioritySet() is called with a null parameter.
1304 Changes between V7.0.1 and V7.0.2 released September 20 2011
1308 + The official FreeRTOS Renesas RX200 port and demo application have been
1309 incorporated into the main FreeRTOS zip file download.
1310 + The official FreeRTOS Renesas RL78 port and demo application have been
1311 incorporated into the main FreeRTOS zip file download.
1312 + The official FreeRTOS Freescale Kinetis K60 tower demo application has
1313 been incorporated into the main FreeRTOS zip file download. This includes
1314 an embedded web server example.
1315 + A new Microblaze V8 port layer has been created to replace the older, now
1316 deprecated, port layer. The V8 port supports V8.x of the Microblaze IP,
1317 including exceptions, caches, and the floating point unit. A new
1318 Microblaze demo has also been added to demonstrate the new Microblaze V8
1319 port layer. The demo application was created using V13.1 of the Xilinx
1320 EDK, and includes a basic embedded web server that uses lwIP V1.4.0.
1321 + The official FreeRTOS Fujitsu FM3 MB9A310 demo application has been
1322 incorporated into the main FreeRTOS zip file download. Projects are
1323 provided for both the IAR and Keil toolchains.
1328 + xTaskGetIdleTaskHandle() has been added.
1329 + xTaskGetTimerDaemonTaskHandle() has been added.
1330 + pcTaskGetTaskName() has been added.
1331 + vSemaphoreDelete() macro has been added to make it obvious how to delete
1332 a semaphore. In previous versions vQueueDelete() had to be used.
1333 + vTaskCleanUpResources() has been removed. It has been obsolete for a
1335 + portPOINTER_SIZE_TYPE has been introduced to prevent compiler warnings
1336 being generated when the size of a pointer does not match the size of
1337 the stack type. This will (has already) be used in new ports, but will
1338 not be retrofitted to existing ports until the existing port itself is
1341 Other updates and news:
1343 + The core files have all been modified to tighten the coding standard even
1344 further. These are style, not functional changes.
1345 + All ARM7 port layers have been slightly modified to prevent erroneous
1346 assert() failures when tasks are created and configASSERT() is defined.
1347 + All ARM IAR projects have been updated to build with the latest V6.2.x
1348 versions of the IAR Embedded Workbench for ARM tools (EWARM). This was
1349 necessary due to a change in the way EWARM uses the CMSIS libraries.
1350 + The PIC32 port layer has been updated in preparation for V2 of the C32
1352 + The old Virtex-4 Microblaze demo has been marked as deprecated. Please
1353 use the brand new Spartan-6 port and demo in its place.
1354 + The bones of a new generic command interpreter is located in
1355 FreeRTOS/Demo/Common/Utils/CommandInterpreter.c. This is still a work in
1356 progress, and not documented. It is however already in use. It will be
1357 documented in full when the projects that are already using it are
1359 + A couple of new standard demos have been included. First, a version of
1360 flop.c called sp_flop.c. This is similar to flop.c, but uses single
1361 precision floats in place of double precision doubles. This allows the
1362 for testing ports to processors that have only single precision floating
1363 point units, and revert to using emulated calculations whenever a double
1364 is used. Second, comtest_strings.c has been included to allow the test
1365 of UART drivers when an entire string is transmitted at once. The
1366 previous comtest.c only used single character transmission and reception.
1367 + lwIP V1.4.0 is now included in the FreeRTOS/Demo/Common directory, and
1368 used by a couple of new demos.
1370 Changes between V7.0.0 and V7.0.1 released May 13 2011
1372 + Added a Fujitsu FM3 demo application for both the IAR and Keil tool
1374 + Added a SmartFusion demo application for all of the IAR, Keil and
1375 SoftConsole (GCC/Eclipse) tool chains.
1376 + Updated the RX600 port and demo applications to take into account the
1377 different semantics required when using the latest (V1.0.2.0) version of
1378 the Renesas compiler.
1379 + Modified the RX600 Ethernet driver slightly to make it more robust under
1380 heavy load, and updated the uIP handling task to make use of the FreeRTOS
1382 + Slightly changed the PIC32 port layer to move an ehb instruction in line
1383 with the recommendations of the MIPS core manual, and ensure 8 byte stack
1384 alignment is truly always obtained.
1385 + Changed the behaviour when tasks are suspended before the scheduler has
1386 been started. Before, there needed to be at least one task that was not
1387 in the suspended state. This is no longer the case.
1389 Changes between V6.1.1 and V7.0.0 released April 8 2011
1391 FreeRTOS V7.0.0 is backward compatible with FreeRTOS V6.x.x
1395 + Introduced a new software timer implementation.
1396 + Introduced a new common demo application file to exercise the new timer
1398 + Updated the Win32/MSVC simulator project to include the new software timer
1399 demo tasks and software timer tick hook test. Much simpler software timer
1400 demonstrations are included in the demo projects for both of the new ports
1401 (MSP430X with CCS4 and STM32 with TrueStudio).
1402 + Various enhancements to the kernel implementation in tasks.c. These are
1403 transparent to users and do not effect the pre-existing API.
1404 + Added calls to configASSERT() within the kernel code. configASSERT() is
1405 functionally equivalent to the standard C assert() macro, but does not
1406 rely on the compiler providing assert.h.
1410 + Updated the MSP430X IAR port and demo project to include support for the
1411 medium memory model.
1412 + Added a demo project for the MSP430X that targets the MSP430X Discovery
1413 board and uses the Code Composer Studio 4 tools. This demo includes use
1414 of the new software timer implementation.
1415 + Added an STM32F100RB demo project that targets the STM32 Discovery Board
1416 and uses the TrueStudio Eclipse based IDE from Atollic.
1417 + Removed some compiler warnings from the PSoC demo application.
1418 + Updated the PIC32 port layer to ensure the
1419 configMAX_SYSCALL_INTERRUPT_PRIORITY constant works as expected no matter
1420 what its value is (within the valid range set by the microcontroller
1422 + Updated the PIC24, dsPIC and PIC32 projects so they work with the latest
1423 MPLAB compiler versions from Microchip.
1424 + Various cosmetic changes to prepare for a standards compliance statement
1425 that will be published after the software release.
1428 Changes between V6.1.0 and V6.1.1 released January 14 2011
1430 + Added two new Windows simulator ports. One uses the free Microsoft Visual
1431 Studio 2010 express edition, and the other the free MingW/Eclipse
1432 environment. Demo projects are provided for both.
1433 + Added three demo projects for the PSoC 5 (CYAC5588). These are for the
1434 GCC, Keil, and RVDS build tools, and all use the PSoC Creator IDE.
1435 + Added a demo for the low power STM32L152 microcontroller using the IAR
1437 + Added a new port for the MSP430X core using the IAR Embedded Workbench.
1438 + Updated all the RX62N demo projects that target the Renesas Demonstration
1439 Kit (RDK) to take into account the revered LED wiring on later hardware
1440 revisions, and the new J-Link debug interface DLL.
1441 + Updated all the RX62N demo projects so the IO page served by the example
1442 embedded web server works with all web browsers.
1443 + Updated the Red Suite projects to work with the up coming Red Suite
1444 release, and to use a more recent version of the CMSIS libraries.
1445 + Added the traceTAKE_MUTEX_RECURSIVE_FAILED() trace macro.
1446 + Removed the (pointless) parameter from the traceTASK_CREATE_FAILED()
1448 + Introduced the portALT_GET_RUN_TIME_COUNTER_VALUE() macro to compliment
1449 the already existing portGET_RUN_TIME_COUNTER_VALUE(). This allows for
1450 more flexibility in how the time base for the run time statistics feature
1452 + Added a "cpsie i" instruction before the "svc 0" instruction used to start
1453 the scheduler in each of the Cortex M3 ports. This is to ensure that
1454 interrupts are globally enabled prior to the "svc 0" instruction being
1455 executed in cases where interrupts are left disabled by the C start up
1457 + Slight optimisation in the run time stats calculation.
1459 Changes between V6.0.5 and V6.1.0 released October 6 2010
1461 + Added xTaskGetTickCountFromISR() function.
1462 + Modified vTaskSuspend() to allow tasks that have just been created to be
1463 immediately suspended even when the kernel has not been started. This
1464 allows them to effectively start in the Suspended state - a feature that
1465 has been asked for on numerous occasions to assist with initialisation
1467 + Added ports for the Renesas RX62N using IAR, GCC and Renesas tool suites.
1468 + Added a STM32F103 demo application that uses the Rowley tools.
1469 + Under specific conditions xFreeBytesRemaining within heap_2.c could end up
1470 with an incorrect value. This has been fixed.
1471 + xTaskCreateGeneric() has a parameter that can be used to pass the handle
1472 of the task just created out to the calling task. The assignment to this
1473 parameter has been moved to ensure it is assigned prior to the newly
1474 created having any possibility of executing. This takes into account the
1475 case where the assignment is made to a global variable that is accessed by
1476 the newly created task.
1477 + Fixed some build time compiler warnings in various FreeTCPIP (based on
1479 + Fixed some build time compiler warnings in Demo/Common/Minimal/IntQueue.c.
1481 Changes between V6.0.4 and V6.0.5 released May 17 2010
1483 + Added port and demo application for the Cortus APS3 processor.
1485 Changes between V6.0.3 and V6.0.4 released March 14 2010
1487 + All the contributed files that were located in the Demo/Unsupported_Demos
1488 directory have been removed. These files are instead now available in the
1489 new Community Contributions section of the FreeRTOS website. See
1490 http://www.freertos.org/RTOS-contributed-ports.html
1491 + The project file located in the Demo/CORTEX_STM32F107_GCC_Rowley directory
1492 has been upgraded to use V2.x of the Rowley Crossworks STM32 support
1494 + An initial Energy Micro EFM32 demo has been included. This will be
1495 updated over the coming months to make better use of the low power modes
1498 Changes between V6.0.2 and V6.0.3 released February 26 2010
1500 + SuperH SH7216 (SH2A-FPU) port and demo application added.
1501 + Slight modification made to the default implementation of
1502 pvPortMallocAligned() and vPortFreeAligned() macros so by default they
1503 just call pvPortMalloc() and vPortFree(). The macros are only needed to
1504 be defined when a memory protection unit (MPU) is being used - and then
1505 only depending on other configuration settings.
1507 Changes between V6.0.1 and V6.0.2 released January 9th 2010
1509 + Changed all GCC ARM 7 ports to use 0 as the SWI instruction parameter.
1510 Previously the parameter was blank and therefore only an implicit 0 but
1511 newer GCC releases do not permit this.
1512 + Updated IAR SAM7S and SAM7X ports to work with IAR V5.40.
1513 + Changed the stack alignment requirement for PIC32 from 4 bytes to 8 bytes.
1514 + Updated prvListTaskWithinSingleList() is it works on processors where the
1515 stack grows up from low memory.
1516 + Corrected some comments.
1517 + Updated the startup file for the RVDS LPC21xx demo.
1519 Changes between V6.0.0 and V6.0.1 released November 15th 2009
1521 + Altered pxPortInitialiseStack() for all Cortex-M3 ports to ensure the
1522 stack pointer is where the compiler expects it to be when a task first
1525 The following minor changes only effect the Cortex-M3 MPU port:
1527 + portRESET_PRIVILEGE() assembly macro updated to include a clobber list.
1528 + Added prototypes for all the privileged function wrappers to ensure no
1529 compile time warnings are generated no matter what the warning level
1531 + Corrected the name of portSVC_prvRaisePrivilege to
1532 portSVC_RAISE_PRIVILEGE.
1533 + Added conditional compilation into xTaskGenericCreate() to prevent some
1534 compilers issuing warnings when portPRIVILEGE_BIT is defined as zero.
1537 Changes between V5.4.2 and V6.0.0 released October 16th 2009
1539 FreeRTOS V6 is backward compatible with FreeRTOS V5.x.
1543 + FreeRTOS V6 is the first version to include memory protection unit (MPU)
1544 support. Two ports now exist for the Cortex M3, the standard FreeRTOS
1545 which does not include MPU support, and FreeRTOS-MPU which does.
1546 + xTaskCreateRestricted() and vTaskAllocateMPURegions() API functions added
1547 in support of FreeRTOS-MPU.
1548 + Wording for the GPL exception has been (hopefully) clarified. Also the
1549 license.txt file included in the download has been fixed (the previous
1550 version contained some corruption).
1554 + New API function xPortGetFreeHeapSize() added to heap_1.c and heap_2.c.
1555 + ARM7 GCC demo interrupt service routines wrappers have been modified to
1556 call the C portion using an __asm statement. This prevents the function
1557 call being inlined at higher optimisation levels.
1558 + ARM7 ports now automatically set the THUMB bit if necessary when
1559 setting up the initial stack of a task - removing the need for
1560 THUMB_INTERWORK to be defined. This also allows THUMB mode and ARM mode
1561 tasks to be mixed more easily.
1562 + All ARM7/9 ports now have portBYTE_ALIGNMENT set to 8 by default.
1563 + Various demo application project files have been updated to be up to date
1564 with the latest IDE versions.
1565 + The linker scripts used with command line GCC demos have been updated to
1566 include an eh_frame section to allow their use with the latest Yagarto
1567 release. Likewise the demo makefiles have been updated to include
1568 command line options to reduce or eliminate the eh_frame section all
1570 + The definition of portBYTE_ALIGNMENT_MASK has been moved out of the
1571 various memory allocation files and into the common portable.h header
1573 + Removed unnecessary use of portLONG, portSHORT and portCHAR.
1574 + Added LM3Sxxxx demo for Rowley CrossWorks.
1575 + Posix simulator has been upgraded - see the corresponding WEB page on the
1579 Changes between V5.4.1 and V5.4.2 released August 9th 2009
1581 + Added a new port and demo app for the Altera Nios2 soft core.
1582 + Added LPC1768 demo for IAR.
1583 + Added a USB CDC demo to all LPC1768 demos (Code Red, CrossWorks and IAR).
1584 + Changed clock frequency of LPC1768 demos to 99MHz.
1586 Changes between V5.4.0 and V5.4.1 released July 25th 2009
1588 + New hook function added. vApplicationMallocFailedHook() is (optionally)
1589 called if pvPortMalloc() returns NULL.
1590 + Additional casting added to xTaskCheckForTimeOut(). This prevents
1591 problems that can arise should configUSE_16_BIT_TICKS be set to 1 on a
1592 32 bit architecture (which would probably be a mistake, anyway).
1593 + Corrected the parameter passed to NVIC_SetPriority() to set the MAC
1594 interrupt priority in both LPC1768 demos.
1595 + Decreased the default setting of configMINIMAL_STACK_SIZE in the PIC32
1596 demo application to ensure the heap space was not completely consumed
1597 before the scheduler was started.
1599 Changes between V5.3.1 and V5.4.0 released July 13th 2009
1601 + Added Virtex5 / PPC440 port and demos.
1602 + Replaced the LPC1766 Red Suite demo with an LPC1768 Red Suite demo. The
1603 original demo was configured to use engineering samples of the CPU. The
1604 new demo has an improved Ethernet driver.
1605 + Added LPC1768 Rowley demo with zero copy Ethernet driver.
1606 + Reworked byte alignment code to ensure 8 byte alignment works correctly.
1607 + Set configUSE_16_BIT_TICKS to 0 in the PPC405 demo projects.
1608 + Changed the initial stack setup for the PPC405 to ensure the small data
1609 area pointers are setup correctly.
1611 Changes between V5.3.0 and V5.3.1 released June 21st 2009
1613 + Added ColdFire V1 MCF51CN128 port and WEB server demo.
1614 + Added STM32 Connectivity Line STM32107 Cortex M3 WEB server demo.
1615 + Changed the Cortex M3 port.c asm statements to __asm so it can be
1616 compiled using Rowley CrossWorks V2 in its default configuration.
1617 + Updated the Posix/Linux simulator contributed port.
1619 Changes between V5.2.0 and V5.3.0 released June 1st 2009
1623 + Added new (optional) feature that gathers statistics on the amount of CPU
1624 time used by each task.
1625 + Added a new demo application for the Atmel AT91SAM3U Cortex-M3 based
1627 + Added a new demo application for the NXP LPC1766 Cortex-M3 based
1629 + Added a contributed port/demo that allows FreeRTOS to be 'simulated' in a
1633 + Updated the Stellaris uIP WEB server demos to include the new run time
1634 statistics gathering feature - and include a served WEB page that
1635 presents the information in a tabular format.
1636 + Added in the lwIP port layer for the Coldfire MCF52259.
1637 + Updated the CrossWorks LPC2368 WEB server to include an image in the
1639 + Changed some of the timing in the initialisation of the LPC2368 MAC to
1640 permit its use on all part revisions.
1641 + Minor modifications to the core uIP code to remove some compiler warnings.
1642 + Added xTaskGetApplicationTaskTag() function and updated the OpenWatcom
1643 demo to make use of the new function.
1644 + Added contributed demos for AVR32 AP7000, STM32 Primer 2 and STM32 using
1646 + Heap_1.c and Heap_2.c used to define structures for the purpose of data
1647 alignment. These have been converted to unions to save a few bytes of
1648 RAM that would otherwise be wasted.
1649 + Remove the call to strncpy() used to copy the task name into the TCB when
1650 the maximum task name is configured to be 1 byte long.
1652 Changes between V5.1.2 and V5.2.0 released March 14th 2009
1654 + Optimised the queue send and receive functions (also used by semaphores).
1655 + Replaced the standard critical sections used to protect BIOS calls in the
1656 PC port to instead use scheduler locks. This is because the BIOS calls
1657 always return with interrupts enabled.
1658 + Corrected unclosed comments in boot.s.
1660 Changes between V5.1.1 and V5.1.2 released February 9th 2009
1662 + Added NEC V850ES port and demo.
1663 + Added NEC 78K0R port and demo.
1664 + Added MCF52259 port and demo.
1665 + Added the AT91SAM9XE port and demo.
1666 + Updated the MCF52233 FEC driver to work around a silicon bug that
1667 prevents the part auto negotiating some network parameters.
1668 + Minor modifications to the MCF52233 makefile to permit it to be used
1670 + Updated the STM32 primer files to allow them to be built with the latest
1671 version of the RIDE tools.
1672 + Updated the threads.js Java script used for kernel aware debugging in
1673 the Rowley CrossWorks IDE.
1676 Changes between V5.1.0 and V5.1.1 released November 20, 2008
1678 + Added Coldfire MCF52233 WEB server demo using GCC and Eclipse.
1679 + Added IAR MSP430 port and demo.
1680 + Corrected several compiler time issues that had crept in as tool versions
1682 + Included FreeRTOS-uIP - a faster uIP. This is not yet complete.
1684 Changes between V5.0.4 and V5.1.0 released October 24, 2008
1686 + Added a new port and demo application for the ColdFire V2 core using the
1687 CodeWarrior development tools.
1688 + Replaced the ARM7 demo that used the old (and now no longer supported)
1689 Keil compiler with a new port that uses the new Keil/RVDS combo.
1690 + Stack overflow checking now works for stacks that grow up from low
1691 memory (PIC24 and dsPIC).
1692 + BUG FIX - set the PIC32 definition of portSTACK_GROWTH to the correct
1694 + MSP430 port layers have been updated to permit tasks to place the
1695 microcontroller into power down modes 1 to 3. The demo applications have
1696 likewise been updated to demonstrate the new feature.
1697 + Replaced the two separate MSP430/Rowley port layers with a single and more
1699 + Added more contributed ports, including ports for NEC and SAM9
1701 + Changed the linker script used in the LPC2368 Eclipse demo.
1703 Changes between V5.0.3 and V5.0.4 released September 22, 2008
1705 + Completely re-written port for ColdFire GCC.
1706 + Bug fix: All Cortex M3 ports have a minor change to the code that sets
1707 the pending interrupt.
1708 + Some header files require that FreeRTOS.h be included prior to their
1709 inclusion. #error message have been added to all such header file
1710 informing users to the cause of the compilation error should the headers
1711 not be included in the correct order.
1713 Changes between V5.0.2 and V5.0.3 released July 31, 2008
1715 Changes relating to the Cortex M3:
1717 + Added configMAX_SYSCALL_INTERRUPT_PRIORITY usage to all the Cortex M3
1718 ports and demos. See the port documentation pages on the FreeRTOS.org
1719 WEB site for full usage information.
1720 + Improved efficiency of Cortex M3 port even further.
1721 + Ensure the Cortex M3 port works no matter where the vector table is
1723 + Added the IntQTimer demo/test tasks to a demo project for each CM3 port
1724 (Keil, GCC and IAR) to test the new configMAX_SYSCALL_INTERRUPT_PRIORITY
1726 + Added the mainINCLUDE_WEB_SERVER definition to the LM3SXXXX IAR and Keil
1727 projects to allow the WEB server to be conditionally excluded from the
1728 build and therefore allow use of the KickStart (code size limited)
1733 + Moved the PIC24 and dsPIC versions of vPortYield() from the C file to
1734 an assembly file to allow use with all MPLAB compiler versions. This also
1735 allows the omit-frame-pointer optimisation to be turned off.
1737 Changes between V5.0.0 and V5.0.2 released May 30, 2008
1739 + Updated the PIC32 port to allow queue API calls to be used from
1740 interrupts above the kernel interrupt priority, and to allow full
1741 interrupt nesting. Task stack usages has also been reduced.
1742 + Added a new PowerPC port that demonstrates how the trace macros can be
1743 used to allow the use of a floating point co-processor. The
1744 traceTASK_SWITCHED_OUT() and traceTASK_SWITCHED_INT() macros are used to
1745 save and restore the floating point context respectively for those tasks
1746 that actually use floating point operations.
1747 + BUG FIX: The first PPC405 port contained a bug in that it did not leave
1748 adequate space above the stack for the backchain to be saved when a task
1749 started to execute for the first time.
1750 + Updated queue.c to add in the means to allow interrupt nesting and for
1751 queue API functions to be called from interrupts that have a priority
1752 above the kernel priority. This is only supported on PIC32 ports thus
1754 + Fixed the compiler warnings that were generated when the latest version
1756 + Remove all inline usage of 'inline' from the core kernel code.
1757 + Added the queue registry feature. The queue registry is provided as a
1758 means for kernel aware debuggers to locate queue definitions. It has no
1759 purpose unless you are using a kernel aware debugger. The queue registry
1760 will only be used when configQUEUE_REGISTRY_SIZE is greater than zero.
1761 + Added the ST Cortex-M3 drivers into the Demo/Common/Drivers directory to
1762 prevent them from having to be included in multiple demos.
1763 + Added a Keil STM32 demo application.
1764 + Changed the blocktim.c test files as it is no longer legitimate for all
1765 ports to call queue API functions from within a critical section.
1766 + Added the IntQueue.c test file to test the calling of queue API functions
1767 from different interrupt priority levels, and test interrupt nesting.
1769 Changes between V5.0.0 and V5.0.1
1771 + V5.0.1 was a customer specific release.
1773 Changes between V4.8.0 and V5.0.0 released April 15, 2008
1775 *** VERY IMPORTANT INFORMATION ON UPGRADING TO FREERTOS.ORG V5.0.0 ***
1777 The parameters to the functions xQueueSendFromISR(), xQueueSendToFrontFromISR(),
1778 xQueueSendToBackFromISR() and xSemaphoreGiveFromISR() have changed. You must
1779 update all calls to these functions to use the new calling convention! Your
1780 compiler might not issue any type mismatch warnings!
1783 See http://www.FreeRTOS.org/upgrading.html for full information.
1788 + Support added for the new Luminary Micro LM3S3768 and LM3S3748 Cortex-M3
1790 + New task hook feature added.
1791 + PowerPC demo updated to use version 10.1 of the Xilinx EDK.
1792 + Efficiency gains within the PIC32 port layer.
1794 Changes between V4.7.2 and V4.8.0 released March 26 2008
1796 + Added a Virtex4 PowerPC 405 port and demo application.
1797 + Added optional stack overflow checking and new
1798 uxTaskGetStackHighWaterMark() function.
1799 + Added new xQueueIsQueueEmptyFromISR(), xQueueIsQueueFullFromISR() and
1800 uxQueueMessagesWaitingFromISR() API functions.
1801 + Efficiency improvements to the Cortex-M3 port layer. NOTE: This
1802 requires that an SVC handler be installed in the application.
1803 + Efficiency improvements to the queue send and receive functions.
1804 + Added new trace macros. These are application definable to provide
1805 a flexible trace facility.
1806 + Implemented the configKERNEL_INTERRUPT_PRIORITY within the Keil Cortex
1807 M3 port layer (bringing it up to the same standard as the IAR and GCC
1809 + Ports that used the arm-stellaris-eabi-gcc tools have been converted to
1810 use the arm-non-eabi-gcc tools.
1812 Changes between V4.7.1 and V4.7.2 released February 21, 2008
1814 + Added Fujitsu MB91460 port and demo.
1815 + Added Fujitsu MB96340 port and demo.
1816 + Tidied up the capitalisation of include files to facilitate builds on
1818 + Removed some redundant casting that was generating warnings - but was
1819 included to remove warnings on other compilers.
1821 Changes between V4.7.0 and V4.7.1 released February 3, 2008
1823 + Updated all IAR ARM projects to use V5.11 of the IAR Embedded Workbench
1825 + Introduced recursive semaphore feature.
1826 + Updated LPC2368 demos to take into account silicon bugs in old chip
1828 + Updated STR9 uIP port to manually set the net mask and gateway addresses.
1829 + Updating demos to allow more to run with the co-operative scheduler.
1830 + Fixed co-operative scheduler behaviour upon the occurrence of a tick
1831 interrupt while the scheduler was suspended.
1832 + Updated documentation contained within semphr.h.
1833 + ARM7 GCC ports no longer use the IRQ attribute.
1835 Changes between V4.6.1 and V4.7.0 released December 6, 2007
1837 + Introduced the counting semaphore macros and demo source files. The
1838 Open Watcom PC project has been updated to include the new demo. See
1839 the online documentation for more information.
1840 + Introduced the 'alternative' queue handling API and demo source files.
1841 The Open Watcom PC project has been updated to include the new demo
1842 source files. See the online documentation for more information.
1843 + Added AT91SAM7X Eclipse demo project.
1844 + Added the STM32 primer demo project for the GCC compiler and Ride IDE.
1845 + Removed the .lock files that were mistakenly included in the V4.6.1
1848 Changes between V4.6.0 and V4.6.1 released November 5 2007
1850 + Added support for the MIPS M4K based PIC32.
1851 + Added 'extern "C"' to all the header files to facilitate use with C++.
1853 Changes between V4.5.0 and V4.6.0 released October 28 2007
1855 + Changed the method used to force a context switch within an ISR for the
1856 ARM7/9 GCC ports only. The portENTER_SWITCHING_ISR() and
1857 portEXIT_SWITCHING_ISR() macros are no longer supported. This is to
1858 ensure correct behaviour no matter which GCC version is used, with or
1859 without the -fomit-frame-pointer option, and at all optimisation levels.
1860 + Corrected the prototype for xQueueGenericSend() within queue.h.
1862 Changes between V4.4.0 and V4.5.0 released September 17 2007
1864 + Added the xQueueSendToFront(), xQueueSendToBack() and xQueuePeek()
1865 functionality. These should now be used in preference to the old
1866 xQueueSend() function - which is maintained for backward compatibility.
1867 + Added Mutex functionality. The behaviour of mutexes is subtly different
1868 to the already existing binary semaphores as mutexes automatically
1869 include a priority inheritance mechanism.
1870 + Added the GenQTest.c and QPeek.c to test and demonstrate the behaviour
1871 of the new functionality.
1872 + Updated the LM3Sxxxx and PC ports to include the new GenQTest.c and
1874 + Updated the GCC port for the Cortex M3 to include the
1875 configKERNEL_INTERRUPT_PRIORITY functionality. This was previously only
1876 included in the IAR port.
1877 + Optimised the GCC and IAR port layer code - specifically the context
1879 + Consolidated the LM3Sxxxx EK demos for all development tools into a
1880 single project that automatically detects which version of the EK the
1881 application is executing on.
1882 + Added Eclipse support for LM3Sxxxx evaluation kits.
1883 + Added Eclipse support for the Keil LPC2368 evaluation kit.
1884 + Added the Demo/Drivers directory to hold code that is common to multiple
1885 demo application projects.
1886 + Included some minor bug fixes in the uIP 1.0 code.
1887 + Added an lwIP demo for the STR9 - thanks ST for assistance.
1888 + Updated the AVR32 port to ensure correct behaviour with full compiler
1890 + Included binaries for OpenOCD FTDI and parallel port interfaces.
1892 Changes between V4.4.0 and V4.3.1 released July 31, 2007
1894 + Added AVR32 UC3B demo application.
1895 + Updated AVR32 UC3A port and demo applications.
1896 + Added IAR lwIP demo for AVR32 UC3A.
1897 + Updated listGET_OWNER_OF_NEXT_ENTRY() to assist compiler optimisation
1898 (thanks Niu Yong for making the suggestion).
1899 + Added xTaskGetSchedulerState() API function.
1900 + BUG FIX: Corrected behaviour when tasks that are blocked indefinitely
1901 have their block time adjusted (within xQueueSend() and xQueueReceive()),
1902 and are the subject of a call the vTaskResume() when they are not
1903 actually in the Suspended state (thanks Dan Searles for reporting the
1907 Changes between V4.3.0 and V4.3.1 released June 11, 2007
1909 + Added STMicroelectronics STM32 Cortex-M3 demo application.
1910 + Updated ustdlib.c for the GCC LM3S6965 demo.
1912 Changes between V4.2.1 and V4.3.0 released June 5, 2007
1914 + Introduced configKERNEL_INTERRUPT_PRIORITY to the IAR Cortex-M3, PIC24
1915 and dsPIC ports. See the LM3S6965 and PIC24 demo application
1916 documentation pages for more information.
1917 + Updated the PIC24 and dsPIC demos to build with V3.0 of the PIC30 GCC
1918 tools, and changed the demo applications.
1919 + Added demos for the new Ethernet and CAN enabled Luminary Micro Stellaris
1921 + Corrected bug in uIP the demos that prevented frames of approximately 1480
1922 bytes and over from being transmitted.
1923 + Included the LPC2368/uIP/Rowley demo into the main FreeRTOS.org
1925 + Update to WizC PIC18 port to permit its use with version 14 of the
1926 compiler. Thanks Marcel!
1928 Changes between V4.2.1 and V4.2.0 released April 2, 2007
1930 + Added AVR32 AT32UC3A ports for GCC and IAR.
1931 + Added -fomit-frame-pointer option to lwIP SAM7X demo makefile.
1932 + Moved location of call to LCD_Init() in STR9 demo to ensure it is only
1933 called after the scheduler has been started.
1935 Changes between V4.1.3 and V4.2.0 released February 8, 2007
1937 + Changes to both task.c and queue.c as a result of testing performed on
1938 the SafeRTOS code base.
1939 + Added Cortex-M3 LM3S811 demos for GCC and IAR tools.
1941 Changes between V4.1.2 and V4.1.3 released November 19, 2006
1943 + Added STR750 ARM7 port using the Raisonance RIDE/GCC tools.
1944 + Added -fomit-frame-pointer option to Rowley ARM7 demos as work around
1945 to GCC bug at some optimisation levels.
1946 + Altered the way the heap is defined in the LM3S811 Keil demo to prevent
1947 the RAM usage from counting toward the code size limit calculation.
1948 + CO-ROUTINE BUG FIX: Removed the call to prvIsQueueEmpty from within
1949 xQueueCRReceive as it exited with interrupts enabled. Thanks Paul Katz.
1950 + Tasks that block on events with a timeout of portMAX_DELAY are now
1951 blocked indefinitely if configINCLUDE_vTaskSuspend is defined.
1952 Previously portMAX_DELAY was just the longest block time possible. This
1953 is still the case if configINCLUDE_vTaskSuspend is not defined.
1954 + Minor changes to some demo application files.
1956 Changes between V4.1.1 and V4.1.2 released October 21, 2006
1958 + Added 16bit PIC ports and demos.
1959 + Added STR750 port and demo.
1962 Changes between V4.1.0 and V4.1.1 released September 24, 2006
1964 + Added the Luminary Micro Stellaris LM3S811 demo application.
1966 Changes between V4.0.5 and V4.1.0 released August 28, 2006
1968 + Prior to V4.1.0, under certain documented circumstances, it was possible
1969 for xQueueSend() and xQueueReceive() to return without having completed
1970 and without their block time expiring. The block time effectively
1971 stated a maximum block time, and the return value of the function needed
1972 to be checked to determine the reason for returning. This is no longer
1973 the case as the functions will only return once the block time has
1974 expired or they are able to complete their operation. It is therefore no
1975 longer necessary to wrap calls within loops.
1976 + Changed the critical section handling in the IAR AVR port to correct the
1977 behaviour when used with later compiler versions.
1978 + Added the LPC2138 CrossWorks demo into the zip file. Previously this was
1979 only available as a separate download.
1980 + Modified the AVR demo applications to demonstrate the use of co-routines.
1982 Changes between V4.0.4 and V4.0.5 released August 13, 2006
1984 + Introduced API function xTaskResumeFromISR(). Same functionality as
1985 xTaskResume(), but can be called from within an interrupt service routine.
1986 + Optimised vListInsert() in the case when the wake time is the maximum
1988 + Bug fix: The 'value' of the event list item is updated when the priority
1989 of a task is changed. Previously only the priority of the TCB itself was
1991 + vTaskPrioritySet() and vTaskResume() no longer use the event list item.
1992 This has not been necessary since V4.0.1 when the xMissedYield handling
1994 + Lowered the PCLK setting on the ARM9 STR9 demo from 96MHz to 48MHz.
1995 + When ending the scheduler - do not try to attempt a context switch when
1996 deleting the current task.
1997 + SAM7X EMAC drivers: Corrected the Rx frame length mask when obtaining
1998 the length from the rx descriptor.
2001 Changes between V4.0.3 and V4.0.4 released June 22, 2006
2003 + Added a port and demo application for the STR9 ARM9 based processors from
2005 + Slight optimisation to the vTaskPrioritySet() function.
2006 + Included the latest uIP version (1.0) in the demo/common/ethernet
2009 Changes between V4.0.2 and V4.0.3 released June 7, 2006
2011 + Added a port and demo application for the Cortex-M3 target using the IAR
2013 + The ARM Cortex-m3 Rowley projects have been updated to use V1.6 of the
2015 + The heap size defined for the lwIP Rowley demo has been reduced so that
2016 the project will link correctly when using the command line GCC tools
2017 also. The makefile has also been modified to allow debugging.
2018 + The lwIP Rowley demo not includes a 'kernel aware' debug window.
2019 + The uIP Rowley project has been updated to build with V1.6 of CrossWorks.
2020 + The second set of tasks in the blockQ demo were created the wrong way
2021 around (inconsistent to the description in the file). This has been
2024 Changes between V4.0.1 and V4.0.2 released May 28, 2006
2026 + Port and demo application added for the Tern Ethernet Engine controller.
2027 + Port and demo application added for MC9S12 using GCC, thanks to
2028 Jefferson "imajeff" Smith.
2029 + The function vTaskList() now suspends the scheduler rather than disabling
2030 interrupts during the creation of the task list.
2031 + Allow a task to delete itself by passing in its own handle. Previously
2032 this could only be done by passing in NULL.
2033 + Corrected the value passed to the WDG_PeriodValueConfig() library
2034 function in the STR71x demo.
2035 + The tick hook function is now called only within a tick isr. Previously
2036 it was also called when the tick function was called during the scheduler
2038 + The EMAC driver in the SAM7X lwIP demo has been made more robust as per
2039 the thread: http://sourceforge.net/forum/message.php?msg_id=3714405
2040 + In the PC ports: Add function prvSetTickFrequencyDefault() to set the
2041 DOS tick back to its proper value when the scheduler exits. Thanks
2043 + In the Borland x86 ports there was a mistake in the portFIRST_CONTEXT
2044 macro where the BP register was not popped from the stack correctly. The
2045 BP value would never get used so this did not cause a problem, but it has
2046 been corrected all the same.
2049 Changes between V4.0.0 and V4.0.1 released April 7 2006
2051 + Improved the ARM CORTEX M3 ports so they now only have to service
2053 + Added a Luminary Micro port and demo for use with Rowley CrossWorks.
2054 + Added the xMissedYield handling to tasks.c.
2056 Changes between V3.2.4 and V4.0.0
2060 + Added new RTOS port for Luminary Micros ARM CORTEX M3 microcontrollers.
2061 + Added new co-routine functionality.
2063 Other kernel changes:
2065 + An optional tick hook call is now included in the tick function.
2066 + Introduced the xMiniListItem structure and removed the list pxHead
2067 member in order to reduce RAM usage.
2068 + Added the following definitions to the FreeRTOSConfig.h file included
2071 configUSE_CO_ROUTINES
2072 configMAX_CO_ROUTINE_PRIORITIES
2073 + The volatile qualification has been changed on the list members to allow
2074 the task.c code to be tidied up a bit.
2075 + The scheduler can now be started even if no tasks have been created!
2076 This is to allow co-routines to run when there are no tasks.
2077 + A task being woken by an event will now preempt the currently running task
2078 even if its priority is only equal to the currently running task.
2080 Port and demo application changes:
2082 + Updated the WinAVR demo to compile with the latest version of WinAVR
2083 with no warnings generated.
2084 + Changed the WinAVR makefile to make chars signed - needed for the
2085 co-routine code if BaseType_t is set to char.
2086 + Added new demo application file crflash.c. This demonstrates co-routine
2087 functionality including passing data between co-routines.
2088 + Added new demo application file crhook.c. This demonstrates co-routine
2089 and tick hook functionality including passing data between and ISR and
2091 + Some NOP's were missing following stmdb{}^ instructions in various ARM7
2092 ports. These have been added.
2093 + Updated the Open Watcom PC demo project to include the crflash and crhook
2094 demo co-routines as an example of their use.
2095 + Updated the H8S demo to compile with the latest version of GCC.
2096 + Updated the SAM7X EMAC drivers to take into account the hardware errata
2097 regarding lost packets.
2098 + Changed the default MAC address used by some WEB server demos as the
2099 original addresses used was not liked by some routers.
2100 + Modified the SAM7X/IAR startup code slightly to prevent it hanging on
2101 some systems when the code is executed using a j-link debugger. The
2102 j-link macro file configures the PLL before the code executes so
2103 attempting to configure it again in the startup code was causing a
2104 problem for some user. Now a check is performed first to see if the
2105 PLL is already set up.
2106 + GCC port now contain all assembler code in a single asm block rather than
2107 individual blocks as before.
2108 + GCC LPC2000 code now explicitly uses R0 rather than letting the assembler
2109 choose the register to use as a temporary register during the context
2111 + Added portNOP() macro.
2112 + The compare match load value on LPC2000 ports now has 1 added to correct
2114 + The minimal stack depth has been increased slightly on the WIZC PIC18
2117 Changes between V3.2.3 and V3.2.4
2119 + Modified the GCC ARM7 port layer to allow use with GCC V4.0.0 and above.
2120 Many thanks to Glen Biagioni for the provided update.
2121 + Added a new Microblaze port and demo application.
2122 + Modified the SAM7X EMAC demo to default to use the MII interface rather
2123 than the RMII interface.
2124 + Modified the startup sequence of the SAM7X demo slightly to allow the
2125 EMAC longer to auto negotiate.
2127 Changes between V3.2.2 and V3.2.3
2129 + Added MII interface support to the SAM7X EMAC peripheral driver.
2130 Previously versions worked with the RMII interface only.
2131 + Added command line GCC support to the SAM7X lwIP demo. Previously the
2132 project could only be built using the CrossWorks IDE. Modifications to
2133 this end include the addition of a standard makefile and linker script to
2134 the download, and some adjustments to the stacks allocated to each task.
2135 + Changed the page returned by the lwIP WEB server demo to display the
2136 task status table rather than the TCP/IP statistics.
2137 + Corrected the capitalisation of some header file includes and makefile
2138 dependencies to facilitate use on Linux host computers.
2139 + The various LPC2000 ports had a mistake in the timer setup where the
2140 prescale value was written to T0_PC instead of T0_PR. This would have
2141 no effect unless a prescale value was actually required. This has been
2144 Changes between V3.2.1 and V3.2.2 - Released 23 September, 2005
2146 + Added an IAR port for the Philips LPC2129
2147 + The Atmel ARM7 IAR demo project files are now saved in the IAR Embedded
2148 Workbench V4.30a format.
2149 + Updated the J-Link macro file included with the SAM7X uIP demo project
2150 to allow the demo board to be reset over the J-Link.
2152 Changes between V3.2.0 and V3.2.1 - Released 1 September, 2005
2154 + Added lwIP demo for AT91SAM7X using Rowley tools.
2155 + Added uIP demo for AT91SAM7X using IAR tools.
2156 + Added function xTaskGetCurrentTaskHandle().
2157 + Renamed events.h to mevents.h to prevent it conflicting with the events.h
2158 generated automatically by the HCS12 processor expert utility. events.h
2159 is only used by the PC demo application.
2160 + Both PIC18 ports now initialise the TBLPTRU to 0 as this is the value
2161 expected by the compiler, and the compilers do not write to this
2163 + The HCS12 banked model demo now creates the 'suicide' tasks immediately
2164 prior to starting the scheduler. These tasks should be the last tasks to
2165 get started in order for the test to function correctly.
2167 Changes between V3.1.1 and V3.2.0 - Released 29 June, 2005
2169 V3.2.0 introduces two new MSP430 ports and corrects a minor kernel
2170 issues. Thanks to Ares.qi for his input.
2172 + Added two MSP430 ports that use the Rowley CrossWorks development tools.
2173 One port just mirrors the existing GCC port. The other port was provided
2174 by Milos Prokic. Thanks!
2175 + V3.2.0 corrects the behavior when vTaskPrioritySet() or vTaskResume()
2176 are called while the scheduler is locked (by a call to
2177 vTaskSuspendAll()). When this is done the subject task now starts to
2178 execute immediately when the scheduler is unlocked if it has the highest
2179 priority that is ready to run. Previously there was a possibility that
2180 the task would not run until the next RTOS tick or call to portYIELD().
2181 + Another similar small correction ensures that in the case where more than
2182 one task is blocked on a semaphore or queue, the task with the highest
2183 priority is guaranteed to be unblocked first.
2184 + Added a couple of more test tasks to the PC demo which cover the points
2187 Changes between V3.1.0 and V3.1.1 - Released 21st June, 2005
2189 This release updates the HCS12 port. The common kernel code
2192 + Updated the HCS12 port to support banking and introduced a demo
2193 application for the MC9S12DP256. The new demo application is
2194 located in the Demo/HCS12_CodeWarrior_banked directory.
2195 + The name of the directory containing the MC9S12F32 demo application
2196 has been changed to Demo/HCS12_CodeWarrior_small (as in 'small'
2198 + MC9S12F32 demo updated slightly to use the PLL. The CPU speed for the
2199 demo application is now 24MHz. Previously it was 8MHz.
2200 + The demo application file Demo/Common/Minimal/death.c has a slight
2201 alteration to prevent it using floating point variables.
2204 Changes between V3.0.0 and V3.1.0 - Released 11th June, 2005
2206 + Added new ports for ST Microsystems STR71x, and Freescale HCS12
2207 microcontrollers. Currently the HCS12 port is limited to the small
2208 memory model. Large memory models will be supported in the next
2210 + PIC18 wizC port updated. Thanks to Marcel van Lieshout for his
2211 continuing contribution.
2212 + The accuracy of the AVR port timer setup has been improved. Thanks to
2213 Thomas Krutmann for this contribution.
2214 + Added a new conditional compilation macro configIDLE_SHOULD_YIELD.
2215 See the WEB documentation for details.
2216 + Updated the CrossWorks uIP demo to build with V1.4 of CrossWorks.
2217 + Slight modification to the SAM7 release build configuration to correct
2218 an include path definition.
2219 + Updated the MPLAB PIC18 documentation to provide extra details on linker
2222 Changes between V3.0.0 and V2.6.1 - Released 23rd April, 2005
2224 V3.0.0 includes many enhancements, so this history list is broken into
2225 subsections as follows:
2229 Directory name changes
2230 Kernel and miscellaneous changes changes
2234 + Each port now defines BaseType_t as the data type that is most
2235 efficient for that architecture. The type BaseType_t is used
2236 extensively in API calls necessitating the following changes to the
2237 FreeRTOS API function prototypes.
2239 See the "New for V3.0.0" section of the FreeRTOS online
2240 documentation for full details of API changes.
2244 + The AT91FR40008 ARM7 port contributed by John Feller is now included
2245 in the download (thanks John!).
2246 + The PIC18 port for the wizC/fedC compiler contributed by Marcel van
2247 Lieshout is now included in the download (thanks Marcel!).
2248 + The IAR port for the AVR microcontroller has been upgraded to V3.0.0
2249 and is now a supported port.
2251 - Directory name changes
2253 For consistency, and to allow integration of the new ports, the
2254 following directory names have been changed.
2256 + The source/portable/GCC/ARM7 directory has been renamed
2257 source/portable/GCC/ARM7_LPC2000 so it is compatible with the naming
2258 of other GCC ARM7 ports.
2259 + The Demo/PIC directory has been renamed Demo/PIC18_MPLAB to
2260 accommodate the wizC/fedC PIC port.
2261 + The demo applications for the two AVR ports no longer share the same
2262 directory. The WinAVR demo is in the Demo/AVR_ATMega323_WinAVR
2263 directory and the IAR port in the Demo/AVR_ATMega323_IAR directory.
2266 - Kernel and miscellaneous changes changes
2268 See the "New for V3.0.0" section of the FreeRTOS online
2269 documentation for more information.
2271 + Previously 'portmacro.h' contained some user editable definitions
2272 relating to the user application, and some fixed definitions relating
2273 specifically to the port being used. The application specific
2274 definitions have been removed from 'portmacro.h' and placed inside a
2275 new header file called 'FreeRTOSConfig.h'. 'portmacro.h' should now
2276 never be modified by the user. A 'FreeRTOSConfig.h' is now included
2277 in each of FreeRTOS/Demo subdirectories - as it's settings relate to
2278 the demo application rather than being specific to the port.
2279 + Introduced configUSE_IDLE_HOOK in idle task.
2280 + The idle task will yield when another idle priority task is ready to
2281 run. Previously the idle task would run to the end of its time slice
2283 + The idle task is now created when the scheduler is started. This
2284 requires less stack than the previous scheme where it was created upon
2285 creation of the first application task.
2286 + The function usPortCheckFreeStackSpace() has been renamed
2287 usTaskCheckFreeStackSpace() and moved from the portable layer to
2289 + Corrected spelling of portMINMAL_STACK_SIZE to portMINIMAL_STACK_SIZE.
2290 + The portheap.c file included with the AVR port has been deleted. The
2291 AVR demo now uses the standard heap1 sample memory allocator.
2292 + The GCC AVR port is now build using the standard make utility. The
2293 batch files used previously have been deleted. This means a recent
2294 version of WinAVR is required in order to create a binary suitable for
2295 source level debugging.
2296 + vTaskStartScheduler() no longer takes the configUSE_PREEMPTION
2297 constant as a parameter. Instead the constant is used directly within
2298 tasks.c and no parameter is required.
2299 + The header file 'FreeRTOS.h' has been created and is used to include
2300 'projdefs.h', 'FreeRTOSConfig.h' and 'portable.h' in the necessary
2301 order. FreeRTOS.h can now be included in place of these other
2303 + The header file 'errors.h' has been deleted. The definitions it
2304 contained are now located within 'projdefs.h'.
2305 + pvPortMalloc() now takes a size_t parameter as per the ANSI malloc().
2306 Previously an unsigned short was used.
2307 + When resuming the scheduler a yield is performed if either a tick has
2308 been missed, or a task is moved from the pending ready list into a
2309 ready list. Previously a yield was not performed on this second
2311 + In heap1.c an overflow check has been added to ensure the next free
2312 byte variable does not wrap around.
2313 + Introduced the portTASK_FUNCTION() and portTASK_FUNCTION_PROTO()
2315 + The MPLAB PIC port now saved the TABLAT register in interrupt service
2318 Changes between V2.6.0 and V2.6.1 - Released Feb 22, 2005
2320 This version adds support for the H8 processor.
2324 + tskMAX_TASK_NAME_LEN removed from the task.h header and added to each
2325 individual portmacro.h file as portMAX_TASK_NAME_LEN. This allows RAM
2326 limited ports to allocate fewer characters to the task name.
2327 + AVR port - Replaced the inb() and outb() functions with direct memory
2328 access. This allows the port to be built with the 20050414 build of
2330 + GCC LPC2106 port - removed the 'static' from the definition of
2331 vNonPreemptiveTick() to allow the demo to link when using the cooperative
2333 + GCC LPC2106 port - Corrected the optimisation options in the batch files
2334 ROM_THUMB.bat, RAM_THUMB.bat, ROM_ARM.bat and RAM_ARM.bat. The lower case
2335 -o is replaced by an uppercase -O.
2336 + Tasks.c - The strcpy call has been removed when copying across the task
2338 + Updated the trace visualisation to always be 4 byte aligned so it can be
2339 used on ARM architectures.
2340 + There are now two tracecon executables (that convert the trace file binary
2341 into an ASCII file). One for big endian targets and one for little endian
2343 + Added ucTasksDeleted variable to prevent vTaskSuspendAll() being called
2344 too often in the idle task.
2345 + SAM7 USB driver - Replaced the duplicated RX_DATA_BK0 in the interrupt
2346 mask with the RX_DATA_BK1.
2349 Changes between V2.5.5 and V2.6.0 - Released January 16, 2005
2351 + Added the API function vTaskDelayUntil(). The demo app file
2352 Demo/Common/Minimal/flash.c has been updated to demonstrate its use.
2353 + Added INCLUDE_vTaskDelay conditional compilation.
2354 + Changed the name of the Demo/ARM7_AtmelSAM7S64_IAR directory to
2355 Demo/ARM7_AT91SAM7S64_IAR for consistency.
2356 + Modified the AT91SAM7S USB driver to allow descriptors that have
2357 a length that is an exact multiple of the FIFO to be transmitted.
2359 Changes between V2.5.4 and V2.5.5 - Released January 3, 2005
2361 This version adds support for the Atmel SAM7 ARM7 microcontrollers
2362 along with the IAR development tools.
2366 + Renamed the Demo/ARM7 directory to Demo/ARM7_LPC2106_GCC.
2367 + Renamed the Demo/ARM7_Keil directory to Demo/ARM7_LPC2129_Keil.
2368 + Modified the Philips ARM7 serial interrupt service routines to only
2369 process one interrupt per call. This seems to enable the ISR to
2370 operate more quickly.
2371 + Removed the 'far' keyword from the Open Watcom portable layer source
2372 files. This allows their use with V1.3 of Open Watcom.
2373 + Minor modifications to the SDCC build files to allow their use under
2374 Linux. Thanks to Frieder Ferlemann for this contribution.
2375 + Small change to sTaskCreate() to allow a context switch even when
2376 pxCreatedTask is NULL. Thanks to Kamil for this contribution.
2377 + inline keyword removed from vTaskSwitchContext() and VTaskIncrementTick()
2380 Changes between V2.5.3 and V2.5.4 - Released Dec 1, 2004
2382 This is an important maintenance release.
2384 The function cTaskResumeAll() has been modified so it can be used safely
2385 prior to the kernel being initialised. This was an issue as
2386 cTaskResumeAll() is called from pvPortMalloc(). Thanks to Daniel Braun
2387 for highlighting this issue.
2389 Changes between V2.5.2 and V2.5.3 - Released Nov 2, 2004
2391 The critical section handling functions have been changed for the GCC ARM7
2392 port. Some optimisation levels use the stack differently to others. This
2393 means the interrupt flags cannot always be stored on the stack and are
2394 instead now stored in a variable, which is then saved as part of the
2395 tasks context. This allows the GCC ARM7 port to be used at all
2396 optimisation levels - including -Os.
2398 Other minor changes:
2400 + MSP430 definition of usCriticalNesting now uses the volatile qualifier.
2401 This is probably not required but added just in case.
2403 Changes between V2.5.1 and V2.5.2 - Released Oct 26, 2004
2405 + Added the Keil ARM7 port.
2406 + Slight modification to comtest.c to make the delay periods more random.
2407 This creates a better test condition.
2409 Changes between V2.5.0 and V2.5.1 - Released Oct 9, 2004
2411 + Added the MSP430 port.
2412 + Extra comments added to the GCC ARM7 port.c and portISR.c files.
2413 + The memory pool allocated within heap_1.c has been placed within a
2414 structure to ensure correct memory alignment on 32bit systems.
2415 + Within the GCC ARM7 serial drivers an extra check is made to ensure
2416 the post to the queue was successful if then attempting immediately
2417 retrieve the posted character.
2418 + Changed the name of the constant portTICKS_PER_MS to portTICK_PERIOD_MS
2419 as the old name was misleading.
2422 Changes between V2.4.2 and V2.5.0 - Released Aug 12, 2004
2424 The RTOS source code download now includes three separate memory allocation
2425 schemes - so you can choose the most appropriate for your application.
2426 These are found in the Source/Portable/MemMang directory. The demo
2427 application projects have also been updated to demonstrate the new schemes.
2428 See the "Memory Management" page of the API documentation for more details.
2430 + Added heap_1.c, heap_2.c and heap_3.c in the Source/Portable/MemMang
2432 + Replaced the portheap.c files for each demo application with one of the
2433 new memory allocation files.
2434 + Updated the portmacro.h file for each demo application to include the
2435 constants required for the new memory allocators: portTOTAL_HEAP_SIZE and
2437 + Added a new test to the ARM7 demo application that tests the operation
2438 of the heap_2 memory allocator.
2441 Changes between V2.4.1 and V2.4.2 - Released July 14, 2004
2443 + The ARM7 port now supports THUMB mode.
2444 + Modification to the ARM7 demo application serial port driver.
2446 Changes between V2.4.0 and V2.4.1 - Released July 2, 2004
2448 + Rationalised the ARM7 port version of portEXIT_CRITICAL() -
2449 improvements provided by Bill Knight.
2450 + Made demo serial driver more complete and robust.
2453 Changes between V2.4.0 and V2.3.1 - Released June 30, 2004
2455 + Added the first ARM7 port - thanks to Bill Knight for the assistance
2457 + Added extra files to the Demo/Common/Minimal directory. These are
2458 equivalent to their Demo/Common/Full counterparts but with the
2459 calls to the functions defined in print.c removed.
2460 + Added TABLAT to the list of registers saved as part of a PIC18 context.
2462 Changes between V2.3.0 and V2.3.1 - Released June 25, 2004
2464 + Changed the way the vector table is defined to be more portable.
2465 + Corrected the definitions of SPH and SPL in portmacro.s90.
2466 The previous definitions prevented V2.3.0 operating if the iom323.h
2467 header file was included in portmacro.s90.
2469 Changes between V2.2.0 and V2.3.0 - Released June 19, 2004
2471 + Added an AVR port that uses the IAR compiler.
2472 + Explicit use of 'signed' qualifier on plain char types.
2473 + Modified the Open Watcom project files to use 'signed' as the
2475 + Changed odd calculation of initial pxTopOfStack value when
2476 portSTACK_GROWTH < 0.
2477 + Added inline qualifier to context switch functions within task.c.
2478 Ports that do not support the (non ANSI) inline keyword have the
2479 inline #define'd away in their respective portmacro.h files.
2481 Changes between V2.1.1 and V2.2.0 - Released May 18, 2004
2483 + Added Cygnal 8051 port.
2484 + PCLATU and PCLATH are now saved as part of the PIC18 context. This
2485 allows function pointers to be used within tasks. Thanks to Javier
2486 Espeche for the enhancement.
2487 + Minor changes to demo application files to reduce stack usage.
2488 + Minor changes to prevent compiler warnings when compiling the new port.
2490 Changes between V2.1.0 and V2.1.1 - Released March 12, 2004
2492 + Bug fix - pxCurrentTCB is now initialised before the call to
2493 prvInitialiseTaskLists(). Previously pxCurrentTCB could be accessed
2494 while null during the initialisation sequence. Thanks to Giuseppe
2495 Franco for the correction.
2497 Changes between V2.0.0 and V2.1.0 - Released Feb 29, 2004
2499 V2.1.0 has significant reworks that greatly reduce the amount of time
2500 the kernel has interrupts disabled. The first section of modifications
2501 listed here must be taken into account by users. The second section
2502 are related to the kernel implementation and as such are transparent.
2506 + The typedef TickType_t has been introduced. All delay times should
2507 now use a variable of type TickType_t in place of the unsigned long's
2508 used previously. API function prototypes have been updated
2510 + The configuration macro USE_16_BIT_TICKS has been introduced. If set
2511 to 1 TickType_t is defined as an unsigned short. If set to 0
2512 TickType_t is defined as an unsigned long. See the configuration
2513 section of the API documentation for more details.
2514 + The configuration macro INCLUDE_vTaskSuspendAll is now obsolete.
2515 + vTaskResumeAll() has been renamed cTaskResumeAll() as it now returns a
2516 value (see the API documentation).
2517 + ulTaskGetTickCount() has been renamed xTaskGetTickCount() as the type
2518 it returns now depends on the USE_16_BIT_TICKS definition.
2519 + cQueueReceive() must now >never< be used from within an ISR. Use the new
2520 cQueueReceiveFromISR() function instead.
2524 + A mechanism has been introduced that allows a queue to be accessed by
2525 a task and ISR simultaneously.
2526 + A "pending ready" queue has been introduced that enables interrupts to
2527 be processed when the scheduler is suspended.
2528 + The list implementation has been improved to provide faster item
2530 + The scheduler now makes use of the scheduler suspend mechanism in places
2531 where previously interrupts were disabled.
2533 Changes between V1.2.6 and V2.0.0 - Released Jan 31, 2004
2535 + Introduced new API functions:
2542 + Added conditional compilation options that allow the components of the
2543 kernel that are unused by an application to be excluded from the build.
2544 See the Configuration section on the WEB site for more information (on
2545 the API pages). The macros have been added to each portmacro.h file (
2546 sometimes called prtmacro.h).
2547 + Rearranged tasks.c.
2548 + Added demo application file dynamic.c.
2549 + Updated the PC demo application to make use of dynamic.c.
2550 + Updated the documentation contained in the kernel header files.
2551 + Creating a task now causes a context switch if the task being created
2552 has a higher priority than the calling task - assuming the kernel is
2554 + vTaskDelete() now only causes a context switch if the calling task is
2555 the task being deleted.
2557 Changes between V1.2.5 and V1.2.6 - Released December 31, 2003
2559 Barring the change to the interrupt vector (PIC port) these are minor
2562 + The interrupt vector used for the PIC master ISR has been changed from
2563 0x18 to 0x08 - where it should have always been. The incorrect address
2564 still works but probably executes a number of NOP's before getting to the
2566 + Changed the baud rate used by the AVR demo application to 38400. This
2567 has an error percentage of less than one percent with an 8MHz clock.
2568 + Raised the priority of the Rx task in demo\full\comtest.c. This only
2569 affects the Flashlite and PC ports. This was done to prevent the Rx
2570 buffer becoming full.
2571 + Reverted the Flashlite COM port driver back so it does not use the DMA.
2572 The DMA appears to miss characters under stress. The Borland Flashlite
2573 port was also calculating a register value incorrectly resulting in the
2574 wrong DMA source address being used. The same code worked fine when
2575 compiling with Open Watcom. Other minor enhancements were made to the
2577 + Modified the PIC serial Rx ISR to check for and clear overrun errors.
2578 Overrun errors seem to prevent any further characters being received.
2579 + The PIC demo projects now have some optimisation switched on.
2582 Changes between V1.2.4 and V1.2.5
2584 Small fix made to the PIC specific port.c file described below.
2586 + Introduced portGLOBAL_INTERRUPT_FLAG definition to test the global
2587 interrupt flag setting. Using the two bits defined within
2588 portINITAL_INTERRUPT_STATE was causing the w register to get clobbered
2589 before the test was performed.
2591 Changes between V1.2.3 and V1.2.4
2593 V1.2.4 contains a release version of the PIC18 port.
2594 An optional exception has been included with the GPL. See the licensing
2595 section of www.FreeRTOS.org for details.
2597 + The function xPortInitMinimal() has been renamed to
2598 xSerialPortInitMinimal() and the function xPortInit() has been renamed
2599 to xSerialPortInit().
2600 + The function sSerialPutChar() has been renamed cSerialPutChar() and
2601 the function return type chaned to portCHAR.
2602 + The integer and flop tasks now include calls to tskYIELD(), allowing
2603 them to be used with the cooperative scheduler.
2604 + All the demo applications now use the integer and comtest tasks when the
2605 cooperative scheduler is being used. Previously they were only used with
2606 the preemptive scheduler.
2607 + Minor changes made to operation of minimal versions of comtest.c and
2609 + The ATMega port definition of portCPU_CLOSK_HZ definition changed to
2610 8MHz base 10, previously it base 16.
2614 Changes between V1.2.2a and V1.2.3
2616 The only change of any significance is to the license, which has changed
2617 from the Open Software License to the GNU GPL.
2619 The zip file also contains a pre-release version of the PIC18 port. This
2620 has not yet completed testing and as such does not constitute part of the
2621 V1.2.3 release. It is still however covered by the GNU GPL.
2623 There are minor source code changes to accommodate the PIC C compiler.
2624 These mainly involve more explicit casting.
2626 + sTaskCreate() has been modified slightly to make use of the
2627 portSTACK_GROWTH macro. This is required for the PIC port where the
2628 stack grows in the opposite direction to the other existing ports.
2629 + prvCheckTasksWaitingTermination() has been modified slightly to bring
2630 the decrementing of usCurrentNumberOfTasks within the critical section,
2631 where it should have been since the creation of an eight bit port.
2633 Changes between V1.2.2 and V1.2.2a
2635 The makefile and buildcoff.bat files included with the AVR demo application
2636 have been modified for use with the September 2003 build of WinAVR. No
2637 source files have changed.
2639 Changes between V1.2.1 and V1.2.2
2641 There are only minor changes here to allow the PC and Flashlite 186 ports
2642 to use the Borland V4.52 compiler, as supplied with the Flashlite 186
2645 + Introduced a BCC directory under source\portable. This contains all the
2646 files specific to the Borland compiler port.
2647 + Corrected the macro naming of portMS_PER_TICK to portTICKS_PER_MS.
2648 + Modified comtest.c to increase the rate at which the string is
2649 transmitted and received on the serial port. The Flashlite 186 demo
2650 app baud rate has also been increased.
2651 + The values of the constants used in both integer.c files have been
2652 increased to force the Borland compiler to use 32 bit values. The
2653 Borland optimiser placed the previous values in 16 bit registers, and in
2654 So doing invalidated the test.
2656 Changes between V1.2.0 and V1.2.1
2658 This version includes some minor changes to the list implementation aimed
2659 at improving the context switch time - with is now approximately 10% faster.
2660 Changes include the removal of some null pointer assignment checks. These
2661 were redundant where the scheduler uses the list functions, but means any
2662 user application choosing to use the same list functions must now check
2663 that no NULL pointers are passed as a parameter.
2665 The Flashlite 186 serial port driver has also been modified to use a DMA
2666 channel for transmissions. The serial driver is fully functional but still
2667 under development. Flashlite users may prefer to use V1.2.0 for now.
2671 + Changed the baud rate for the ATMega323 serial test from 19200 to 57600.
2672 + Use vSerialPutString() instead of single character puts in
2673 Demo\Full\Comtest.c. This allows the use of the flashlite DMA serial
2674 driver. Also the check variable only stops incrementing after two
2675 consecutive failures.
2676 + semtest.c creates four tasks, two of which operate at the idle priority.
2677 The tasks that operate at the idle priority now use a lower expected
2678 count than those running at a higher priority. This prevents the low
2679 priority tasks from signalling an error because they have not been
2680 scheduled enough time for each of them to count the shared variable to
2681 the higher original value.
2682 + The flashlite 186 serial driver now uses a DMA channel for transmissions.
2683 + Removed the volatile modifier from the list function parameters. This was
2684 only ever included to prevent compiler warnings. Now warnings are
2685 removed by casting parameters where the calls are made.
2686 + prvListGetOwnerOfNextEntry() and prvListGetOwnerOfHeadEntry() have been
2687 removed from list.c and added as macros in list.h.
2688 + usNumberOfItems has been added to the list structure. This removes the
2689 need for a pointer comparison when checking if a list is empty, and so
2691 + Removed the NULL check in vListRemove(). This makes the call faster but
2692 necessitates any application code utilising the list implementation to
2693 ensure NULL pointers are not passed.
2694 + Renamed portTICKS_PER_MS definition to portMS_PER_TICK (milli seconds
2695 per tick). This is what it always should have been.
2697 Changes between V1.01 and V1.2.0
2699 The majority of these changes were made to accommodate the 8bit AVR port.
2700 The scheduler workings have not changed, but some of the data types used
2701 have been made more friendly to an eight bit environment.
2705 + Changed the version numbering format.
2707 + Split the directory demo\common into demo\common\minimal and
2708 demo\common\full. The files in the full directory are for systems with
2709 a display (currently PC and Flashlite 186 demo's). The files in the
2710 minimal directory are for systems with limited RAM and no display
2711 (currently MegaAVR).
2712 + Minor changes to demo application function prototypes to make more use
2714 + Within the scheduler itself the following functions have slightly
2715 modified declarations to make use of 8bit data types where possible:
2719 usQueueMessageWaiting(),
2720 sQueueSendFromISR(),
2723 sSemaphoreGiveFromISR(),
2725 sTaskMoveFromEventList().
2727 Where the return type has changed the function name has also changed in
2728 accordance with the naming convention. For example
2729 usQueueMessageWaiting() has become ucQueueMessageWaiting().
2730 + The definition tskMAX_PRIORITIES has been moved from task.h to
2731 portmacro.h and renamed portMAX_PRIORITIES. This allows different
2732 ports to allocate a different maximum number of priorities.
2733 + By default the trace facility is off, previously USE_TRACE_FACILITY
2735 + comtest.c now uses a psuedo random delay between sends. This allows for
2736 better testing as the interrupts do not arrive at regular intervals.
2737 + Minor change to the Flashlite serial port driver. The driver is written
2738 to demonstrate the scheduler and is not written to be efficient.
2742 Changes between V1.00 and V1.01
2744 These changes improve the ports. The scheduler itself has not changed.
2746 Improved context switch mechanism used when performing a context
2747 switch from an ISR (both the tick ISR and the serial comms ISR's within
2748 the demo application). The new mechanism is faster and uses less stack.
2750 The assembler file portasm.asm has been replaced by a header file
2751 portasm.h. This includes a few assembler macro definitions.
2753 All saving and restoring of registers onto/off of the stack is now handled
2754 by the compiler. This means the initial stack setup for a task has to
2755 mimic the stack used by the compiler, which is different for debug and
2758 Slightly changed the operation of the demo application, details below.
2762 + portSWITCH_CONTEXT() replaced by vPortFirstContext().
2763 + pxPortInitialiseStack() modified to replicate the stack used by the
2765 + portasm.asm file removed.
2766 + portasm.h introduced. This contains macro definitions for
2767 portSWITCH_CONTEXT() and portFIRST_CONTEXT().
2768 + Context switch from ISR now uses the compiler generated interrupt
2769 mechanism. This is done simply by calling portSWITCH_CONTEXT and leaving
2770 the save/restore to compiler generated code.
2771 + Calls to taskYIELD() during ISR's have been replaced by calling the
2772 simpler and faster portSWITCH_CONTEXT().
2773 + The Flashlite 186 port now uses 186 instruction set (used to use 80x86
2775 + The blocking queue tasks within the demo application did not operate
2776 quite as described. This has been corrected.
2777 + The priority of the comtest Rx task within the demo application has been
2778 lowered. Received characters are now processed (read from the queue) at
2779 the idle priority, allowing low priority tasks to run evenly at times of
2780 a high communications overhead.
2781 + Prevent the call to kbhit() in main.c for debug builds as the debugger
2782 seems to have problems stepping over the call. This if for the PC port