summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Demo
Commit message (Collapse)AuthorAgeFilesLines
* Update version number in preparation for official V8.2.0 release.Richard Barry2015-01-1647-1880/+658
|
* Demo app changes:Richard Barry2015-01-157-9/+142
| | | | | | | | Add a "query heap" command to the standard sample CLI commands. Remove casting from configMAX_PRIORITIES setting in Win32 simulator demos as it was preventing a clean build. Source code changes. General tidy up and addition of assert points.
* Remove casting from configMAX_PRIORITIES setting in FAT SL / CLI demo as it ↵Richard Barry2015-01-073-5/+5
| | | | was preventing a clean build.
* Update version numbers in preparation for V8.2.0 release candidate 1.Richard Barry2014-12-2147-893/+2303
|
* Kernel changes:Richard Barry2014-12-211-1/+1
| | | | | | | | | | | | + Made xTaskNotifyGiveFromISR() its own function, rather than a macro that calls xTaskNotifyFromISR() (minor performance improvement). + GCC and Keil Cortex-M4F ports now use vPortRaiseBASEPRI() in place of ulPortRaiseBASEPRI() where the return value is not required (minor performance improvement). Demo changes: Change the [very basic] FreeRTOS+UDP SAM4E driver to use task notifications rather than a semaphore (execution time now 55% what it was in FreeRTOS V8.1.2!). Robustness improvements to IntQueue.c standard demo task.h. Added the latest standard demo tasks, reg test tasks and int q tasks to the SAM4E demo.
* + Update demos that use FreeRTOS+Trace to work with the latest trace ↵Richard Barry2014-12-188-787/+672
| | | | | | | | recorder library. + Fix a few compiler warnings. + Add TickType_t specific critical sections so critical sections are not used when accessing the tick count in cases where the access is atomic (32-bit tick count, 32-bit architecture).
* Update version number to 8.1.2 after moving the defaulting of ↵Richard Barry2014-09-0247-47/+47
| | | | configUSE_PORT_OPTIMISED_TASK_SELECTION into individual port layers so it does not affect ports that do not support the definition.
* Update version number to 8.1.1 for patch release that re-enables mutexes to ↵Richard Barry2014-08-2947-47/+47
| | | | be given from an interrupt.
* ***IMMINENT RELEASE NOTICE***Richard Barry2014-08-1647-47/+47
| | | | Update version numbers ready for FreeRTOS V8.1.0 release in about 10 days.
* General maintenance - changing comments and correcting spellings only.Richard Barry2014-08-041-0/+4
|
* Update CyaSSL to latest version.Richard Barry2014-07-184-146/+169
|
* Update FreeRTOS+ components and demos to use typedef names introduced in ↵Richard Barry2014-06-2040-211/+211
| | | | FreeRTOS V8.
* Update version number ready for release.Richard Barry2014-04-2447-235/+235
|
* Update FreeRTOS+FAT SL to version 1.0.1.Richard Barry2014-04-235-3/+69
|
* Update version number to V8.0.0 (without the release candidate number).Richard Barry2014-02-1847-47/+47
|
* Update final demos that use the trace recorder code to use the new version.Richard Barry2014-02-173-550/+352
|
* Update LPC1830 example to use the latest trace recorder code.Richard Barry2014-02-176-1173/+240
|
* Change version numbers ready for V8.0.0 release candidate 1 tag.Richard Barry2013-12-3146-77/+89
|
* Update FreeRTOS+ more demos that use FreeRTOS+CLI to remove casting to ↵Richard Barry2013-12-3017-152/+154
| | | | int8_t * from strings.
* Update FreeRTOS+ demos that use FreeRTOS+CLI to remove casting to int8_t * ↵Richard Barry2013-12-308-572/+573
| | | | from strings.
* Change 'signed char *pcTaskName) to 'char *pcTaskName' in ↵Richard Barry2013-12-271-1/+1
| | | | vApplicationStackOverflowHook().
* Remove unnecessary 'signed char *' casts from strings that are now just ↵Richard Barry2013-12-2717-77/+77
| | | | plain char * types in the FreeRTOS-Plus directory.
* Update version numbers in FreeRTOS-Plus demo files.Richard Barry2013-11-1746-283/+2225
|
* Update the FreeRTOS+ Win32 MSVC demos to account for the changes to the ↵Richard Barry2013-10-292-8/+9
| | | | Win32 port layer (more accurate timing).
* Update FreeRTOS version number to V7.5.3Richard Barry2013-10-1440-40/+80
| | | | | Update FreeRTOS+CLI version number to V1.0.2 Update FreeRTOS+UDP version number to V1.0.1
* Ensure the statically configured gateway address is on the same subnet.Richard Barry2013-10-081-3/+3
|
* Update FreeRTOS_FD_SET() to check there is enough space in the queue before ↵Richard Barry2013-10-072-14/+19
| | | | adding the socket to the socket set.
* Make corrections to the interrupt priority configuration in the LPC1800 UDP ↵Richard Barry2013-10-075-9/+5
| | | | demo that resulted from an incorrect NVIC_PRIOR_BITS setting in the LPC18xx.h header file.
* Update version numbers.Richard Barry2013-07-2439-39/+39
|
* Rename xTaskGetSystemState() uxTaskGetSystemState().Richard Barry2013-07-184-4/+4
|
* For consistency change the name of configINCLUDE_STATS_FORMATTING_FUNCTIONS ↵Richard Barry2013-07-184-4/+4
| | | | to configUSE_STATS_FORMATTING_FUNCTIONS.
* Minor updates and change version number for V7.5.0 release.Richard Barry2013-07-1732-1149/+829
|
* Add the new configINCLUDE_STATS_FORMATTING_FUNCTIONS configuration parameter ↵Richard Barry2013-07-025-2/+26
| | | | to FreeRTOS+ demo applications that make use of vTaskStats() or vTaskGetRunTimeStats().
* Re-implement the LPC18xx and SmartFusion2 run time stats implementation to ↵Richard Barry2013-06-251-37/+44
| | | | | | | | use the free running Cortex-M cycle counter in place of the systick. Correct the run-time stats counter implementation in the RZ demo. Guard against run time counters going backwards in tasks.c.
* Update trace recorder code in the LPC18xx project.Richard Barry2013-06-237-34/+1014
|
* Remove old trace recorder source from LPC18xx project.Richard Barry2013-06-2315-6391/+0
|
* Remove DemoIPTrace.h from LPC18xx demo as it should be copied from is ↵Richard Barry2013-06-231-164/+0
| | | | standard location.
* Back out changes to LPC18xx UDP demo.Richard Barry2013-06-23312-63034/+59959
|
* Update the FreeRTOS_Plus_CLI_with_Trace_Windows_Simulator demo to use the ↵Richard Barry2013-06-058-189/+314
| | | | latest version of the trace recorder code.
* Update LPC18xx FreeRTOS+UDP demo to use LPCOpen USB and Ethernet drivers.Richard Barry2013-06-03314-60059/+63137
| | | | Update LPC18xx FreeRTOS+UDP eclipse project to use linked resources rather than a CreateProjectDirectoryStructure.bat batch file.
* Minor cosmetics to comments.Richard Barry2013-05-091-3/+3
|
* Update version numbers in a couple of files that got left behind.Richard Barry2013-05-017-7/+7
|
* Update version number ready to release the FAT file system demo.Richard Barry2013-04-3033-33/+33
|
* Add FAT SL code and demo project.Richard Barry2013-04-3014-0/+2753
|
* Clarify license blurb at the top of the FreeRTOS+UDP and FreeRTOS+CLI source ↵Richard Barry2013-04-301-1/+5
| | | | files.
* Update version numbers to V7.4.1.Richard Barry2013-04-1834-66/+75
|
* Change version number in common files within the FreeRTOS-plus directory and ↵Richard Barry2013-04-1820-438/+523
| | | | check all demos still execute.
* Add FreeRTOS-Plus directory with new directory structure so it matches the ↵Richard Barry2013-04-18185-0/+81609
FreeRTOS directory.