Commit Graph

  • f9c02d09c3 Update MSP432 projects to use updated driver library files. Remove references to INCLUDE_pcTaskGetTaskName and INCLUDE_xTimerGetTimerDaemonTaskHandle, which are no longer required. Richard Barry 2016-03-30 11:12:06 +00:00
  • b9b64c0889 Make the pcObjectGetName() API function naming consistent - so rename pcTaskGetTaskName() to pcTaskGetName(), rename pcTimerGetTimerName() to pcTimerGetName() and add a #defines in FreeRTOS.h to make the changes backward compatible. Richard Barry 2016-03-29 17:16:34 +00:00
  • aeb03e5fa0 Create minor optimisations (just an asm instruction or two) by using consts in a few places where previously a volatile variable that didn't change was used. Add the simple xTimerGetPeriod() and xTimerGetExpiryTime() functions. Richard Barry 2016-03-29 13:07:27 +00:00
  • 26d3770fad - Rework the StaticAllocation.c common demo file to reflect the changes to the static allocation object create functions from the previous check-in. - Correct various typos in comments. - Add xTimerGetPeriod() function (feature request). Richard Barry 2016-03-29 11:08:42 +00:00
  • 9dda62372c Update the documentation contained in the header files to be correct for V9.0.0 release candidate 2. Richard Barry 2016-03-26 11:05:42 +00:00
  • 6568ba6eb0 Notes: + The MPU port is not supported in this revision number. + The documentation for the static allocation functions in the header files has not yet been updated for this revision. Richard Barry 2016-03-22 16:23:37 +00:00
  • 283bc18d23 Very minor changes to the EFM32 Giant and Pearl Geckos demos in preparation for pre-release of the projects. Richard Barry 2016-03-18 19:40:03 +00:00
  • 60537ce7cb Add low power timer library source file for the Pearl Gecko demo. Fix types in comments. Richard Barry 2016-03-16 17:18:21 +00:00
  • 9f5095f6bd Rework the low power demo that uses the RTCC clock on the Pearl Gecko, and add attentional test code. Richard Barry 2016-03-16 17:17:07 +00:00
  • 8ffe75f665 Replace Gecko Simplicity Studio project that had multiple build configurations with one that has a single build configuration and targets the Giant Gecko starter kit. Now there are separate projects for the Giant and Pearl Geckos. Update the Pearl Gecko project to use the register test tasks that include the FPU registers. Richard Barry 2016-03-02 17:45:55 +00:00
  • c0abb762ff Add Pearl Gecko demo. Fix build error when configSUPPORT_STATIC_ALLOCATION and configNUM_THREAD_LOCAL_STORAGE_POINTERS were greater than zero at the same time. Allow the pdMS_TO_TICKS macro to be overridden by a definition in FreeRTOSConfig.h. Richard Barry 2016-03-02 16:03:25 +00:00
  • 780aa7e325 Add files necessary to create a Pearl Gecko build configuration in the new EFM32 SimplicityStudio project. Richard Barry 2016-02-20 15:27:40 +00:00
  • 592fa4dbf1 V9.0.0rc1 V9.0.0-rc1 Richard Barry 2016-02-19 12:25:34 +00:00
  • f4033581b5 Update FreeRTOS+ version number ready for version 9 release candidate 1. Richard Barry 2016-02-18 19:02:43 +00:00
  • d3ba0aa98d Update version number ready for version 9 release candidate 1. Richard Barry 2016-02-18 17:11:14 +00:00
  • d7253324cd Prepare for a FreeRTOS V9 release candidate: - Remove the standard demo files that used the [long since deprecated] alternative API. - Add standard demo task that tests the new xTaskAbortDelay() function. - Update the Win32 Visual Studio project to use Visual Studio 2015 Community Edition. - Rename the xGenericListItem TCB member to xStateListItem as it better describes the member's purpose. Richard Barry 2016-02-18 10:07:42 +00:00
  • c7b7b90cc9 Core kernel code changes: + Added xTaskAbortDelay() function, which causes a task to exit the Blocked state even before the timeout has expired or the event the task is waiting for has occurred. + For efficiency and code size reasons on some architectures, replace many instances of "== pdTRUE" with "!= pdFALSE". Richard Barry 2016-02-14 11:58:11 +00:00
  • 2acc8f2c99 FreeRTOS source: - Major refactor to consolidate the multiple places where a task is removed from a ready list and placed in a delay list into a single function, reducing code size, and enabling the easy addition of up-coming functionality. - Replace the enum used for task notification states with a uint8_t to reduce the TCB struct size with some compilers, and allow additional members to be added without increasing its size. - Rearrange FreeRTOS.h so all INCLUDE_ defaults are grouped together. Richard Barry 2016-02-10 12:58:15 +00:00
  • 42e73b9b8f Kernel source code: + Added xPortIsInsideInterrupt() to RVDS ARM CM4F port - the same will get added to other ports in time. Richard Barry 2016-02-09 16:02:54 +00:00
  • 732778a971 Test the RTC and BURTC tickless implementations on the Gecko parts, and make correct as appropriate. Replace some references to the older portTICK_RATE_MS macro with the newer pdMS_TO_TICKS() macro in the standard demo files. Richard Barry 2016-02-03 11:58:30 +00:00
  • 556de14a1d Update EFM32 demos to include an option to use the RTC as the clock source when using low power tickless mode. Richard Barry 2016-02-01 18:04:50 +00:00
  • c4dd17eeb5 Added a build configuration for the Wonder Gecko starter kit to the existing Giant Gecko Simplicity Studio project. Fix some lint warnings that were generated by some of the new core functionality. Richard Barry 2016-01-31 20:22:00 +00:00
  • 802af0150c Add vTaskGetTaskInfo() function that allows a TaskStatus_t structure to be returned for an individual task (previously information could only be obtained for all the tasks at once). Add a member to the TaskStatus_t structure that is used to return the base address of the stack used by the task being queried. Add xTaskGetTaskHandle() that allows the handle of a task to be looked up from the task's text name. Continue to document the macros that allow RTOS objects to be created using statically allocated memory. Introduced vApplicationDaemonTaskStartupHook(), which allows initialisation that that needs to be executed after the scheduler has been started to be executed from the RTOS daemon task. Call prvResetNextTaskUnblockTime() in xTaskResumeAll() if a task is moved from the pending ready list - this can prevent an unnecessary wake from sleep mode if a task is unblocked by an interrupt while in a low power tickless state. Richard Barry 2016-01-28 16:59:57 +00:00
  • b514f4fa4e Baseline the Giant Gecko demo, which now has the first pass at a low power tickless implementation. Richard Barry 2016-01-25 21:17:47 +00:00
  • 8ef7849199 Ensure the code builds when configSUPPORT_STATIC_ALLOCATION is 0. Continue to document the new static allocation functions. Richard Barry 2016-01-22 22:09:11 +00:00
  • f82953554d Provide the ability to create event groups and software timers using pre statically allocated memory - now all RTOS objects can be created using statically allocated memory. Rename StaticTCB_t to StaticTask_t. Richard Barry 2016-01-21 14:10:04 +00:00
  • 68fced741d Continue to add the ability to create RTOS objects using static rather than dynamic memory allocation - now including all the semaphore types. Update the StaticAllocation.c standard demo file to exercise the new static allocation functions. Richard Barry 2016-01-20 14:04:40 +00:00
  • cf0ed4e2ac Implement functionality that allows the memory required to create a queue or semaphore to be allocated statically. Update the standard demo task that tests statically allocated tasks to also test statically allocated queues. Richard Barry 2016-01-19 13:41:28 +00:00
  • eae4815bf3 Rename DummyTCB_t to StaticTCB_t. Move structures used for static allocation of tasks and queues into FreeRTOS.h from their individual API header files. Add SAME70 Xplained Atmel Studio project. Update SAMV71 Atmel Studio project to use Studio 7. Revert some changes to GenQTest.c standard demo task which only function correctly when a queue registry was used. Richard Barry 2016-01-18 15:57:02 +00:00
  • 41b5e486dd Remove unused header files from new EFM32 demo. Prep the code ready to create a tickless implementation. Richard Barry 2016-01-17 16:04:56 +00:00
  • 53b996077f Add EFM32 Giant Gecko Starter Kit demo - still a work in progress as the low power tick management has not been implemented yet. Richard Barry 2016-01-17 14:34:27 +00:00
  • b832d5801f Kernel changes: Richard Barry 2016-01-12 15:52:44 +00:00
  • f81575dcee Correct a comment that had been cut and paste into multiple main.c files. Richard Barry 2016-01-12 10:38:16 +00:00
  • 5690221c5c Add in the CORTEX_A53_64-bit_UltraScale_MPSoC demo application (a demo has been included in the Xilinx SDK download for some time already). Update a few demo application files to work with 64-bit data types. Richard Barry 2015-12-22 13:56:20 +00:00
  • 51560d9a96 FreeRTOS source updates: + Add the pre-existing 64-bit Cortex-A53 port layer into the head revision of the main repository. Richard Barry 2015-12-21 08:25:41 +00:00
  • ea95020ffd Changes to the FreeRTOS code: + Introduced xTaskCreateStatic() to allow tasks to be created without any dynamic memory allocation. + When a task notification is used to unblock a task from an ISR, but the xHigherPriorityTaskWoken parameter is not used, then pend a context switch to occur during the next tick interrupt. Richard Barry 2015-12-20 13:44:21 +00:00
  • 7d6609f8db FreeRTOS source: + Previously, if a task was deleted, the memory allocated to the task by the RTOS was freed in the Idle task. Now if a task deletes another task the memory is freed immediately. The idle task is however still responsible for freeing the memory when a task deletes itself. + Added pcQueueGetQueueName() function to return the name of a queue from its handle, assuming the queue is registers. Richard Barry 2015-12-08 20:22:58 +00:00
  • 94dd3f871b FreeRTOS Source files: + Updated all ARM Cortex-M0 ports to include an additional ISB instruction as the scheduler is started. Richard Barry 2015-11-22 22:03:00 +00:00
  • fa86d4eece FreeRTOS source changes: + heap_1.c and heap_2.c now support configAPPLICATION_ALLOCATED_HEAP (heap_4.c already did) which allows the heap to be placed by the user rather than the linker. Richard Barry 2015-11-22 21:14:39 +00:00
  • e9561c946c Kernel changes: Richard Barry 2015-11-20 14:11:11 +00:00
  • 64fd771d68 V8.2.3 Richard Barry 2015-10-17 17:35:48 +00:00
  • 5e9787978c Final tidy up before tagging V8.2.3. Richard Barry 2015-10-17 17:25:50 +00:00
  • 825b43a188 Update version number ready for the V8.2.3 release. Richard Barry 2015-10-16 14:57:00 +00:00
  • d289525e1b Preparing for maintenance release: Richard Barry 2015-10-16 11:29:36 +00:00
  • 57cc3389a5 Preparing for maintenance release - Bug fix - issue introduced in V8.2.2 when the current timer list is empty and the overflow timer list is not empty. Add PIC32MZ EF (floating point) support and update the MZ demo project to test the flop context switching. Improve efficiency of the stack overflow checking. Add CLI to RX71M demo. General tidy up of new RZ and RX projects - including ensuring the UART driver copes with 0 length strings. Add stack overflow checking to the [old] PIC24 demo. Richard Barry 2015-10-15 20:19:26 +00:00
  • 38cb08133d Check in RX231 IAR demo. Richard Barry 2015-10-10 20:38:12 +00:00
  • c6a4e3191e Add FreeRTOS+CLI examples to the Renesas RZ/T demos. Fix some compiler warnings. Correct spellings in comments. Richard Barry 2015-10-10 10:29:29 +00:00
  • 96ff3925d2 Update FreeRTOS+Trace recorder library to v3.0.2 Add streaming version of the FreeRTOS+Trace recorder, also V3.0.2 Richard Barry 2015-10-09 13:30:09 +00:00
  • f218cf5680 Demo tasks: - Complete the demo projects for the RX113 using IAR, GCC and Renesas compilers by including a basic UART CLI. Richard Barry 2015-10-05 15:23:09 +00:00
  • cd42d2c215 Changes in common files: Add additional asserts into timers.c. Richard Barry 2015-10-03 18:48:41 +00:00
  • b3f343fdae Update RX231 projects to blink the LED. Richard Barry 2015-09-25 09:33:37 +00:00
  • e5c8119b96 Baseline new RX projects before refining and tidying them up. Richard Barry 2015-09-25 08:26:55 +00:00
  • 87243e4a16 FreeRTOS source: + Added Renesas RXv2 port for IAR. Richard Barry 2015-09-23 12:16:10 +00:00
  • 27ff871a37 Baseline new GCC and Renesas compiler projects for RX71M and RX113 before adding IAR projects. Richard Barry 2015-09-22 08:45:15 +00:00
  • b71bb46a5b Modify RZ/T e2studio directory structure to accommodate an IAR project. Start RZ/T port and demo project. Richard Barry 2015-09-13 21:39:17 +00:00
  • aa80622d72 Remove compiler warnings from auto-generated code. Baseline prior to starting IAR RZ/T project. Richard Barry 2015-09-13 07:30:43 +00:00
  • a29dc8d6c6 Add PIC32MEC14xx port and demo application. Richard Barry 2015-09-12 20:47:59 +00:00
  • f19497c3d6 Simplify and improve GIC-less Cortex-R4 port. Add final tests into RZ/T demo. Richard Barry 2015-09-12 12:14:58 +00:00
  • b9f235846f Common source code: - Remove configASSERT() if a queue cannot be created, malloc failed hook will be called anyway. Richard Barry 2015-09-11 13:29:40 +00:00
  • 28d8a27f8f Initial RZ/T port and demo - work in progress, currently only the tick interrupt can be installed. Richard Barry 2015-09-07 17:29:14 +00:00
  • 717654471e Update the FreeRTOS+WolfSSL Win32 demo to use the latest WolfSSL libraries. Richard Barry 2015-08-28 13:58:05 +00:00
  • 02d0847567 Rename the FreeRTOS_Plus_CyaSSL_Windows_Simulator directory to FreeRTOS_Plus_WolfSSL_Windows_Simulator. Richard Barry 2015-08-28 13:49:47 +00:00
  • 5a6242fbd0 Update WolfSSL library to the latest version. Richard Barry 2015-08-28 13:46:22 +00:00
  • 8af1ad9bac Rename the CyaSSL directory to WolfSSL Richard Barry 2015-08-28 13:27:31 +00:00
  • 601fb0934c V8.2.2 Richard Barry 2015-08-12 16:49:00 +00:00
  • 1b010fbaa7 Final commit before tagging - cosmetic changes only. Richard Barry 2015-08-12 16:45:24 +00:00
  • 3291f5a08d Final preparation for new release: Richard Barry 2015-08-12 10:34:30 +00:00
  • 99d4f2c454 Update version numbers in preparation for new release. Richard Barry 2015-08-05 12:59:42 +00:00
  • b4c3d91aff Add FreeRTOS BSP for Xilinx SDK. Richard Barry 2015-08-05 10:21:59 +00:00
  • 4c847711bd Common scheduler code: Richard Barry 2015-08-04 17:36:55 +00:00
  • 95eed0c8f3 Preparing for next release... Richard Barry 2015-08-01 15:00:22 +00:00
  • 4c3722bd76 Preparing for new release... Richard Barry 2015-08-01 07:03:32 +00:00
  • 25b911e0bd Add resource filters to the Eclipse project used to build the Galileo demo. Richard Barry 2015-07-30 21:13:03 +00:00
  • cff5cfdd4f Preparing for the next release... New port and demo project: Intel Galileo. Richard Barry 2015-07-30 11:46:30 +00:00
  • 8b5c27b679 Preparing for the next release... Richard Barry 2015-07-30 11:37:33 +00:00
  • 672ae6cbb6 Starting to prepare for the next release... Richard Barry 2015-07-30 11:30:05 +00:00
  • d3e053568d MSP430: Add additional NOPs as required by hardware manual. Richard Barry 2015-07-26 16:41:12 +00:00
  • 95b73d40d9 Correct calculation of xHeapStructSize in heap_4 and heap_5. Convert uint32_t types to size_t types in heap_5.c, as was previously done for heap_4.c. Richard Barry 2015-06-25 12:14:54 +00:00
  • 4ee2a96861 Add back some files essential for the PIC32MZ build. Richard Barry 2015-06-24 16:49:21 +00:00
  • 8a1450effc Microblaze: Add a port optimised task selection implementation to the Microblaze port. Windows port: Add code to ensure Windows threads are truely suspended before resuming another thread. Typo correction to the task notification standard demo task. Correct case of some include file names to fix build issues on Linux. Richard Barry 2015-06-24 15:10:03 +00:00
  • cfb8223232 Add SAMV7 (Cortex-M7) demo for Atmel Studio. Richard Barry 2015-06-16 12:38:35 +00:00
  • 7456c232ce Update library files used in STM32F7 demo to the latest version released by ST. Richard Barry 2015-06-04 15:35:12 +00:00
  • 267dc24bb3 Kernel changes to improve power saving: + The timer task now blocks indefinitely if there are no timers active, allowing eTaskConfirmSleepModeStatus to return eNoTasksWaitingTimeout when configUSE_TIMERS is set to 1. + The next unblock time is calculated automatically after a task unblocks when waiting for a notification, allowing deep sleep to be entered earlier. Richard Barry 2015-05-20 15:46:40 +00:00
  • 067c1573c3 Finalise MSP43FR5969 IAR and CCS demos (hopefully). Richard Barry 2015-04-28 13:53:30 +00:00
  • 9bb5b40c81 Add CCS project for MSP430FR5969 demo. Richard Barry 2015-04-27 15:23:29 +00:00
  • a9d1ff4f5e Change some data types in heap_4.c to allow it to be used on hardware that has 16-bit pointers without generating compiler warnings. Add a small data model configuration to the MSP43FR5969 IAR demo. Correct some code comments in the SAMA5D4 demo. Richard Barry 2015-04-27 11:14:11 +00:00
  • 976a9b44af Rename /Demo/MSP430FR5969_LaunchPad to /Demo/MSP430X_MSP430FR5969_LaunchPad for consistency with other MSP430 demo directory names. Fixed typos in comments repeated in multiple source files. Richard Barry 2015-04-24 11:42:25 +00:00
  • 34a7b0431b Complete large memory model MSP430FR5969 demo - including CLI and run-time stats. Richard Barry 2015-04-24 11:34:19 +00:00
  • 91b249d24b Start of an MSP430FR5969 IAR project - currently running Blinky only. Richard Barry 2015-04-22 15:36:44 +00:00
  • d39c0d5926 Update TimerDemo.c to test the new vTimerSetTimerID() function. Update WinPCap NetworkInterface.c for FreeRTOS+UDP to correctly store a pointer to the network buffer structure at the beginning of the network buffer. Richard Barry 2015-04-13 19:58:51 +00:00
  • 03213b9e4a Add the errno definitions used by FreeRTOS+TCP and FreeRTOS+FAT into FreeRTOS's projdefs.h. Remove redundant global definition vPortInstallFreeRTOSVectorTable from the GCC ARM_CA9 portASM.S file. Ensure correct sequence of start up sequence when the Windows port is used on multi-core Windows machines by starting one thread in the suspended state. Move initialisation of xNextTaskUnblockTime to the function that starts the scheduler, rather than from where the variable is declared - this fixes a compiler warning in newer IAR compilers. Fix "elif (SELECTED_PORT == PORT_MICROCHIP_PIC32MX || PORT_MICROCHIP_PIC32MZ)" in the FreeRTOS+Trace trcHardwarePort.h header file. Richard Barry 2015-04-13 18:45:02 +00:00
  • 8bfa81f5ab V8.2.1 Richard Barry 2015-04-07 12:08:58 +00:00
  • 0b25e503b8 Richard Barry 2015-03-24 16:05:46 +00:00
  • 8dadb6b87c Final V8.2.1 release ready for tagging: + Added MSP432 (ARM Cortex-M4F MSP430!) demos for IAR, Keil and CCS. + Renamed directory containing demo for STM32F7 ARM Cortex-M7. + Renamed directory containing demo for SAMV71 ARM Cortex-M7. + Introduced xTaskNotifyAndQuery(). Richard Barry 2015-03-24 15:24:49 +00:00
  • 693d0520bc Update version number ready for V8.2.1 release. Richard Barry 2015-03-21 21:03:42 +00:00
  • 63b3c773d5 Kernel changes: Exclude the entire croutine.c file when configUSE_CO_ROUTINES is 0. Richard Barry 2015-03-21 14:01:43 +00:00
  • 2bf93bf925 Minor updates relating to formatting and comments only. Richard Barry 2015-03-20 15:43:20 +00:00
  • a61db8f155 Minor updates to the Microblaze KC702 demo to allow easier connection from a Telnet server. Richard Barry 2015-03-16 11:22:43 +00:00
  • 18ff880e75 Add networking option to the Microblaze Kintex demo. Richard Barry 2015-03-13 15:05:09 +00:00
  • 3012d9b94d Work-in-progress check in of MicroBlaze Kintex7 demo. Richard Barry 2015-03-10 15:58:19 +00:00