]> begriffs open source - freertos/log
freertos
13 years agoV7.2.0 release. V7.2.0
Richard Barry [Tue, 14 Aug 2012 13:58:37 +0000 (13:58 +0000)]
V7.2.0 release.

13 years agoPut comments in the code that give a reference to people who think that setting BASE_...
Richard Barry [Tue, 14 Aug 2012 13:04:22 +0000 (13:04 +0000)]
Put comments in the code that give a reference to people who think that setting BASE_PRI to zero is the wrong thing to to in an ISR.

13 years agoPrepare for V7.2.0 release.
Richard Barry [Tue, 14 Aug 2012 12:14:48 +0000 (12:14 +0000)]
Prepare for V7.2.0 release.

13 years agoRemove the remnants of the legacy trace functionality (since replaced with FreeRTOS...
Richard Barry [Sun, 12 Aug 2012 17:05:23 +0000 (17:05 +0000)]
Remove the remnants of the legacy trace functionality (since replaced with FreeRTOS+Trace).
Replaced the #error that traps configMAX_SYSCALL_INTERRUPT_PRIORITY being set to 0 with a configASSERT() for GCC Cortex-M3/4 ports as the #error does not work if configMAX_SYSCALL_INTERRUPT_PRIORITY includes any casting.  Not a problem for other compilers as they cannot have casting anyway as that would break the assembly code.

13 years agoAdd warning in Cortex-M3 and Cortex-M4 FreeRTOSConfig.h header files that configMAX_S...
Richard Barry [Sun, 12 Aug 2012 16:49:43 +0000 (16:49 +0000)]
Add warning in Cortex-M3 and Cortex-M4 FreeRTOSConfig.h header files that configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to 0.

13 years agoAdd CreateProjectDirectoryStructure.bat to the SAM4 demo.
Richard Barry [Sun, 12 Aug 2012 04:25:38 +0000 (04:25 +0000)]
Add CreateProjectDirectoryStructure.bat to the SAM4 demo.

13 years agoRemove the files from the SAM4S demo that are copied using the CreateProjectDirectory...
Richard Barry [Sun, 12 Aug 2012 04:14:58 +0000 (04:14 +0000)]
Remove the files from the SAM4S demo that are copied using the CreateProjectDirectoryStructure.bat batch file.

13 years agoAdd readme files to the various FreeRTOS+ directories.
Richard Barry [Sat, 11 Aug 2012 22:57:53 +0000 (22:57 +0000)]
Add readme files to the various FreeRTOS+ directories.

13 years agoAdd FreeRTOS-Plus directory.
Richard Barry [Sat, 11 Aug 2012 21:34:11 +0000 (21:34 +0000)]
Add FreeRTOS-Plus directory.

13 years agoStart to re-arrange files to include FreeRTOS+ in main download.
Richard Barry [Sat, 11 Aug 2012 21:06:27 +0000 (21:06 +0000)]
Start to re-arrange files to include FreeRTOS+ in main download.

13 years agoRemove test code from heap_4.c.
Richard Barry [Sat, 11 Aug 2012 20:59:14 +0000 (20:59 +0000)]
Remove test code from heap_4.c.

13 years agoUpdate MPS430X ports so the sleep mode bits are cleared on exit from the tick interrupt.
Richard Barry [Sat, 11 Aug 2012 20:57:11 +0000 (20:57 +0000)]
Update MPS430X ports so the sleep mode bits are cleared on exit from the tick interrupt.
Update heap_4.c.

13 years agoAdd heap_4.c.
Richard Barry [Fri, 10 Aug 2012 18:45:45 +0000 (18:45 +0000)]
Add heap_4.c.

13 years agoAdd vQueueDelete() to the MPU port.
Richard Barry [Fri, 3 Aug 2012 15:21:21 +0000 (15:21 +0000)]
Add vQueueDelete() to the MPU port.
Added volatile key word to the queue xRxLock and xTxLock members.
Ensure the portPRIVILEGED_BIT bit is set when the timer task is being created by the kernel - as it was for the idle task.  Necessary for MPU port.

13 years agoRenamed the CORTEX_M4_ATSAM4S_AVR_Studio directory to the correct CORTEX_M4_ATSAM4S_A...
Richard Barry [Sun, 8 Jul 2012 15:58:54 +0000 (15:58 +0000)]
Renamed the CORTEX_M4_ATSAM4S_AVR_Studio directory to the correct CORTEX_M4_ATSAM4S_Atmel_Studio.

13 years agoRemove the unused linker reference to the maths library.
Richard Barry [Sun, 8 Jul 2012 15:52:01 +0000 (15:52 +0000)]
Remove the unused linker reference to the maths library.

13 years agoComplete first release candidate for the SAM4S-EK demo.
Richard Barry [Sun, 8 Jul 2012 14:11:37 +0000 (14:11 +0000)]
Complete first release candidate for the SAM4S-EK demo.

13 years agoIn the SAM4S demo, moved FreeRTOS into the ASF/thirdparty directory.
Richard Barry [Thu, 5 Jul 2012 09:41:37 +0000 (09:41 +0000)]
In the SAM4S demo, moved FreeRTOS into the ASF/thirdparty directory.
Changed some of the compiler warning configuration.

13 years agoChange the name of the SAM4 FreeRTOS-Source directory to just FreeRTOS in preparation...
Richard Barry [Thu, 5 Jul 2012 08:35:36 +0000 (08:35 +0000)]
Change the name of the SAM4 FreeRTOS-Source directory to just FreeRTOS in preparation of moving it to the ASF/Thirdparty directory.

13 years agoCreate project for SAM4S. This is building but has not yet been tested on hardware.
Richard Barry [Tue, 3 Jul 2012 13:49:34 +0000 (13:49 +0000)]
Create project for SAM4S.  This is building but has not yet been tested on hardware.

13 years agoAdd in a couple of extra list macros for use with FreeRTOS+UDP.
Richard Barry [Tue, 3 Jul 2012 11:16:52 +0000 (11:16 +0000)]
Add in a couple of extra list macros for use with FreeRTOS+UDP.
Allow the ISR safe queue send and receive functions to set the higher priority task woken pointer to NULL.

13 years agoAdd the macro xSemaphoreTakeFromISR().
Richard Barry [Tue, 3 Jul 2012 09:38:09 +0000 (09:38 +0000)]
Add the macro xSemaphoreTakeFromISR().
Add #error strings if configMAX_SYSCALL_INTERRUPT_PRIORITY is set to 0.
Corrected the prototype of vApplicationStackOverflowHook().
Changed the dimensioning of the buffer declared in prvListTaskWithinSingleList() to make use of the configMAX_TASK_NAME_LEN setting.

13 years agoAdded INCLUDE_xQueueGetMutexHolder macro.
Richard Barry [Thu, 17 May 2012 08:22:27 +0000 (08:22 +0000)]
Added INCLUDE_xQueueGetMutexHolder macro.
Removed the "-rc1" that was accidentally left on the version number of some Win32 port files.
Changed the behaviour of xQueueGenericReset() so queues can be reset when tasks are blocked on them.

13 years agoPrepare for FreeRTOS V7.1.1 tag.
Richard Barry [Tue, 8 May 2012 17:35:44 +0000 (17:35 +0000)]
Prepare for FreeRTOS V7.1.1 tag.

13 years agoPrepare for FreeRTOS V7.1.1 tag.
Richard Barry [Tue, 8 May 2012 16:50:26 +0000 (16:50 +0000)]
Prepare for FreeRTOS V7.1.1 tag.

13 years agoPrepare for FreeRTOS V7.1.1 tag.
Richard Barry [Tue, 8 May 2012 16:36:52 +0000 (16:36 +0000)]
Prepare for FreeRTOS V7.1.1 tag.

13 years agoUpdate the RX63N RDK project to use the correct PHY ID.
Richard Barry [Tue, 1 May 2012 12:28:06 +0000 (12:28 +0000)]
Update the RX63N RDK project to use the correct PHY ID.

13 years agoChange the Win32 port layer so it doesn't use the traceTASK_DELETE macro, but instead...
Richard Barry [Tue, 24 Apr 2012 13:09:22 +0000 (13:09 +0000)]
Change the Win32 port layer so it doesn't use the traceTASK_DELETE macro, but instead the new portCLEAN_UP_TCB macro.

13 years agoUpdate the RX63N RDK demo to use the latest (at the time of writing) Renesas RDK...
Richard Barry [Tue, 24 Apr 2012 12:45:01 +0000 (12:45 +0000)]
Update the RX63N RDK demo to use the latest (at the time of writing) Renesas RDK BSP.
Ethernet is still not included.
The configuration is still set for the ES chip.

13 years agoUpdate the RX63N RSK demo to use the latest (at the time of writing) Renesas RSK...
Richard Barry [Tue, 24 Apr 2012 10:00:06 +0000 (10:00 +0000)]
Update the RX63N RSK demo to use the latest (at the time of writing) Renesas RSK BSP.
Ethernet is still not included.
The configuration is still set for the ES chip.

13 years agoRemove older Renesas BSP files from the RX63N RSK demo in preparation to add in the...
Richard Barry [Mon, 23 Apr 2012 13:39:14 +0000 (13:39 +0000)]
Remove older Renesas BSP files from the RX63N RSK demo in preparation to add in the latest BSP files.

13 years agoRX63N RDK Debug build configuration now building, but not yet tested.
Richard Barry [Wed, 18 Apr 2012 10:34:05 +0000 (10:34 +0000)]
RX63N RDK Debug build configuration now building, but not yet tested.

13 years agoBackup point only. YRDK RX63N building but not linking.
Richard Barry [Wed, 18 Apr 2012 09:40:10 +0000 (09:40 +0000)]
Backup point only.  YRDK RX63N building but not linking.

13 years agoUpdate the Renesas provided BSP files in the RDK RX63N project.
Richard Barry [Wed, 18 Apr 2012 09:08:56 +0000 (09:08 +0000)]
Update the Renesas provided BSP files in the RDK RX63N project.

13 years agoStarting point for YRDK RX63N demo.
Richard Barry [Wed, 18 Apr 2012 08:40:34 +0000 (08:40 +0000)]
Starting point for YRDK RX63N demo.

13 years agoUpdate the TCP/IP update period from 500ms to the expected 50ms.
Richard Barry [Wed, 18 Apr 2012 08:16:15 +0000 (08:16 +0000)]
Update the TCP/IP update period from 500ms to the expected 50ms.

13 years agoSet the last return address at the bottom of the stack to 0 in the RX600 ports to...
Richard Barry [Mon, 16 Apr 2012 18:33:32 +0000 (18:33 +0000)]
Set the last return address at the bottom of the stack to 0 in the RX600 ports to prevent E2Studio from attempting to dereference the 0xdeadbeef pointer.

13 years agoChange the stack alignment when a task first starts in the CM4F GCC, Tasking and...
Richard Barry [Mon, 16 Apr 2012 18:23:32 +0000 (18:23 +0000)]
Change the stack alignment when a task first starts in the CM4F GCC, Tasking and Keil ports.

13 years agoRemove unused .txt file from the XMC4500 uVision project.
Richard Barry [Mon, 16 Apr 2012 18:21:11 +0000 (18:21 +0000)]
Remove unused .txt file from the XMC4500 uVision project.

13 years agoRemoved unused function from IAR CM4F port.c.
Richard Barry [Mon, 16 Apr 2012 17:04:42 +0000 (17:04 +0000)]
Removed unused function from IAR CM4F port.c.
Modified the stack alignment when a task first starts in the IAR CM4F port.

13 years agoAdded the FreeRTOS/WorkingCopy/Demo/CORTEX_M4F_Infineon_XMC4500_IAR/settings director...
Richard Barry [Mon, 16 Apr 2012 17:02:21 +0000 (17:02 +0000)]
Added the FreeRTOS/WorkingCopy/Demo/CORTEX_M4F_Infineon_XMC4500_IAR/settings directory to ensure the files open up in the IDE in the correct place when the project is first opened.

13 years agoStarting point for XMC4500 IAR demo application.
Richard Barry [Sun, 15 Apr 2012 21:04:53 +0000 (21:04 +0000)]
Starting point for XMC4500 IAR demo application.

13 years agoAdd #error statements in FreeRTOSConfig.h header files where the CreateProjectDirecto...
Richard Barry [Fri, 6 Apr 2012 20:20:35 +0000 (20:20 +0000)]
Add #error statements in FreeRTOSConfig.h header files where the CreateProjectDirectoryStructure.bat should be executed prior to the first build.
Added the CreateProjectDirectoryStructure.bat file for the XMC4500 Tasking demo.

13 years agoCopy Tasking CM4F files from the project directory into their correct location in...
Richard Barry [Fri, 6 Apr 2012 20:05:43 +0000 (20:05 +0000)]
Copy Tasking CM4F files from the project directory into their correct location in the FreeRTOS/Source directory.

13 years agoUpdate include paths to be workspace relative.
Richard Barry [Fri, 6 Apr 2012 20:02:44 +0000 (20:02 +0000)]
Update include paths to be workspace relative.
Minimise the amount of heap space allocated.
Reduce the main() stack from 4K to 2K.

13 years agoCreated and tested optimised build configuration for the XMC4500 demo.
Richard Barry [Fri, 6 Apr 2012 19:47:30 +0000 (19:47 +0000)]
Created and tested optimised build configuration for the XMC4500 demo.

13 years agoTasking XMC4500 demo now running.
Richard Barry [Fri, 6 Apr 2012 18:33:50 +0000 (18:33 +0000)]
Tasking XMC4500 demo now running.

13 years agoTurn on long branch veneer generation in Tasking XMC4500 project - not sure why it...
Richard Barry [Fri, 6 Apr 2012 17:45:24 +0000 (17:45 +0000)]
Turn on long branch veneer generation in Tasking XMC4500 project - not sure why it is needed.

13 years agoStarting point for Tasking XMC4500 demo. Compiling only, not executed yet.
Richard Barry [Fri, 6 Apr 2012 16:36:52 +0000 (16:36 +0000)]
Starting point for Tasking XMC4500 demo.  Compiling only, not executed yet.

13 years agoAdded traceMOVED_TASK_TO_READY_STATE and portSETUP_TCB macros.
Richard Barry [Mon, 2 Apr 2012 20:06:52 +0000 (20:06 +0000)]
Added traceMOVED_TASK_TO_READY_STATE and portSETUP_TCB macros.
Changed uxTCBNumber back to uxTaskNumber in tasks.c to fix IAR plug-in.

13 years agoChecking current RX62N Renesas project which now links with the latest Renesas compiler.
Richard Barry [Mon, 2 Apr 2012 18:40:56 +0000 (18:40 +0000)]
Checking current RX62N Renesas project which now links with the latest Renesas compiler.

13 years agoUpdate the CM3 MPU port so it builds with the changes made to enable the FreeRTOS...
Richard Barry [Mon, 2 Apr 2012 18:33:46 +0000 (18:33 +0000)]
Update the CM3 MPU port so it builds with the changes made to enable the FreeRTOS+Trace tool.

13 years agoCheck in current RX63N session file.
Richard Barry [Mon, 2 Apr 2012 18:31:13 +0000 (18:31 +0000)]
Check in current RX63N session file.

13 years agoChecking current RX600 Renesas project which now links with the latest Renesas compiler.
Richard Barry [Mon, 2 Apr 2012 18:30:26 +0000 (18:30 +0000)]
Checking current RX600 Renesas project which now links with the latest Renesas compiler.

13 years agoUpdate Rowley LPC2368 project to remove the multiple defined symbol warnings.
Richard Barry [Mon, 2 Apr 2012 17:38:58 +0000 (17:38 +0000)]
Update Rowley LPC2368 project to remove the multiple defined symbol warnings.

13 years agoUpdate Rowley STM32F107 project to remove multiple defined symbol warning.
Richard Barry [Mon, 2 Apr 2012 17:36:42 +0000 (17:36 +0000)]
Update Rowley STM32F107 project to remove multiple defined symbol warning.

13 years agoUpdate MPU projects to build with V7.1.0 - NOTE - these now build but do not necessar...
Richard Barry [Mon, 2 Apr 2012 17:35:03 +0000 (17:35 +0000)]
Update MPU projects to build with V7.1.0 - NOTE - these now build but do not necessarily execute correct from the Rowley IDE.

13 years agoUpdate Rowley LPC1768 project to remove the multiple defined symbol warning.
Richard Barry [Mon, 2 Apr 2012 17:33:04 +0000 (17:33 +0000)]
Update Rowley LPC1768 project to remove the multiple defined symbol warning.

13 years agoRename Demo/MPS430X_MSP430F5438_CCS4 Demo/MPS430X_MSP430F5438_CCS.
Richard Barry [Mon, 2 Apr 2012 09:40:00 +0000 (09:40 +0000)]
Rename Demo/MPS430X_MSP430F5438_CCS4 Demo/MPS430X_MSP430F5438_CCS.

13 years agoRename the Source/Portable/CCS4 directory to Source/Portable/CCS.
Richard Barry [Mon, 2 Apr 2012 09:37:17 +0000 (09:37 +0000)]
Rename the Source/Portable/CCS4 directory to Source/Portable/CCS.

13 years agoRemove the Demo/Common/Utils directory as the CLI code is currently provided separately.
Richard Barry [Mon, 2 Apr 2012 09:24:11 +0000 (09:24 +0000)]
Remove the Demo/Common/Utils directory as the CLI code is currently provided separately.

13 years agoTest the CCS4 demo project to CCS5 and make a minor change to ensure the power suppli...
Richard Barry [Mon, 2 Apr 2012 09:20:45 +0000 (09:20 +0000)]
Test the CCS4 demo project to CCS5 and make a minor change to ensure the power supplied is adequate for the CPU speed.

13 years agoRemove compiler warning in CCS MSP430X port.
Richard Barry [Sun, 1 Apr 2012 18:24:08 +0000 (18:24 +0000)]
Remove compiler warning in CCS MSP430X port.

13 years agoUpdate MSP430X IAR port to ensure the power settings are correct for the clock speed.
Richard Barry [Sun, 1 Apr 2012 17:54:07 +0000 (17:54 +0000)]
Update MSP430X IAR port to ensure the power settings are correct for the clock speed.

13 years agoCorrect #endif statement in new flash_tiemr.h header file.
Richard Barry [Sat, 17 Mar 2012 17:22:52 +0000 (17:22 +0000)]
Correct #endif statement in new flash_tiemr.h header file.

13 years agoUpdate version number in a couple of files in the RX63N/Renesas demo.
Richard Barry [Sat, 17 Mar 2012 17:21:49 +0000 (17:21 +0000)]
Update version number in a couple of files in the RX63N/Renesas demo.

13 years agoBaseline the RX63N/Renesas demo - the Ethernet part of the demo is currently commente...
Richard Barry [Sat, 17 Mar 2012 17:18:27 +0000 (17:18 +0000)]
Baseline the RX63N/Renesas demo - the Ethernet part of the demo is currently commented out as the Ethernet port is not configured using the RX63N register set.

13 years agoAdd the sp_flop standard demo tasks to the RX63N RSK demo.
Richard Barry [Sat, 17 Mar 2012 15:11:13 +0000 (15:11 +0000)]
Add the sp_flop standard demo tasks to the RX63N RSK demo.

13 years agoUpdate demos to use timers for the check functionality, and the flash timers. Floati...
Richard Barry [Sat, 17 Mar 2012 15:02:32 +0000 (15:02 +0000)]
Update demos to use timers for the check functionality, and the flash timers.  Floating point and Ethernet is not yet included.

13 years agoAdd the flash_timer standard demo timers (rather than tasks). These behave as the...
Richard Barry [Sat, 17 Mar 2012 14:59:46 +0000 (14:59 +0000)]
Add the flash_timer standard demo timers (rather than tasks).  These behave as the flash tasks, but use timers in place of tasks.

13 years agoUpdate RX63N start-up to configure the high speed clock prior to initialising the...
Richard Barry [Thu, 15 Mar 2012 16:58:31 +0000 (16:58 +0000)]
Update RX63N start-up to configure the high speed clock prior to initialising the C run time library.

13 years agoStarting point for RX63N demo added.
Richard Barry [Thu, 15 Mar 2012 15:56:05 +0000 (15:56 +0000)]
Starting point for RX63N demo added.

13 years agoUpdate the Rx/Renesas projects to include an extra linker section "L" required by...
Richard Barry [Mon, 12 Mar 2012 15:29:56 +0000 (15:29 +0000)]
Update the Rx/Renesas projects to include an extra linker section "L" required by the latest compilers.

13 years agoModified header comments only.
Richard Barry [Mon, 12 Mar 2012 14:37:27 +0000 (14:37 +0000)]
Modified header comments only.

13 years agoConvert mov instructions to movs instructions in the GCC Cortex-M0 demo.
Richard Barry [Sun, 11 Mar 2012 21:31:23 +0000 (21:31 +0000)]
Convert mov instructions to movs instructions in the GCC Cortex-M0 demo.
Update GCC Cortex-M0 CMSISv2p00_LPC11xx/inc/LPC11xx.h.

13 years agoConvert mov instructions to movs instructions in the GCC Cortex-M0 port.
Richard Barry [Sun, 11 Mar 2012 21:28:06 +0000 (21:28 +0000)]
Convert mov instructions to movs instructions in the GCC Cortex-M0 port.

13 years agoFix issue in linker script generated by TrueStudio for STM32F0.
Richard Barry [Sun, 11 Mar 2012 20:22:18 +0000 (20:22 +0000)]
Fix issue in linker script generated by TrueStudio for STM32F0.

13 years agoArrange windows in the XMC4000/Keil demo so they appear neatly when the project is...
Richard Barry [Sun, 11 Mar 2012 20:21:22 +0000 (20:21 +0000)]
Arrange windows in the XMC4000/Keil demo so they appear neatly when the project is first opened.

13 years agoCorrect linker script for ARM7_AT91SAM7X256_Eclipse demo.
Richard Barry [Sun, 11 Mar 2012 20:18:07 +0000 (20:18 +0000)]
Correct linker script for ARM7_AT91SAM7X256_Eclipse demo.

13 years agoAdd static qualifier to the function that starts the first task in GCC/ARM_CM3/port.c.
Richard Barry [Sun, 11 Mar 2012 20:14:50 +0000 (20:14 +0000)]
Add static qualifier to the function that starts the first task in GCC/ARM_CM3/port.c.
Added a _nop() after the _disable_interrupt() in CCS4/MSP430X/portmacro.h.
Added a NOP() after the disabling of interrupts in IAR/MSP430X/portmacro.h.

13 years agoUpdate IAR MSP430X project to latest IAR version.
Richard Barry [Sun, 11 Mar 2012 15:50:19 +0000 (15:50 +0000)]
Update IAR MSP430X project to latest IAR version.

13 years agoAdded xSemaphoreGetMutexHolder() macro and equivalent function.
Richard Barry [Sun, 11 Mar 2012 15:23:51 +0000 (15:23 +0000)]
Added xSemaphoreGetMutexHolder() macro and equivalent function.

13 years agoAdd batch file that creates the directory structure required by the XMC4500 GCC port.
Richard Barry [Sun, 11 Mar 2012 14:26:01 +0000 (14:26 +0000)]
Add batch file that creates the directory structure required by the XMC4500 GCC port.

13 years agoAdd GCC Cortex-M4F port layer.
Richard Barry [Sun, 11 Mar 2012 14:09:22 +0000 (14:09 +0000)]
Add GCC Cortex-M4F port layer.

13 years agoAdd GCC project for Infineon XMC4500 Hexagon kit CPU board.
Richard Barry [Sun, 11 Mar 2012 14:07:48 +0000 (14:07 +0000)]
Add GCC project for Infineon XMC4500 Hexagon kit CPU board.

13 years agoArrange the windows in the Keil XMC4500 demo to be positioned correctly when first...
Richard Barry [Mon, 5 Mar 2012 15:23:43 +0000 (15:23 +0000)]
Arrange the windows in the Keil XMC4500 demo to be positioned correctly when first opened.

13 years agoUpdate comments in STM32F0 demo.
Richard Barry [Mon, 5 Mar 2012 15:22:00 +0000 (15:22 +0000)]
Update comments in STM32F0 demo.
Update the Keil XMC4500 demo so there are simple blinky and comprehensive demo options.

13 years agoUpdate a comment only.
Richard Barry [Sun, 4 Mar 2012 20:59:23 +0000 (20:59 +0000)]
Update a comment only.

13 years agoAdd STM32F0 demo.
Richard Barry [Sun, 4 Mar 2012 15:11:54 +0000 (15:11 +0000)]
Add STM32F0 demo.

13 years agoAdded IAR port layer for the Cortex-M0.
Richard Barry [Fri, 24 Feb 2012 12:05:01 +0000 (12:05 +0000)]
Added IAR port layer for the Cortex-M0.

13 years agoChange FreeRTOSConfig.h for the LPCXpresso CM0 demo as there seem to be two forms...
Richard Barry [Wed, 25 Jan 2012 09:23:55 +0000 (09:23 +0000)]
Change FreeRTOSConfig.h for the LPCXpresso CM0 demo as there seem to be two forms of the CMSIS names.

13 years agoRevert the CM0 port layer exception handler names to the traditional FreeRTOS names...
Richard Barry [Wed, 25 Jan 2012 09:19:58 +0000 (09:19 +0000)]
Revert the CM0 port layer exception handler names to the traditional FreeRTOS names as there seem to be two forms of the CMSIS names.

13 years agoRemove the ( void ) prvSetupNestedFPUInterruptsTest; line from the LPC4300 M4 main...
Richard Barry [Mon, 23 Jan 2012 17:08:37 +0000 (17:08 +0000)]
Remove the ( void ) prvSetupNestedFPUInterruptsTest; line from the LPC4300 M4 main.c file.  It should not have been there.

13 years agoAdd XMC4500 project.
Richard Barry [Mon, 23 Jan 2012 12:02:57 +0000 (12:02 +0000)]
Add XMC4500 project.

13 years agoUpdate comments in main-full.c of CM0 demo.
Richard Barry [Sun, 22 Jan 2012 21:26:47 +0000 (21:26 +0000)]
Update comments in main-full.c of CM0 demo.

13 years agoRemove duplicate definition of "#define vPortSVCHandler SVC_Handler" from FreeRTOSCon...
Richard Barry [Sun, 22 Jan 2012 10:01:52 +0000 (10:01 +0000)]
Remove duplicate definition of "#define vPortSVCHandler SVC_Handler" from FreeRTOSConfig.h included in CORTEX_STM32F100_Atollic demo.

13 years agoIn files added a few moments ago:
Richard Barry [Sat, 21 Jan 2012 19:01:04 +0000 (19:01 +0000)]
In files added a few moments ago:
+ Correct version number in comments at top of file.
+ Correct path in batch file.

13 years agoMove the CM0 files to their correct location and remove from their temporary demo...
Richard Barry [Sat, 21 Jan 2012 18:46:08 +0000 (18:46 +0000)]
Move the CM0 files to their correct location and remove from their temporary demo project home.

13 years agoAdded batch file to create LPC11xx demo. Tidied up the M0 port layer files.
Richard Barry [Sat, 21 Jan 2012 18:38:21 +0000 (18:38 +0000)]
Added batch file to create LPC11xx demo.  Tidied up the M0 port layer files.
This is a baseline taken before moving the M0 port files to their proper location.

13 years agoCorrect one of the descriptions in the MicroBlaze FreeRTOS BSP mld file.
Richard Barry [Sat, 21 Jan 2012 16:42:03 +0000 (16:42 +0000)]
Correct one of the descriptions in the MicroBlaze FreeRTOS BSP mld file.