+++ /dev/null
-/*\r
- FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
- All rights reserved\r
-\r
- VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
- This file is part of the FreeRTOS distribution.\r
-\r
- FreeRTOS is free software; you can redistribute it and/or modify it under\r
- the terms of the GNU General Public License (version 2) as published by the\r
- Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
-\r
- ***************************************************************************\r
- >>! NOTE: The modification to the GPL is included to allow you to !<<\r
- >>! distribute a combined work that includes FreeRTOS without being !<<\r
- >>! obliged to provide the source code for proprietary components !<<\r
- >>! outside of the FreeRTOS kernel. !<<\r
- ***************************************************************************\r
-\r
- FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
- FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
- link: http://www.freertos.org/a00114.html\r
-\r
- ***************************************************************************\r
- * *\r
- * FreeRTOS provides completely free yet professionally developed, *\r
- * robust, strictly quality controlled, supported, and cross *\r
- * platform software that is more than just the market leader, it *\r
- * is the industry's de facto standard. *\r
- * *\r
- * Help yourself get started quickly while simultaneously helping *\r
- * to support the FreeRTOS project by purchasing a FreeRTOS *\r
- * tutorial book, reference manual, or both: *\r
- * http://www.FreeRTOS.org/Documentation *\r
- * *\r
- ***************************************************************************\r
-\r
- http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
- the FAQ page "My application does not run, what could be wrong?". Have you\r
- defined configASSERT()?\r
-\r
- http://www.FreeRTOS.org/support - In return for receiving this top quality\r
- embedded software for free we request you assist our global community by\r
- participating in the support forum.\r
-\r
- http://www.FreeRTOS.org/training - Investing in training allows your team to\r
- be as productive as possible as early as possible. Now you can receive\r
- FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
- Ltd, and the world's leading authority on the world's leading RTOS.\r
-\r
- http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
- including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
- compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
- http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
- Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
-\r
- http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
- Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
- licenses offer ticketed support, indemnification and commercial middleware.\r
-\r
- http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
- engineered and independently SIL3 certified version for use in safety and\r
- mission critical applications that require provable dependability.\r
-\r
- 1 tab == 4 spaces!\r
-*/\r
-\r
-#ifndef FREERTOS_CONFIG_H\r
-#define FREERTOS_CONFIG_H\r
-\r
-/*-----------------------------------------------------------\r
- * Application specific definitions.\r
- *\r
- * These definitions should be adjusted for your particular hardware and\r
- * application requirements.\r
- *\r
- * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE\r
- * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.\r
- *\r
- * See http://www.freertos.org/a00110.html.\r
- *----------------------------------------------------------*/\r
-\r
-#define configUSE_PREEMPTION 1\r
-#define configUSE_IDLE_HOOK 1\r
-#define configUSE_TICK_HOOK 1\r
-#define configCPU_CLOCK_HZ ( ( unsigned long ) 50000000 )\r
-#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )\r
-#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 100 )\r
-#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 2560 ) )\r
-#define configMAX_TASK_NAME_LEN ( 12 )\r
-#define configUSE_TRACE_FACILITY 0\r
-#define configUSE_16_BIT_TICKS 0\r
-#define configIDLE_SHOULD_YIELD 0\r
-#define configUSE_CO_ROUTINES 0\r
-#define configUSE_MUTEXES 0\r
-#define configUSE_COUNTING_SEMAPHORES 0\r
-#define configCHECK_FOR_STACK_OVERFLOW 0\r
-#define configUSE_RECURSIVE_MUTEXES 0\r
-#define configQUEUE_REGISTRY_SIZE 0\r
-#define configGENERATE_RUN_TIME_STATS 0\r
-#define configUSE_MALLOC_FAILED_HOOK 1\r
-\r
-#define configMAX_PRIORITIES ( 5 )\r
-#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )\r
-\r
-/* Set the following definitions to 1 to include the API function, or zero\r
-to exclude the API function. */\r
-\r
-#define INCLUDE_vTaskPrioritySet 0\r
-#define INCLUDE_uxTaskPriorityGet 0\r
-#define INCLUDE_vTaskDelete 1\r
-#define INCLUDE_vTaskCleanUpResources 0\r
-#define INCLUDE_vTaskSuspend 0\r
-#define INCLUDE_vTaskDelayUntil 0\r
-#define INCLUDE_vTaskDelay 0\r
-#define INCLUDE_uxTaskGetStackHighWaterMark 0\r
-\r
-#ifdef __NVIC_PRIO_BITS\r
- #define configPRIO_BITS __NVIC_PRIO_BITS\r
-#else\r
- #define configPRIO_BITS 3\r
-#endif\r
-#define configUNUSED_PRIO_BITS ( ( unsigned char ) ( 8 - configPRIO_BITS ) )\r
-\r
-#define configKERNEL_INTERRUPT_PRIORITY ( ( unsigned char ) 7 << configUNUSED_PRIO_BITS ) /* Priority 7, or 255 as only the top three bits are implemented. This is the lowest priority. */\r
-/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!\r
-See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */\r
-#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( ( unsigned char ) 5 << configUNUSED_PRIO_BITS ) /* Priority 5, or 160 as only the top three bits are implemented. */\r
-\r
-/* The debug_printf() function uses RAM that is outside of the control of the\r
-application writer. Therefore the application_defined_privileged_functions.h\r
-header file is used to provide a version that executes with privileges. */\r
-#define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS 1\r
-\r
-#endif /* FREERTOS_CONFIG_H */\r
+++ /dev/null
-/*****************************************************************************\r
- * Copyright (c) 2006 Rowley Associates Limited. *\r
- * *\r
- * This file may be distributed under the terms of the License Agreement *\r
- * provided with this software. *\r
- * *\r
- * THIS FILE IS PROVIDED AS IS WITH NO WARRANTY OF ANY KIND, INCLUDING THE *\r
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *\r
- *****************************************************************************/\r
-\r
-/*****************************************************************************\r
- * Preprocessor Definitions\r
- * ------------------------\r
- *\r
- * STARTUP_FROM_RESET\r
- *\r
- * If defined, the program will startup from power-on/reset. If not defined\r
- * the program will just loop endlessly from power-on/reset.\r
- *\r
- * This definition is not defined by default on this target because the\r
- * debugger is unable to reset this target and maintain control of it over the\r
- * JTAG interface. The advantage of doing this is that it allows the debugger\r
- * to reset the CPU and run programs from a known reset CPU state on each run.\r
- * It also acts as a safety net if you accidently download a program in FLASH\r
- * that crashes and prevents the debugger from taking control over JTAG\r
- * rendering the target unusable over JTAG. The obvious disadvantage of doing\r
- * this is that your application will not startup without the debugger.\r
- *\r
- * We advise that on this target you keep STARTUP_FROM_RESET undefined whilst\r
- * you are developing and only define STARTUP_FROM_RESET when development is\r
- * complete.\r
- *\r
- *****************************************************************************/\r
-\r
-.extern xPortPendSVHandler\r
-.extern xPortSysTickHandler\r
-.extern vPortSVCHandler\r
-\r
-.global reset_handler\r
-\r
-.macro DEFAULT_ISR_HANDLER name=\r
- .thumb_func\r
- .weak \name\r
-\name:\r
-1: b 1b /* endless loop */\r
-.endm\r
-\r
- .section .vectors, "ax"\r
- .code 16\r
- .align 0\r
- .global _vectors\r
-\r
-_vectors:\r
- .word __stack_end__\r
-#ifdef STARTUP_FROM_RESET\r
- .word reset_handler\r
-#else\r
- .word reset_wait\r
-#endif /* STARTUP_FROM_RESET */\r
- .word Nmi_ISR\r
- .word Fault_ISR\r
- .word MPU_Fault_ISR\r
- .word 0 /* Populate if using Bus fault */\r
- .word 0 /* Populate if using Usage fault */\r
- .word 0 /* Reserved */\r
- .word 0 /* Reserved */\r
- .word 0 /* Reserved */\r
- .word 0 /* Reserved */\r
- .word vPortSVCHandler\r
- .word 0 /* Populate if using a debug monitor */\r
- .word 0 /* Reserved */\r
- .word xPortPendSVHandler\r
- .word xPortSysTickHandler\r
- .word GPIO_Port_A_ISR\r
- .word GPIO_Port_B_ISR\r
- .word GPIO_Port_C_ISR\r
- .word GPIO_Port_D_ISR\r
- .word GPIO_Port_E_ISR\r
- .word UART0_ISR\r
- .word UART1_ISR\r
- .word SSI_ISR\r
- .word I2C_ISR\r
- .word PWM_Fault_ISR\r
- .word PWM_Generator_0_ISR\r
- .word PWM_Generator_1_ISR\r
- .word PWM_Generator_2_ISR\r
- .word QEI_ISR\r
- .word ADC_Sequence_0_ISR\r
- .word ADC_Sequence_1_ISR\r
- .word ADC_Sequence_2_ISR\r
- .word ADC_Sequence_3_ISR\r
- .word Watchdog_Timer_ISR\r
- .word Timer0A_ISR\r
- .word Timer0B_ISR\r
- .word Timer1A_ISR\r
- .word Timer1B_ISR\r
- .word Timer2A_ISR\r
- .word Timer2B_ISR\r
- .word Analog_Comparator_0_ISR\r
- .word Analog_Comparator_1_ISR\r
- .word Analog_Comparator_2_ISR\r
- .word System_Control_ISR\r
- .word FLASH_Control_ISR\r
- .word GPIO_Port_F_ISR\r
- .word GPIO_Port_G_ISR\r
- .word GPIO_Port_H_ISR\r
- .word UART2_ISR\r
- .word SSI1_ISR\r
- .word Timer3A_ISR\r
- .word Timer3B_ISR\r
- .word I2C1_ISR\r
- .word QEI1_ISR\r
- .word CAN0_ISR\r
- .word CAN1_ISR\r
- .word CAN2_ISR\r
- .word EMAC_ISR\r
- .word HIBERNATE_ISR\r
- .word USB0_ISR\r
- .word PWM_Generator_3_ISR\r
- .word uDMA_Software_Transfer_ISR\r
- .word uDMA_Error_ISR\r
-_vectors_end:\r
-\r
- .section .init, "ax"\r
- .thumb_func\r
-\r
-reset_handler:\r
-#ifdef __RAM_BUILD\r
- /* If this is a RAM build, configure vector table offset register to point\r
- to the RAM vector table. */\r
- ldr r0, =0xE000ED08\r
- ldr r1, =_vectors\r
- str r1, [r0]\r
-#endif\r
- b _start\r
-\r
-DEFAULT_ISR_HANDLER Nmi_ISR\r
-/*DEFAULT_ISR_HANDLER Fault_ISR*/\r
-/*DEFAULT_ISR_HANDLER MPU_Fault_ISR*/\r
-DEFAULT_ISR_HANDLER SVCall_ISR\r
-DEFAULT_ISR_HANDLER SysTick_ISR\r
-DEFAULT_ISR_HANDLER PendSV_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_A_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_B_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_C_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_D_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_E_ISR\r
-DEFAULT_ISR_HANDLER UART0_ISR\r
-DEFAULT_ISR_HANDLER UART1_ISR\r
-DEFAULT_ISR_HANDLER SSI_ISR\r
-DEFAULT_ISR_HANDLER I2C_ISR\r
-DEFAULT_ISR_HANDLER PWM_Fault_ISR\r
-DEFAULT_ISR_HANDLER PWM_Generator_0_ISR\r
-DEFAULT_ISR_HANDLER PWM_Generator_1_ISR\r
-DEFAULT_ISR_HANDLER PWM_Generator_2_ISR\r
-DEFAULT_ISR_HANDLER QEI_ISR\r
-DEFAULT_ISR_HANDLER ADC_Sequence_0_ISR\r
-DEFAULT_ISR_HANDLER ADC_Sequence_1_ISR\r
-DEFAULT_ISR_HANDLER ADC_Sequence_2_ISR\r
-DEFAULT_ISR_HANDLER ADC_Sequence_3_ISR\r
-DEFAULT_ISR_HANDLER Watchdog_Timer_ISR\r
-DEFAULT_ISR_HANDLER Timer0A_ISR\r
-DEFAULT_ISR_HANDLER Timer0B_ISR\r
-DEFAULT_ISR_HANDLER Timer1A_ISR\r
-DEFAULT_ISR_HANDLER Timer1B_ISR\r
-DEFAULT_ISR_HANDLER Timer2A_ISR\r
-DEFAULT_ISR_HANDLER Timer2B_ISR\r
-DEFAULT_ISR_HANDLER Analog_Comparator_0_ISR\r
-DEFAULT_ISR_HANDLER Analog_Comparator_1_ISR\r
-DEFAULT_ISR_HANDLER Analog_Comparator_2_ISR\r
-DEFAULT_ISR_HANDLER System_Control_ISR\r
-DEFAULT_ISR_HANDLER FLASH_Control_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_F_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_G_ISR\r
-DEFAULT_ISR_HANDLER GPIO_Port_H_ISR\r
-DEFAULT_ISR_HANDLER UART2_ISR\r
-DEFAULT_ISR_HANDLER SSI1_ISR\r
-DEFAULT_ISR_HANDLER Timer3A_ISR\r
-DEFAULT_ISR_HANDLER Timer3B_ISR\r
-DEFAULT_ISR_HANDLER I2C1_ISR\r
-DEFAULT_ISR_HANDLER QEI1_ISR\r
-DEFAULT_ISR_HANDLER CAN0_ISR\r
-DEFAULT_ISR_HANDLER CAN1_ISR\r
-DEFAULT_ISR_HANDLER CAN2_ISR\r
-DEFAULT_ISR_HANDLER ETHERNET_ISR\r
-DEFAULT_ISR_HANDLER HIBERNATE_ISR\r
-DEFAULT_ISR_HANDLER USB0_ISR\r
-DEFAULT_ISR_HANDLER PWM_Generator_3_ISR\r
-DEFAULT_ISR_HANDLER uDMA_Software_Transfer_ISR\r
-DEFAULT_ISR_HANDLER uDMA_Error_ISR\r
-DEFAULT_ISR_HANDLER EMAC_ISR\r
-\r
-#ifndef STARTUP_FROM_RESET\r
-DEFAULT_ISR_HANDLER reset_wait\r
-#endif /* STARTUP_FROM_RESET */\r
-\r
+++ /dev/null
-/******************************************************************************\r
- Target Script for LM3S.\r
-\r
- Copyright (c) 2006 Rowley Associates Limited.\r
-\r
- This file may be distributed under the terms of the License Agreement\r
- provided with this software.\r
-\r
- THIS FILE IS PROVIDED AS IS WITH NO WARRANTY OF ANY KIND, INCLUDING THE\r
- WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\r
- ******************************************************************************/\r
-\r
-function Reset()\r
-{\r
- TargetInterface.resetAndStop(1000);\r
-}\r
-\r
-function RAMReset()\r
-{\r
- Reset();\r
-}\r
-\r
-function FLASHReset()\r
-{\r
- Reset();\r
-}\r
-\r
-\r
+++ /dev/null
-<!DOCTYPE CrossStudio_Project_File>
-<solution Name="RTOSDemo" target="8" version="2">
- <project Name="RTOSDemo">
- <configuration Name="Common" Target="LM3S8962" arm_architecture="v7M" arm_core_type="Cortex-M3" arm_linker_fiq_stack_size="0" arm_linker_heap_size="0" arm_linker_irq_stack_size="0" arm_linker_process_stack_size="0" arm_linker_stack_size="400" arm_simulator_memory_simulation_filename="$(PackagesDir)/targets/Luminary_LM3S/LM3SSimulatorMemory.dll" arm_simulator_memory_simulation_parameter="0x40000;0x10000" arm_target_debug_interface_type="ADIv5" arm_target_flash_loader_type="LIBMEM RPC Loader" arm_use_gcc_libraries="No" build_remove_unused_symbols="No" c_only_additional_options="-Wall;-Wextra" c_preprocessor_definitions="sprintf=usprintf;snprintf=usnprintf;printf=uipprintf" c_user_include_directories="..\\..\\Source\\include;..\\..\\Source\\portable\\GCC\\ARM_CM3_MPU;..\\Common\\include;..\\Common\\drivers\\LuminaryMicro;.;$(SamplesDir)/Luminary_Stellaris_Driver_Library" gcc_optimization_level="None" link_IOLibraryName="none" linker_additional_files="" linker_memory_map_file="$(PackagesDir)/targets/Luminary_LM3S/LM3S8962_MemoryMap.xml" linker_output_format="None" linker_printf_fmt_level="int" linker_printf_width_precision_supported="No" linker_scanf_fmt_level="int" project_directory="" project_type="Executable" property_groups_file_path="$(PackagesDir)/targets/Luminary_LM3S/propertyGroups.xml"/>
- <configuration Name="Flash" Placement="Flash" arm_target_flash_loader_file_path="$(PackagesDir)/targets/Luminary_LM3S/Release/Loader.elf" linker_section_placement_file="$(ProjectDir)/flash_placement.xml" target_reset_script="FLASHReset()"/>
- <configuration Name="RAM" Placement="RAM" linker_section_placement_file="$(PackagesDir)/targets/Luminary_LM3S/ram_placement.xml" target_reset_script="RAMReset()"/>
- <folder Name="Source Files">
- <configuration Name="Common" filter="c;cpp;cxx;cc;h;s;asm;inc"/>
- <folder Name="FreeRTOS MPU">
- <folder Name="include" file_name="">
- <file file_name="../../Source/include/task.h"/>
- <file file_name="../../Source/include/FreeRTOS.h"/>
- <file file_name="../../Source/include/list.h"/>
- <file file_name="../../Source/include/portable.h"/>
- <file file_name="../../Source/include/projdefs.h"/>
- <file file_name="../../Source/include/queue.h"/>
- <file file_name="../../Source/include/semphr.h"/>
- <file file_name="../../Source/include/StackMacros.h"/>
- <file file_name="../../Source/include/mpu_wrappers.h"/>
- <file file_name="../../Source/portable/GCC/ARM_CM3_MPU/portmacro.h"/>
- </folder>
- <file file_name="../../Source/tasks.c"/>
- <file file_name="../../Source/list.c"/>
- <file file_name="../../Source/queue.c"/>
- <file file_name="../../Source/portable/MemMang/heap_2.c"/>
- <file file_name="../../Source/portable/GCC/ARM_CM3_MPU/port.c"/>
- </folder>
- <file file_name="main.c"/>
- <folder Name="include">
- <file file_name="FreeRTOSConfig.h"/>
- </folder>
- <folder Name="Libraries">
- <file file_name="../Common/drivers/LuminaryMicro/Rowley/libdriver.a"/>
- </folder>
- <file file_name="../Common/drivers/LuminaryMicro/ustdlib.c"/>
- </folder>
- <folder Name="System Files">
- <file file_name="thumb_crt0.s"/>
- <file file_name="LM3S_Startup.s"/>
- <file file_name="LM3S_Target.js">
- <configuration Name="Common" build_exclude_from_build="Yes" file_type="Reset Script"/>
- <configuration Name="THUMB Flash Debug" build_exclude_from_build="No"/>
- </file>
- </folder>
- </project>
- <configuration Name="THUMB Flash Debug" inherited_configurations="THUMB;Flash;Debug"/>
- <configuration Name="THUMB" Platform="ARM" arm_instruction_set="THUMB" arm_library_instruction_set="THUMB" c_preprocessor_definitions="__THUMB" hidden="Yes"/>
- <configuration Name="Flash" c_preprocessor_definitions="__FLASH_BUILD" hidden="Yes"/>
- <configuration Name="Debug" build_debug_information="Yes" c_preprocessor_definitions="DEBUG" gcc_optimization_level="None" hidden="Yes" link_include_startup_code="No"/>
- <configuration Name="THUMB Flash Release" inherited_configurations="THUMB;Flash;Release"/>
- <configuration Name="Release" build_debug_information="No" c_additional_options="-g1" c_preprocessor_definitions="NDEBUG" gcc_optimization_level="Level 1" hidden="Yes" link_include_startup_code="No"/>
-</solution>
+++ /dev/null
-<!DOCTYPE CrossStudio_for_ARM_Session_File>
-<session>
- <Bookmarks/>
- <Breakpoints/>
- <ExecutionProfileWindow/>
- <FrameBufferWindow>
- <FrameBufferWindow addressText="" bufferWidth="-1" bufferHeight="-1" addressSpace="" />
- </FrameBufferWindow>
- <Memory1>
- <MemoryWindow autoEvaluate="0" addressText="0x200002d0" numColumns="8" sizeText="120" dataSize="1" radix="16" name="RTOSDemo" addressSpace="" />
- </Memory1>
- <Memory2>
- <MemoryWindow autoEvaluate="0" addressText="" numColumns="8" sizeText="" dataSize="1" radix="16" name="RTOSDemo" addressSpace="" />
- </Memory2>
- <Memory3>
- <MemoryWindow autoEvaluate="0" addressText="" numColumns="8" sizeText="" dataSize="1" radix="16" name="RTOSDemo" addressSpace="" />
- </Memory3>
- <Memory4>
- <MemoryWindow autoEvaluate="0" addressText="" numColumns="8" sizeText="" dataSize="1" radix="16" name="RTOSDemo" addressSpace="" />
- </Memory4>
- <Project>
- <ProjectSessionItem path="RTOSDemo" name="unnamed" />
- <ProjectSessionItem path="RTOSDemo;RTOSDemo" name="unnamed" />
- <ProjectSessionItem path="RTOSDemo;RTOSDemo;Source Files" name="unnamed" />
- </Project>
- <Register1>
- <RegisterWindow openNodes="CPU;CPU/xPSR;CPU/CFBP;CPU/CFBP/CONTROL[0];CPU/CFBP/CONTROL[1];Interrupt_Type" binaryNodes="" unsignedNodes="" decimalNodes="" octalNodes="" asciiNodes="" visibleNodes="" name="RTOSDemo" />
- </Register1>
- <Register2>
- <RegisterWindow openNodes="MPU;MPU/MPU_Control;MPU/MPU_Region_Number;MPU/MPU_Region_Base_Address;MPU/MPU_Attribute_and_Size" binaryNodes="MPU/MPU_Attribute_and_Size/SIZE" unsignedNodes="" decimalNodes="" octalNodes="" asciiNodes="" visibleNodes="" name="RTOSDemo" />
- </Register2>
- <Register3>
- <RegisterWindow openNodes="System_Control_Block;System_Control_Block/System_Handlers_8_11_Priority;System_Control_Block/System_Handler_Control_and_State" binaryNodes="" unsignedNodes="" decimalNodes="" octalNodes="" asciiNodes="" visibleNodes="" name="RTOSDemo" />
- </Register3>
- <Register4>
- <RegisterWindow openNodes="" binaryNodes="" unsignedNodes="" decimalNodes="" octalNodes="" asciiNodes="" visibleNodes="" name="RTOSDemo" />
- </Register4>
- <TargetWindow programAction="" uploadFileType="" programLoadAddress="" programSize="" uploadFileName="" uploadMemoryInterface="" programFileName="" uploadStartAddress="" programFileType="" uploadSize="" programMemoryInterface="" />
- <TraceWindow>
- <Trace enabled="Yes" />
- </TraceWindow>
- <Watch1>
- <Watches active="0" update="Never" />
- </Watch1>
- <Watch2>
- <Watches active="0" update="Never" />
- </Watch2>
- <Watch3>
- <Watches active="1" update="Never" >
- <Watchpoint linenumber="0" radix="-1" name="xTickCount" expression="xTickCount" filename="" />
- </Watches>
- </Watch3>
- <Watch4>
- <Watches active="0" update="Never" />
- </Watch4>
- <Files>
- <SessionOpenFile useTextEdit="1" useBinaryEdit="0" codecName="Latin1" x="0" debugPath="C:/E/Dev/FreeRTOS/WorkingCopy/FreeRTOS/Demo/CORTEX_MPU_LM3Sxxxx_Rowley/main.c" y="100" path="C:/E/Dev/FreeRTOS/WorkingCopy/FreeRTOS/Demo/CORTEX_MPU_LM3Sxxxx_Rowley/main.c" left="0" selected="1" name="unnamed" top="60" />
- </Files>
- <ARMCrossStudioWindow activeProject="RTOSDemo" autoConnectTarget="Luminary USB Debug" debugSearchFileMap="" fileDialogInitialDirectory="C:/E/Dev/FreeRTOS/WorkingCopy/FreeRTOS/Source/portable/GCC/ARM_CM3_MPU" fileDialogDefaultFilter="*.*" autoConnectCapabilities="388991" debugSearchPath="" buildConfiguration="THUMB Flash Debug" />
-</session>
--- /dev/null
+If you need the demo that used to be in this directory then download FreeRTOS V8.2.3\r
+from http://sourceforge.net/projects/freertos/files/FreeRTOS/\r
+\r
+++ /dev/null
-/*\r
- FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
- All rights reserved\r
-\r
- VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
- This file is part of the FreeRTOS distribution.\r
-\r
- FreeRTOS is free software; you can redistribute it and/or modify it under\r
- the terms of the GNU General Public License (version 2) as published by the\r
- Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
-\r
- ***************************************************************************\r
- >>! NOTE: The modification to the GPL is included to allow you to !<<\r
- >>! distribute a combined work that includes FreeRTOS without being !<<\r
- >>! obliged to provide the source code for proprietary components !<<\r
- >>! outside of the FreeRTOS kernel. !<<\r
- ***************************************************************************\r
-\r
- FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
- FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
- link: http://www.freertos.org/a00114.html\r
-\r
- ***************************************************************************\r
- * *\r
- * FreeRTOS provides completely free yet professionally developed, *\r
- * robust, strictly quality controlled, supported, and cross *\r
- * platform software that is more than just the market leader, it *\r
- * is the industry's de facto standard. *\r
- * *\r
- * Help yourself get started quickly while simultaneously helping *\r
- * to support the FreeRTOS project by purchasing a FreeRTOS *\r
- * tutorial book, reference manual, or both: *\r
- * http://www.FreeRTOS.org/Documentation *\r
- * *\r
- ***************************************************************************\r
-\r
- http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
- the FAQ page "My application does not run, what could be wrong?". Have you\r
- defined configASSERT()?\r
-\r
- http://www.FreeRTOS.org/support - In return for receiving this top quality\r
- embedded software for free we request you assist our global community by\r
- participating in the support forum.\r
-\r
- http://www.FreeRTOS.org/training - Investing in training allows your team to\r
- be as productive as possible as early as possible. Now you can receive\r
- FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
- Ltd, and the world's leading authority on the world's leading RTOS.\r
-\r
- http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
- including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
- compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
- http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
- Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
-\r
- http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
- Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
- licenses offer ticketed support, indemnification and commercial middleware.\r
-\r
- http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
- engineered and independently SIL3 certified version for use in safety and\r
- mission critical applications that require provable dependability.\r
-\r
- 1 tab == 4 spaces!\r
-*/\r
-\r
-#ifndef APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS_H\r
-#define APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS_H\r
-\r
-/* The Rowley library function debug_printf() uses data that is out of the\r
-control of the kernel, so run the function in a privileged mode. */\r
-int MPU_debug_printf( const char *pcMessage )\r
-{\r
-portBASE_TYPE xRunningPrivileged = prvRaisePrivilege();\r
-\r
- debug_printf( pcMessage );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return 0;\r
-}\r
-\r
-#endif /* APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS_H */\r
+++ /dev/null
-<!DOCTYPE Linker_Placement_File>
-<Root name="FLASH Section Placement">
- <MemorySegment name="FLASH">
- <ProgramSection load="Yes" inputsections="*(.vectors .vectors.*)" name=".vectors"/>
- <ProgramSection alignment="4" size="16K - 0x100" load="Yes" inputsections="*(privileged_functions)" name="privileged_functions"/>
- <ProgramSection alignment="4" load="Yes" inputsections="*(.init .init.*)" name=".init"/>
- <ProgramSection alignment="4" load="Yes" inputsections="*(.text .text.* .glue_7t .glue_7 .gnu.linkonce.t.* .gcc_except_table)" name=".text"/>
- <ProgramSection alignment="4" load="Yes" inputsections="KEEP (*(SORT(.dtors.*))) KEEP (*(.dtors))" name=".dtors"/>
- <ProgramSection alignment="4" load="Yes" inputsections="KEEP (*(SORT(.ctors.*))) KEEP (*(.ctors))" name=".ctors"/>
- <ProgramSection alignment="4" load="Yes" inputsections="*(.rodata .rodata.* .gnu.linkonce.r.*)" name=".rodata"/>
- <ProgramSection alignment="4" load="Yes" runin=".data_run" inputsections="*(.data .data.* .gnu.linkonce.d.*)" name=".data"/>
- <ProgramSection alignment="4" load="Yes" runin=".fast_run" inputsections="*(.fast .fast.*)" name=".fast"/>
- </MemorySegment>
- <MemorySegment name="SRAM">
- <ProgramSection alignment="4" size="256" alignment="256" load="No" inputsections="*(privileged_data)" name="privileged_data"/>
- <ProgramSection name=".vectors_ram" size="" alignment="0x100" load="No"/>
- <ProgramSection alignment="4" load="No" name=".data_run"/>
- <ProgramSection alignment="4" load="No" inputsections="*(.bss .bss.* .gnu.linkonce.b.*) *(COMMON)" name=".bss"/>
- <ProgramSection alignment="4" load="No" inputsections="*(.non_init .non_init.*)" name=".non_init"/>
- <ProgramSection alignment="4" size="__HEAPSIZE__" load="No" name=".heap"/>
- <ProgramSection alignment="4" size="__STACKSIZE__" load="No" name=".stack"/>
- <ProgramSection alignment="4" load="No" name=".fast_run"/>
- </MemorySegment>
-</Root>
+++ /dev/null
-/*\r
- FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
- All rights reserved\r
-\r
- VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
- This file is part of the FreeRTOS distribution.\r
-\r
- FreeRTOS is free software; you can redistribute it and/or modify it under\r
- the terms of the GNU General Public License (version 2) as published by the\r
- Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
-\r
- ***************************************************************************\r
- >>! NOTE: The modification to the GPL is included to allow you to !<<\r
- >>! distribute a combined work that includes FreeRTOS without being !<<\r
- >>! obliged to provide the source code for proprietary components !<<\r
- >>! outside of the FreeRTOS kernel. !<<\r
- ***************************************************************************\r
-\r
- FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
- FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
- link: http://www.freertos.org/a00114.html\r
-\r
- ***************************************************************************\r
- * *\r
- * FreeRTOS provides completely free yet professionally developed, *\r
- * robust, strictly quality controlled, supported, and cross *\r
- * platform software that is more than just the market leader, it *\r
- * is the industry's de facto standard. *\r
- * *\r
- * Help yourself get started quickly while simultaneously helping *\r
- * to support the FreeRTOS project by purchasing a FreeRTOS *\r
- * tutorial book, reference manual, or both: *\r
- * http://www.FreeRTOS.org/Documentation *\r
- * *\r
- ***************************************************************************\r
-\r
- http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
- the FAQ page "My application does not run, what could be wrong?". Have you\r
- defined configASSERT()?\r
-\r
- http://www.FreeRTOS.org/support - In return for receiving this top quality\r
- embedded software for free we request you assist our global community by\r
- participating in the support forum.\r
-\r
- http://www.FreeRTOS.org/training - Investing in training allows your team to\r
- be as productive as possible as early as possible. Now you can receive\r
- FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
- Ltd, and the world's leading authority on the world's leading RTOS.\r
-\r
- http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
- including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
- compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
- http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
- Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
-\r
- http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
- Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
- licenses offer ticketed support, indemnification and commercial middleware.\r
-\r
- http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
- engineered and independently SIL3 certified version for use in safety and\r
- mission critical applications that require provable dependability.\r
-\r
- 1 tab == 4 spaces!\r
-*/\r
-\r
-\r
-/*\r
- * This file demonstrates the use of FreeRTOS-MPU. It creates tasks in both\r
- * User mode and Privileged mode, and using both the original xTaskCreate() and\r
- * the new xTaskCreateRestricted() API functions. The purpose of each created\r
- * task is documented in the comments above the task function prototype (in\r
- * this file), with the task behaviour demonstrated and documented within the\r
- * task function itself. In addition a queue is used to demonstrate passing\r
- * data between protected/restricted tasks as well as passing data between an\r
- * interrupt and a protected/restricted task.\r
- */\r
-\r
-\r
-\r
-/* Standard includes. */\r
-#include <string.h>\r
-#include <__cross_studio_io.h>\r
-\r
-/* Scheduler includes. */\r
-#include "FreeRTOS.h"\r
-#include "task.h"\r
-#include "queue.h"\r
-#include "semphr.h"\r
-\r
-/* Hardware library includes. */\r
-#include "hw_types.h"\r
-#include "hw_sysctl.h"\r
-#include "sysctl.h"\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Misc constants. */\r
-#define mainDONT_BLOCK ( 0 )\r
-\r
-/* Definitions for the messages that can be sent to the check task. */\r
-#define mainREG_TEST_1_STILL_EXECUTING ( 0 )\r
-#define mainREG_TEST_2_STILL_EXECUTING ( 1 )\r
-#define mainPRINT_SYSTEM_STATUS ( 2 )\r
-\r
-/* GCC specifics. */\r
-#define mainALIGN_TO( x ) __attribute__((aligned(x)))\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Prototypes for functions that implement tasks. -----------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/*\r
- * Prototype for the reg test tasks. Amongst other things, these fill the CPU\r
- * registers with known values before checking that the registers still contain\r
- * the expected values. Each of the two tasks use different values so an error\r
- * in the context switch mechanism can be caught. Both reg test tasks execute\r
- * at the idle priority so will get preempted regularly. Each task repeatedly\r
- * sends a message on a queue so long as it remains functioning correctly. If\r
- * an error is detected within the task the task is simply deleted.\r
- */\r
-static void prvRegTest1Task( void *pvParameters );\r
-static void prvRegTest2Task( void *pvParameters );\r
-\r
-/*\r
- * Prototype for the check task. The check task demonstrates various features\r
- * of the MPU before entering a loop where it waits for messages to arrive on a\r
- * queue.\r
- *\r
- * Two types of messages can be processes:\r
- *\r
- * 1) "I'm Alive" messages sent from the reg test tasks, indicating that the\r
- * task is still operational.\r
- *\r
- * 2) "Print Status commands" sent periodically by the tick hook function (and\r
- * therefore from within an interrupt) which command the check task to write\r
- * either pass or fail to the terminal, depending on the status of the reg\r
- * test tasks.\r
- */\r
-static void prvCheckTask( void *pvParameters );\r
-\r
-/*\r
- * Prototype for a task created in User mode using the original vTaskCreate()\r
- * API function. The task demonstrates the characteristics of such a task,\r
- * before simply deleting itself.\r
- */\r
-static void prvOldStyleUserModeTask( void *pvParameters );\r
-\r
-/*\r
- * Prototype for a task created in Privileged mode using the original\r
- * vTaskCreate() API function. The task demonstrates the characteristics of\r
- * such a task, before simply deleting itself.\r
- */\r
-static void prvOldStylePrivilegedModeTask( void *pvParameters );\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Prototypes for other misc functions. --------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/*\r
- * Just configures any clocks and IO necessary.\r
- */\r
-static void prvSetupHardware( void );\r
-\r
-/*\r
- * Simply deletes the calling task. The function is provided only because it\r
- * is simpler to call from asm code than the normal vTaskDelete() API function.\r
- * It has the noinline attribute because it is called from asm code.\r
- */\r
-static void prvDeleteMe( void ) __attribute__((noinline));\r
-\r
-/*\r
- * Used by both reg test tasks to send messages to the check task. The message\r
- * just lets the check task know that the task is still functioning correctly.\r
- * If a reg test task detects an error it will delete itself, and in so doing\r
- * prevent itself from sending any more 'I'm Alive' messages to the check task.\r
- */\r
-static void prvSendImAlive( QueueHandle_t xHandle, unsigned long ulTaskNumber );\r
-\r
-/*\r
- * The check task is created with access to three memory regions (plus its\r
- * stack). Each memory region is configured with different parameters and\r
- * prvTestMemoryRegions() demonstrates what can and cannot be accessed for each\r
- * region. prvTestMemoryRegions() also demonstrates a task that was created\r
- * as a privileged task settings its own privilege level down to that of a user\r
- * task.\r
- */\r
-static void prvTestMemoryRegions( void );\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/* The handle of the queue used to communicate between tasks and between tasks\r
-and interrupts. Note that this is a file scope variable that falls outside of\r
-any MPU region. As such other techniques have to be used to allow the tasks\r
-to gain access to the queue. See the comments in the tasks themselves for\r
-further information. */\r
-static QueueHandle_t xFileScopeCheckQueue = NULL;\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Data used by the 'check' task. ---------------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Define the constants used to allocate the check task stack. Note that the\r
-stack size is defined in words, not bytes. */\r
-#define mainCHECK_TASK_STACK_SIZE_WORDS 128\r
-#define mainCHECK_TASK_STACK_ALIGNMENT ( mainCHECK_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
-\r
-/* Declare the stack that will be used by the check task. The kernel will\r
- automatically create an MPU region for the stack. The stack alignment must\r
- match its size, so if 128 words are reserved for the stack then it must be\r
- aligned to ( 128 * 4 ) bytes. */\r
-static portSTACK_TYPE xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainCHECK_TASK_STACK_ALIGNMENT );\r
-\r
-/* Declare three arrays - an MPU region will be created for each array\r
-using the TaskParameters_t structure below. THIS IS JUST TO DEMONSTRATE THE\r
-MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
-of monitoring the reg test tasks and printing out status information.\r
-\r
-Note that the arrays allocate slightly more RAM than is actually assigned to\r
-the MPU region. This is to permit writes off the end of the array to be\r
-detected even when the arrays are placed in adjacent memory locations (with no\r
-gaps between them). The align size must be a power of two. */\r
-#define mainREAD_WRITE_ARRAY_SIZE 130\r
-#define mainREAD_WRITE_ALIGN_SIZE 128\r
-char cReadWriteArray[ mainREAD_WRITE_ARRAY_SIZE ] mainALIGN_TO( mainREAD_WRITE_ALIGN_SIZE );\r
-\r
-#define mainREAD_ONLY_ARRAY_SIZE 260\r
-#define mainREAD_ONLY_ALIGN_SIZE 256\r
-char cReadOnlyArray[ mainREAD_ONLY_ARRAY_SIZE ] mainALIGN_TO( mainREAD_ONLY_ALIGN_SIZE );\r
-\r
-#define mainPRIVILEGED_ONLY_ACCESS_ARRAY_SIZE 130\r
-#define mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE 128\r
-char cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] mainALIGN_TO( mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE );\r
-\r
-/* Fill in a TaskParameters_t structure to define the check task - this is the\r
-structure passed to the xTaskCreateRestricted() function. */\r
-static const TaskParameters_t xCheckTaskParameters =\r
-{\r
- prvCheckTask, /* pvTaskCode - the function that implements the task. */\r
- "Check", /* pcName */\r
- mainCHECK_TASK_STACK_SIZE_WORDS, /* usStackDepth - defined in words, not bytes. */\r
- ( void * ) 0x12121212, /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
- ( tskIDLE_PRIORITY + 1 ) | portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */\r
- xCheckTaskStack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
-\r
- /* xRegions - In this case the xRegions array is used to create MPU regions\r
- for all three of the arrays declared directly above. Each MPU region is\r
- created with different parameters. Again, THIS IS JUST TO DEMONSTRATE THE\r
- MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
- of monitoring the reg test tasks and printing out status information.*/\r
- {\r
- /* Base address Length Parameters */\r
- { cReadWriteArray, mainREAD_WRITE_ALIGN_SIZE, portMPU_REGION_READ_WRITE },\r
- { cReadOnlyArray, mainREAD_ONLY_ALIGN_SIZE, portMPU_REGION_READ_ONLY },\r
- { cPrivilegedOnlyAccessArray, mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE, portMPU_REGION_PRIVILEGED_READ_WRITE }\r
- }\r
-};\r
-\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Data used by the 'reg test' tasks. -----------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Define the constants used to allocate the reg test task stacks. Note that\r
-that stack size is defined in words, not bytes. */\r
-#define mainREG_TEST_STACK_SIZE_WORDS 128\r
-#define mainREG_TEST_STACK_ALIGNMENT ( mainREG_TEST_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
-\r
-/* Declare the stacks that will be used by the reg test tasks. The kernel will\r
-automatically create an MPU region for the stack. The stack alignment must\r
-match its size, so if 128 words are reserved for the stack then it must be\r
-aligned to ( 128 * 4 ) bytes. */\r
-static portSTACK_TYPE xRegTest1Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
-static portSTACK_TYPE xRegTest2Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
-\r
-/* Fill in a TaskParameters_t structure per reg test task to define the tasks. */\r
-static const TaskParameters_t xRegTest1Parameters =\r
-{\r
- prvRegTest1Task, /* pvTaskCode - the function that implements the task. */\r
- "RegTest1", /* pcName */\r
- mainREG_TEST_STACK_SIZE_WORDS, /* usStackDepth */\r
- ( void * ) 0x12345678, /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
- tskIDLE_PRIORITY | portPRIVILEGE_BIT, /* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */\r
- xRegTest1Stack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
- { /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
- /* Base address Length Parameters */\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 }\r
- }\r
-};\r
-/*-----------------------------------------------------------*/\r
-\r
-static TaskParameters_t xRegTest2Parameters =\r
-{\r
- prvRegTest2Task, /* pvTaskCode - the function that implements the task. */\r
- "RegTest2", /* pcName */\r
- mainREG_TEST_STACK_SIZE_WORDS, /* usStackDepth */\r
- ( void * ) NULL, /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
- tskIDLE_PRIORITY, /* uxPriority */\r
- xRegTest2Stack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
- { /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
- /* Base address Length Parameters */\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 }\r
- }\r
-};\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-int main( void )\r
-{\r
- prvSetupHardware();\r
-\r
- /* Create the queue used to pass "I'm alive" messages to the check task. */\r
- xFileScopeCheckQueue = xQueueCreate( 1, sizeof( unsigned long ) );\r
-\r
- /* One check task uses the task parameter to receive the queue handle.\r
- This allows the file scope variable to be accessed from within the task.\r
- The pvParameters member of xRegTest2Parameters can only be set after the\r
- queue has been created so is set here. */\r
- xRegTest2Parameters.pvParameters = xFileScopeCheckQueue;\r
-\r
- /* Create the three test tasks. Handles to the created tasks are not\r
- required, hence the second parameter is NULL. */\r
- xTaskCreateRestricted( &xRegTest1Parameters, NULL );\r
- xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
- xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
-\r
- /* Create the tasks that are created using the original xTaskCreate() API\r
- function. */\r
- xTaskCreate( prvOldStyleUserModeTask, /* The function that implements the task. */\r
- "Task1", /* Text name for the task. */\r
- 100, /* Stack depth in words. */\r
- NULL, /* Task parameters. */\r
- 3, /* Priority and mode (user in this case). */\r
- NULL /* Handle. */\r
- );\r
-\r
- xTaskCreate( prvOldStylePrivilegedModeTask, /* The function that implements the task. */\r
- "Task2", /* Text name for the task. */\r
- 100, /* Stack depth in words. */\r
- NULL, /* Task parameters. */\r
- ( 3 | portPRIVILEGE_BIT ), /* Priority and mode. */\r
- NULL /* Handle. */\r
- );\r
-\r
- /* Start the scheduler. */\r
- vTaskStartScheduler();\r
-\r
- /* Will only get here if there was insufficient memory to create the idle\r
- task. */\r
- for( ;; );\r
- return 0;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvCheckTask( void *pvParameters )\r
-{\r
-/* This task is created in privileged mode so can access the file scope\r
-queue variable. Take a stack copy of this before the task is set into user\r
-mode. Once that task is in user mode the file scope queue variable will no\r
-longer be accessible but the stack copy will. */\r
-QueueHandle_t xQueue = xFileScopeCheckQueue;\r
-long lMessage;\r
-unsigned long ulStillAliveCounts[ 2 ] = { 0 };\r
-const char *pcStatusMessage = "PASS\r\n";\r
-\r
-/* The debug_printf() function uses RAM that is outside of the control of the\r
-application writer. Therefore the application_defined_privileged_functions.h\r
-header file is used to provide a version that executes with privileges. */\r
-extern int MPU_debug_printf( const char *pcMessage );\r
-\r
- /* Just to remove compiler warning. */\r
- ( void ) pvParameters;\r
-\r
- /* Demonstrate how the various memory regions can and can't be accessed.\r
- The task privilege level is set down to user mode within this function. */\r
- prvTestMemoryRegions();\r
-\r
- /* Tests are done so lower the privilege status. */\r
- portSWITCH_TO_USER_MODE();\r
-\r
- /* This loop performs the main function of the task, which is blocking\r
- on a message queue then processing each message as it arrives. */\r
- for( ;; )\r
- {\r
- /* Wait for the next message to arrive. */\r
- xQueueReceive( xQueue, &lMessage, portMAX_DELAY );\r
-\r
- switch( lMessage )\r
- {\r
- case mainREG_TEST_1_STILL_EXECUTING :\r
- /* Message from task 1, so task 1 must still be executing. */\r
- ( ulStillAliveCounts[ 0 ] )++;\r
- break;\r
-\r
- case mainREG_TEST_2_STILL_EXECUTING :\r
- /* Message from task 2, so task 2 must still be executing. */\r
- ( ulStillAliveCounts[ 1 ] )++;\r
- break;\r
-\r
- case mainPRINT_SYSTEM_STATUS :\r
- /* Message from tick hook, time to print out the system\r
- status. If messages has stopped arriving from either reg\r
- test task then the status must be set to fail. */\r
- if( ( ulStillAliveCounts[ 0 ] == 0 ) || ( ulStillAliveCounts[ 1 ] == 0 ) )\r
- {\r
- /* One or both of the test tasks are no longer sending\r
- 'still alive' messages. */\r
- pcStatusMessage = "FAIL\r\n";\r
- }\r
-\r
- /* Print a pass/fail message to the terminal. This will be\r
- visible in the CrossWorks IDE. */\r
- MPU_debug_printf( pcStatusMessage );\r
-\r
- /* Reset the count of 'still alive' messages. */\r
- memset( ulStillAliveCounts, 0x00, sizeof( ulStillAliveCounts ) );\r
- break;\r
-\r
- default :\r
- /* Something unexpected happened. Delete this task so the\r
- error is apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- break;\r
- }\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvTestMemoryRegions( void )\r
-{\r
-long l;\r
-char cTemp;\r
-\r
- /* The check task (from which this function is called) is created in the\r
- Privileged mode. The privileged array can be both read from and written\r
- to while this task is privileged. */\r
- cPrivilegedOnlyAccessArray[ 0 ] = 'a';\r
- if( cPrivilegedOnlyAccessArray[ 0 ] != 'a' )\r
- {\r
- /* Something unexpected happened. Delete this task so the error is\r
- apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- }\r
-\r
- /* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
- protection fault because the task is still executing in a privileged mode.\r
- Uncomment the following to test. */\r
- /*cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a';*/\r
-\r
- /* Now set the task into user mode. */\r
- portSWITCH_TO_USER_MODE();\r
-\r
- /* Accessing the privileged only array will now cause a fault. Uncomment\r
- the following line to test. */\r
- /*cPrivilegedOnlyAccessArray[ 0 ] = 'a';*/\r
-\r
- /* The read/write array can still be successfully read and written. */\r
- for( l = 0; l < mainREAD_WRITE_ALIGN_SIZE; l++ )\r
- {\r
- cReadWriteArray[ l ] = 'a';\r
- if( cReadWriteArray[ l ] != 'a' )\r
- {\r
- /* Something unexpected happened. Delete this task so the error is\r
- apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- }\r
- }\r
-\r
- /* But attempting to read or write off the end of the RAM allocated to this\r
- task will cause a fault. Uncomment either of the following two lines to\r
- test. */\r
- /* cReadWriteArray[ 0 ] = cReadWriteArray[ -1 ]; */\r
- /* cReadWriteArray[ mainREAD_WRITE_ALIGN_SIZE ] = 0x00; */\r
-\r
- /* The read only array can be successfully read... */\r
- for( l = 0; l < mainREAD_ONLY_ALIGN_SIZE; l++ )\r
- {\r
- cTemp = cReadOnlyArray[ l ];\r
- }\r
-\r
- /* ...but cannot be written. Uncomment the following line to test. */\r
- /* cReadOnlyArray[ 0 ] = 'a'; */\r
-\r
- /* Writing to the first and last locations in the stack array should not\r
- cause a protection fault. Note that doing this will cause the kernel to\r
- detect a stack overflow if configCHECK_FOR_STACK_OVERFLOW is greater than\r
- 1. */\r
- xCheckTaskStack[ 0 ] = 0;\r
- xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS - 1 ] = 0;\r
-\r
- /* Writing off either end of the stack array should cause a protection\r
- fault, uncomment either of the following two lines to test. */\r
- /* xCheckTaskStack[ -1 ] = 0; */\r
- /* xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] = 0; */\r
-\r
- ( void ) cTemp;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvRegTest1Task( void *pvParameters )\r
-{\r
-/* This task is created in privileged mode so can access the file scope\r
-queue variable. Take a stack copy of this before the task is set into user\r
-mode. Once this task is in user mode the file scope queue variable will no\r
-longer be accessible but the stack copy will. */\r
-QueueHandle_t xQueue = xFileScopeCheckQueue;\r
-\r
- /* Now the queue handle has been obtained the task can switch to user\r
- mode. This is just one method of passing a handle into a protected\r
- task, the other reg test task uses the task parameter instead. */\r
- portSWITCH_TO_USER_MODE();\r
-\r
- /* First check that the parameter value is as expected. */\r
- if( pvParameters != ( void * ) 0x12345678 )\r
- {\r
- /* Error detected. Delete the task so it stops communicating with\r
- the check task. */\r
- prvDeleteMe();\r
- }\r
-\r
-\r
- for( ;; )\r
- {\r
- /* This task tests the kernel context switch mechanism by reading and\r
- writing directly to registers - which requires the test to be written\r
- in assembly code. */\r
- __asm volatile\r
- (\r
- " MOV R4, #104 \n" /* Set registers to a known value. R0 to R1 are done in the loop below. */\r
- " MOV R5, #105 \n"\r
- " MOV R6, #106 \n"\r
- " MOV R8, #108 \n"\r
- " MOV R9, #109 \n"\r
- " MOV R10, #110 \n"\r
- " MOV R11, #111 \n"\r
- "reg1loop: \n"\r
- " MOV R0, #100 \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
- " MOV R1, #101 \n"\r
- " MOV R2, #102 \n"\r
- " MOV R3, #103 \n"\r
- " MOV R12, #112 \n"\r
- " SVC #1 \n" /* Yield just to increase test coverage. */\r
- " CMP R0, #100 \n" /* Check all the registers still contain their expected values. */\r
- " BNE prvDeleteMe \n" /* Value was not as expected, delete the task so it stops communicating with the check task. */\r
- " CMP R1, #101 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R2, #102 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R3, #103 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R4, #104 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R5, #105 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R6, #106 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R8, #108 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R9, #109 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R10, #110 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R11, #111 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R12, #112 \n"\r
- " BNE prvDeleteMe \n"\r
- :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
- );\r
-\r
- /* Send mainREG_TEST_1_STILL_EXECUTING to the check task to indicate that this\r
- task is still functioning. */\r
- prvSendImAlive( xQueue, mainREG_TEST_1_STILL_EXECUTING );\r
-\r
- /* Go back to check all the register values again. */\r
- __asm volatile( " B reg1loop " );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvRegTest2Task( void *pvParameters )\r
-{\r
-/* The queue handle is passed in as the task parameter. This is one method of\r
-passing data into a protected task, the other reg test task uses a different\r
-method. */\r
-QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;\r
-\r
- for( ;; )\r
- {\r
- /* This task tests the kernel context switch mechanism by reading and\r
- writing directly to registers - which requires the test to be written\r
- in assembly code. */\r
- __asm volatile\r
- (\r
- " MOV R4, #4 \n" /* Set registers to a known value. R0 to R1 are done in the loop below. */\r
- " MOV R5, #5 \n"\r
- " MOV R6, #6 \n"\r
- " MOV R8, #8 \n" /* Frame pointer is omitted as it must not be changed. */\r
- " MOV R9, #9 \n"\r
- " MOV R10, 10 \n"\r
- " MOV R11, #11 \n"\r
- "reg2loop: \n"\r
- " MOV R0, #13 \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
- " MOV R1, #1 \n"\r
- " MOV R2, #2 \n"\r
- " MOV R3, #3 \n"\r
- " MOV R12, #12 \n"\r
- " CMP R0, #13 \n" /* Check all the registers still contain their expected values. */\r
- " BNE prvDeleteMe \n" /* Value was not as expected, delete the task so it stops communicating with the check task */\r
- " CMP R1, #1 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R2, #2 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R3, #3 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R4, #4 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R5, #5 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R6, #6 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R8, #8 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R9, #9 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R10, #10 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R11, #11 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R12, #12 \n"\r
- " BNE prvDeleteMe \n"\r
- :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
- );\r
-\r
- /* Send mainREG_TEST_2_STILL_EXECUTING to the check task to indicate that this\r
- task is still functioning. */\r
- prvSendImAlive( xQueue, mainREG_TEST_2_STILL_EXECUTING );\r
-\r
- /* Go back to check all the register values again. */\r
- __asm volatile( " B reg2loop " );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationIdleHook( void )\r
-{\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-\r
- /* The idle task, and therefore this function, run in Supervisor mode and\r
- can therefore access all memory. Try reading from corners of flash and\r
- RAM to ensure a memory fault does not occur.\r
-\r
- Start with the edges of the privileged data area. */\r
- pul = __privileged_data_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Next the standard SRAM area. */\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* And the standard Flash area - the start of which is marked for\r
- privileged access only. */\r
- pul = __FLASH_segment_start__;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Reading off the end of Flash or SRAM space should cause a fault.\r
- Uncomment one of the following two pairs of lines to test. */\r
-\r
- /* pul = __FLASH_segment_end__ + 4;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __SRAM_segment_end__ + 1;\r
- ulReadData = *pul; */\r
-\r
- ( void ) ulReadData;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvOldStyleUserModeTask( void *pvParameters )\r
-{\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_functions_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-\r
-/* The following lines are commented out to prevent the unused variable\r
-compiler warnings when the tests that use the variable are also commented out.\r
-extern unsigned long __privileged_functions_start__[];\r
-const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; */\r
-\r
- ( void ) pvParameters;\r
-\r
- /* This task is created in User mode using the original xTaskCreate() API\r
- function. It should have access to all Flash and RAM except that marked\r
- as Privileged access only. Reading from the start and end of the non-\r
- privileged RAM should not cause a problem (the privileged RAM is the first\r
- block at the bottom of the RAM memory). */\r
- pul = __privileged_data_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Likewise reading from the start and end of the non-privileged Flash\r
- should not be a problem (the privileged Flash is the first block at the\r
- bottom of the Flash memory). */\r
- pul = __privileged_functions_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Standard peripherals are accessible. */\r
- ulReadData = *pulStandardPeripheralRegister;\r
-\r
- /* System peripherals are not accessible. Uncomment the following line\r
- to test. Also uncomment the declaration of pulSystemPeripheralRegister\r
- at the top of this function. */\r
- /* ulReadData = *pulSystemPeripheralRegister; */\r
-\r
- /* Reading from anywhere inside the privileged Flash or RAM should cause a\r
- fault. This can be tested by uncommenting any of the following pairs of\r
- lines. Also uncomment the declaration of __privileged_functions_start__\r
- at the top of this function. */\r
-\r
- /* pul = __privileged_functions_start__;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_functions_end__ - 1;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_data_start__;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul; */\r
-\r
- /* Must not just run off the end of a task function, so delete this task.\r
- Note that because this task was created using xTaskCreate() the stack was\r
- allocated dynamically and I have not included any code to free it again. */\r
- vTaskDelete( NULL );\r
-\r
- ( void ) ulReadData;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvOldStylePrivilegedModeTask( void *pvParameters )\r
-{\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_functions_start__[];\r
-extern unsigned long __privileged_functions_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; /* Systick */\r
-const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
-\r
- ( void ) pvParameters;\r
-\r
- /* This task is created in Privileged mode using the original xTaskCreate()\r
- API function. It should have access to all Flash and RAM including that\r
- marked as Privileged access only. So reading from the start and end of the\r
- non-privileged RAM should not cause a problem (the privileged RAM is the\r
- first block at the bottom of the RAM memory). */\r
- pul = __privileged_data_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Likewise reading from the start and end of the non-privileged Flash\r
- should not be a problem (the privileged Flash is the first block at the\r
- bottom of the Flash memory). */\r
- pul = __privileged_functions_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Reading from anywhere inside the privileged Flash or RAM should also\r
- not be a problem. */\r
- pul = __privileged_functions_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_functions_end__ - 1;\r
- ulReadData = *pul;\r
- pul = __privileged_data_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Finally, accessing both System and normal peripherals should both be\r
- possible. */\r
- ulReadData = *pulSystemPeripheralRegister;\r
- ulReadData = *pulStandardPeripheralRegister;\r
-\r
- /* Must not just run off the end of a task function, so delete this task.\r
- Note that because this task was created using xTaskCreate() the stack was\r
- allocated dynamically and I have not included any code to free it again. */\r
- vTaskDelete( NULL );\r
-\r
- ( void ) ulReadData;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvDeleteMe( void )\r
-{\r
- vTaskDelete( NULL );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSendImAlive( QueueHandle_t xHandle, unsigned long ulTaskNumber )\r
-{\r
- if( xHandle != NULL )\r
- {\r
- xQueueSend( xHandle, &ulTaskNumber, mainDONT_BLOCK );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSetupHardware( void )\r
-{\r
- /* If running on Rev A2 silicon, turn the LDO voltage up to 2.75V. This is\r
- a workaround to allow the PLL to operate reliably. */\r
- if( DEVICE_IS_REVA2 )\r
- {\r
- SysCtlLDOSet( SYSCTL_LDO_2_75V );\r
- }\r
-\r
- /* Set the clocking to run from the PLL at 50 MHz */\r
- SysCtlClockSet( SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_8MHZ );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationTickHook( void )\r
-{\r
-static unsigned long ulCallCount;\r
-const unsigned long ulCallsBetweenSends = 5000 / portTICK_PERIOD_MS;\r
-const unsigned long ulMessage = mainPRINT_SYSTEM_STATUS;\r
-portBASE_TYPE xDummy;\r
-\r
- /* If configUSE_TICK_HOOK is set to 1 then this function will get called\r
- from each RTOS tick. It is called from the tick interrupt and therefore\r
- will be executing in the privileged state. */\r
-\r
- ulCallCount++;\r
-\r
- /* Is it time to print out the pass/fail message again? */\r
- if( ulCallCount >= ulCallsBetweenSends )\r
- {\r
- ulCallCount = 0;\r
-\r
- /* Send a message to the check task to command it to check that all\r
- the tasks are still running then print out the status.\r
-\r
- This is running in an ISR so has to use the "FromISR" version of\r
- xQueueSend(). Because it is in an ISR it is running with privileges\r
- so can access xFileScopeCheckQueue directly. */\r
- xQueueSendFromISR( xFileScopeCheckQueue, &ulMessage, &xDummy );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
-{\r
- /* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this\r
- function will automatically get called if a task overflows its stack. */\r
- ( void ) pxTask;\r
- ( void ) pcTaskName;\r
- for( ;; );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationMallocFailedHook( void )\r
-{\r
- /* If configUSE_MALLOC_FAILED_HOOK is set to 1 then this function will\r
- be called automatically if a call to pvPortMalloc() fails. pvPortMalloc()\r
- is called automatically when a task, queue or semaphore is created. */\r
- for( ;; );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Just to keep the linker happy. */\r
-void __error__( char *pcFilename, unsigned long ulLine )\r
-{\r
- ( void ) pcFilename;\r
- ( void ) ulLine;\r
- for( ;; );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Just to keep the linker happy. */\r
-int uipprintf( const char *fmt, ... )\r
-{\r
- ( void ) fmt;\r
- return( 0 );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void hard_fault_handler(unsigned int * hardfault_args)\r
-{\r
-volatile unsigned int stacked_r0;\r
-volatile unsigned int stacked_r1;\r
-volatile unsigned int stacked_r2;\r
-volatile unsigned int stacked_r3;\r
-volatile unsigned int stacked_r12;\r
-volatile unsigned int stacked_lr;\r
-volatile unsigned int stacked_pc;\r
-volatile unsigned int stacked_psr;\r
-\r
- stacked_r0 = ((unsigned long) hardfault_args[0]);\r
- stacked_r1 = ((unsigned long) hardfault_args[1]);\r
- stacked_r2 = ((unsigned long) hardfault_args[2]);\r
- stacked_r3 = ((unsigned long) hardfault_args[3]);\r
-\r
- stacked_r12 = ((unsigned long) hardfault_args[4]);\r
- stacked_lr = ((unsigned long) hardfault_args[5]);\r
- stacked_pc = ((unsigned long) hardfault_args[6]);\r
- stacked_psr = ((unsigned long) hardfault_args[7]);\r
-\r
- /* Inspect stacked_pc to locate the offending instruction. */\r
- for( ;; );\r
-\r
- ( void ) stacked_psr;\r
- ( void ) stacked_pc;\r
- ( void ) stacked_lr;\r
- ( void ) stacked_r12;\r
- ( void ) stacked_r0;\r
- ( void ) stacked_r1;\r
- ( void ) stacked_r2;\r
- ( void ) stacked_r3;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void Fault_ISR( void ) __attribute__((naked));\r
-void Fault_ISR( void )\r
-{\r
- __asm volatile\r
- (\r
- " tst lr, #4 \n"\r
- " ite eq \n"\r
- " mrseq r0, msp \n"\r
- " mrsne r0, psp \n"\r
- " ldr r1, [r0, #24] \n"\r
- " ldr r2, handler_address_const \n"\r
- " bx r2 \n"\r
- " handler_address_const: .word hard_fault_handler \n"\r
- );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_Fault_ISR( void ) __attribute__((naked));\r
-void MPU_Fault_ISR( void )\r
-{\r
- __asm volatile\r
- (\r
- " tst lr, #4 \n"\r
- " ite eq \n"\r
- " mrseq r0, msp \n"\r
- " mrsne r0, psp \n"\r
- " ldr r1, [r0, #24] \n"\r
- " ldr r2, handler_address_const \n"\r
- " bx r2 \n"\r
- " handler2_address_const: .word hard_fault_handler \n"\r
- );\r
-}\r
-/*-----------------------------------------------------------*/
\ No newline at end of file
+++ /dev/null
-/*****************************************************************************\r
- * Copyright (c) 2009 Rowley Associates Limited. *\r
- * *\r
- * This file may be distributed under the terms of the License Agreement *\r
- * provided with this software. *\r
- * *\r
- * THIS FILE IS PROVIDED AS IS WITH NO WARRANTY OF ANY KIND, INCLUDING THE *\r
- * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. *\r
- *****************************************************************************/\r
-\r
-/*****************************************************************************\r
- * Preprocessor Definitions\r
- * ------------------------\r
- * APP_ENTRY_POINT\r
- *\r
- * Defines the application entry point function, if undefined this setting\r
- * defaults to "main".\r
- *\r
- * USE_PROCESS_STACK\r
- *\r
- * If defined, thread mode will be configured to use the process stack if\r
- * the size of the process stack is greater than zero bytes in length.\r
- *\r
- * INITIALIZE_STACK\r
- *\r
- * If defined, the contents of the stack will be initialized to a the\r
- * value 0xCC.\r
- *\r
- * FULL_LIBRARY\r
- *\r
- * If defined then\r
- * - argc, argv are setup by the debug_getargs.\r
- * - the exit symbol is defined and executes on return from main.\r
- * - the exit symbol calls destructors, atexit functions and then debug_exit.\r
- *\r
- * If not defined then\r
- * - argc and argv are zero.\r
- * - no exit symbol, code loops on return from main.\r
- *****************************************************************************/\r
-\r
-#ifndef APP_ENTRY_POINT\r
-#define APP_ENTRY_POINT main\r
-#endif\r
-\r
-#ifndef ARGSSPACE\r
-#define ARGSSPACE 128\r
-#endif\r
-\r
- .global _start\r
- .syntax unified\r
- .extern APP_ENTRY_POINT\r
-#ifdef FULL_LIBRARY\r
- .global exit\r
-#endif\r
-\r
- .section .init, "ax"\r
- .code 16\r
- .align 2\r
- .thumb_func\r
-\r
-_start:\r
-#ifdef __RAM_BUILD\r
- ldr r1, =__stack_end__\r
- mov sp, r1\r
-#endif\r
-#ifdef INITIALIZE_STACK\r
- mov r2, #0xCC\r
- ldr r0, =__stack_start__\r
-#ifndef __RAM_BUILD\r
- mov r1, sp\r
-#endif\r
- bl memory_set\r
-#endif\r
-\r
-#ifdef USE_PROCESS_STACK\r
- /* Set up process stack if size > 0 */\r
- ldr r1, =__stack_process_end__\r
- ldr r0, =__stack_process_start__\r
- subs r2, r1, r0\r
- beq 1f\r
- msr psp, r1\r
- mov r2, #2\r
- msr control, r2\r
-#ifdef INITIALIZE_STACK\r
- mov r2, #0xCC\r
- bl memory_set\r
-#endif\r
-1:\r
-#endif\r
- /* Copy initialised memory sections into RAM (if necessary). */\r
- ldr r0, =__data_load_start__\r
- ldr r1, =__data_start__\r
- ldr r2, =__data_end__\r
- bl memory_copy\r
- ldr r0, =__text_load_start__\r
- ldr r1, =__text_start__\r
- ldr r2, =__text_end__\r
- bl memory_copy\r
- ldr r0, =__fast_load_start__\r
- ldr r1, =__fast_start__\r
- ldr r2, =__fast_end__\r
- bl memory_copy\r
- ldr r0, =__ctors_load_start__\r
- ldr r1, =__ctors_start__\r
- ldr r2, =__ctors_end__\r
- bl memory_copy\r
- ldr r0, =__dtors_load_start__\r
- ldr r1, =__dtors_start__\r
- ldr r2, =__dtors_end__\r
- bl memory_copy\r
- ldr r0, =__rodata_load_start__\r
- ldr r1, =__rodata_start__\r
- ldr r2, =__rodata_end__\r
- bl memory_copy\r
-\r
- /* Zero the bss. */\r
- ldr r0, =__bss_start__\r
- ldr r1, =__bss_end__\r
- mov r2, #0\r
- bl memory_set\r
-\r
- /* Zero the privileged data. */\r
- ldr r0, =__privileged_data_start__\r
- ldr r1, =__privileged_data_end__\r
- mov r2, #0\r
- bl memory_set\r
-\r
- /* Initialise the heap */\r
- ldr r0, = __heap_start__\r
- ldr r1, = __heap_end__\r
- sub r1, r1, r0\r
- mov r2, #0\r
- str r2, [r0]\r
- add r0, r0, #4\r
- str r1, [r0]\r
-\r
- /* Call constructors */\r
- ldr r0, =__ctors_start__\r
- ldr r1, =__ctors_end__\r
-ctor_loop:\r
- cmp r0, r1\r
- beq ctor_end\r
- ldr r2, [r0]\r
- add r0, #4\r
- push {r0-r1}\r
- blx r2\r
- pop {r0-r1}\r
- b ctor_loop\r
-ctor_end:\r
-\r
- /* Setup initial call frame */\r
- mov r0, #0\r
- mov lr, r0\r
- mov r12, sp\r
-\r
-start:\r
- /* Jump to application entry point */\r
-#ifdef FULL_LIBRARY\r
- mov r0, #ARGSSPACE\r
- ldr r1, =args\r
- ldr r2, =debug_getargs\r
- blx r2\r
- ldr r1, =args\r
-#else\r
- mov r0, #0\r
- mov r1, #0\r
-#endif\r
- ldr r2, =APP_ENTRY_POINT\r
- blx r2\r
-\r
-#ifdef FULL_LIBRARY\r
- .thumb_func\r
-exit:\r
- mov r5, r0 // save the exit parameter/return result\r
-\r
- /* Call destructors */\r
- ldr r0, =__dtors_start__\r
- ldr r1, =__dtors_end__\r
-dtor_loop:\r
- cmp r0, r1\r
- beq dtor_end\r
- ldr r2, [r0]\r
- add r0, #4\r
- push {r0-r1}\r
- blx r2\r
- pop {r0-r1}\r
- b dtor_loop\r
-dtor_end:\r
-\r
- /* Call atexit functions */\r
- ldr r2, =_execute_at_exit_fns\r
- blx r2\r
-\r
- /* Call debug_exit with return result/exit parameter */\r
- mov r0, r5\r
- ldr r2, =debug_exit\r
- blx r2\r
-#endif\r
-\r
- /* Returned from application entry point, loop forever. */\r
-exit_loop:\r
- b exit_loop\r
-\r
-memory_copy:\r
- cmp r0, r1\r
- beq 2f\r
- subs r2, r2, r1\r
- beq 2f\r
-1:\r
- ldrb r3, [r0]\r
- add r0, r0, #1\r
- strb r3, [r1]\r
- add r1, r1, #1\r
- subs r2, r2, #1\r
- bne 1b\r
-2:\r
- bx lr\r
-\r
-memory_set:\r
- cmp r0, r1\r
- beq 1f\r
- strb r2, [r0]\r
- add r0, r0, #1\r
- b memory_set\r
-1:\r
- bx lr\r
-\r
-#ifdef FULL_LIBRARY\r
- .bss\r
-args:\r
- .space ARGSSPACE\r
-#endif\r
-\r
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>\r
-<?fileVersion 4.0.0?>\r
-\r
-<cproject>\r
-<storageModule moduleId="org.eclipse.cdt.core.settings">\r
-<cconfiguration id="com.crt.advproject.config.exe.debug.358435974">\r
-<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="com.crt.advproject.config.exe.debug.358435974" moduleId="org.eclipse.cdt.core.settings" name="Debug">\r
-<externalSettings/>\r
-<extensions>\r
-<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>\r
-<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>\r
-<extension id="org.eclipse.cdt.core.MakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-</extensions>\r
-</storageModule>\r
-<storageModule moduleId="cdtBuildSystem" version="4.0.0">\r
-<configuration artifactExtension="axf" artifactName="RTOSDemo_RDB1768" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="Debug build" errorParsers="org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.GASErrorParser" id="com.crt.advproject.config.exe.debug.358435974" name="Debug" parent="com.crt.advproject.config.exe.debug" postannouncebuildStep="Performing post-build steps" postbuildStep="arm-none-eabi-size ${BuildArtifactFileName}; # arm-none-eabi-objdump -h -S ${BuildArtifactFileName} >${BuildArtifactFileBaseName}.lss" preannouncebuildStep="" prebuildStep="">\r
-<folderInfo id="com.crt.advproject.config.exe.debug.358435974." name="/" resourcePath="">\r
-<toolChain id="com.crt.advproject.toolchain.exe.debug.1213183249" name="Code Red MCU Tools" superClass="com.crt.advproject.toolchain.exe.debug">\r
-<targetPlatform binaryParser="org.eclipse.cdt.core.ELF;org.eclipse.cdt.core.GNU_ELF" id="com.crt.advproject.platform.exe.debug.1952563323" name="ARM-based MCU (Debug)" superClass="com.crt.advproject.platform.exe.debug"/>\r
-<builder buildPath="${workspace_loc:/RTOSDemo_RDB1768/Debug}" id="com.crt.advproject.builder.exe.debug.154784167" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="com.crt.advproject.builder.exe.debug"/>\r
-<tool id="com.crt.advproject.cpp.exe.debug.1468083840" name="MCU C++ Compiler" superClass="com.crt.advproject.cpp.exe.debug"/>\r
-<tool id="com.crt.advproject.gcc.exe.debug.496871390" name="MCU C Compiler" superClass="com.crt.advproject.gcc.exe.debug">\r
-<option id="com.crt.advproject.gcc.arch.256789448" name="Architecture" superClass="com.crt.advproject.gcc.arch" value="com.crt.advproject.gcc.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.gcc.thumb.1065817733" name="Thumb mode" superClass="com.crt.advproject.gcc.thumb" value="true" valueType="boolean"/>\r
-<option id="gnu.c.compiler.option.preprocessor.def.symbols.1930899580" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols">\r
-<listOptionValue builtIn="false" value="DEBUG"/>\r
-<listOptionValue builtIn="false" value="__CODE_RED"/>\r
-</option>\r
-<option id="gnu.c.compiler.option.misc.other.644577272" name="Other flags" superClass="gnu.c.compiler.option.misc.other" value="-c -fmessage-length=0 -fno-builtin -ffunction-sections -Wextra" valueType="string"/>\r
-<option id="gnu.c.compiler.option.preprocessor.nostdinc.242908842" name="Do not search system directories (-nostdinc)" superClass="gnu.c.compiler.option.preprocessor.nostdinc"/>\r
-<option id="gnu.c.compiler.option.preprocessor.preprocess.2055050196" name="Preprocess only (-E)" superClass="gnu.c.compiler.option.preprocessor.preprocess"/>\r
-<option id="gnu.c.compiler.option.preprocessor.undef.symbol.415279897" name="Undefined symbols (-U)" superClass="gnu.c.compiler.option.preprocessor.undef.symbol"/>\r
-<option id="gnu.c.compiler.option.include.paths.383148579" name="Include paths (-I)" superClass="gnu.c.compiler.option.include.paths" valueType="includePath">\r
-<listOptionValue builtIn="false" value=""${workspace_loc:/RTOSDemo_MPU_RDB1768/src/FreeRTOS/include}""/>\r
-<listOptionValue builtIn="false" value=""${workspace_loc:/RTOSDemo_MPU_RDB1768/src/LCD}""/>\r
-<listOptionValue builtIn="false" value=""${workspace_loc:/RTOSDemo_MPU_RDB1768/src}""/>\r
-<listOptionValue builtIn="false" value=""${workspace_loc:/RTOSDemo_MPU_RDB1768/src/FreeRTOS/portable/GCC/ARM_CM3_MPU}""/>\r
-</option>\r
-<option id="com.crt.advproject.gcc.exe.debug.option.optimization.level.352418875" name="Optimization Level" superClass="com.crt.advproject.gcc.exe.debug.option.optimization.level"/>\r
-<option id="gnu.c.compiler.option.optimization.flags.1797615292" name="Other optimization flags" superClass="gnu.c.compiler.option.optimization.flags"/>\r
-<option id="com.crt.advproject.gcc.exe.debug.option.debugging.level.44032959" name="Debug Level" superClass="com.crt.advproject.gcc.exe.debug.option.debugging.level"/>\r
-<option id="gnu.c.compiler.option.debugging.other.1827557228" name="Other debugging flags" superClass="gnu.c.compiler.option.debugging.other"/>\r
-<option id="gnu.c.compiler.option.debugging.gprof.297254854" name="Generate gprof information (-pg)" superClass="gnu.c.compiler.option.debugging.gprof"/>\r
-<option id="gnu.c.compiler.option.debugging.prof.502744652" name="Generate prof information (-p)" superClass="gnu.c.compiler.option.debugging.prof"/>\r
-<option id="gnu.c.compiler.option.warnings.syntax.302195319" name="Check syntax only (-fsyntax-only)" superClass="gnu.c.compiler.option.warnings.syntax"/>\r
-<option id="gnu.c.compiler.option.warnings.pedantic.1413123641" name="Pedantic (-pedantic)" superClass="gnu.c.compiler.option.warnings.pedantic"/>\r
-<option id="gnu.c.compiler.option.warnings.pedantic.error.23507721" name="Pedantic warnings as errors (-pedantic-errors)" superClass="gnu.c.compiler.option.warnings.pedantic.error"/>\r
-<option id="gnu.c.compiler.option.warnings.nowarn.1931884804" name="Inhibit all warnings (-w)" superClass="gnu.c.compiler.option.warnings.nowarn"/>\r
-<option id="gnu.c.compiler.option.warnings.allwarn.166624136" name="All warnings (-Wall)" superClass="gnu.c.compiler.option.warnings.allwarn"/>\r
-<option id="gnu.c.compiler.option.warnings.toerrors.915552336" name="Warnings as errors (-Werror)" superClass="gnu.c.compiler.option.warnings.toerrors"/>\r
-<option id="gnu.c.compiler.option.misc.verbose.1204107040" name="Verbose (-v)" superClass="gnu.c.compiler.option.misc.verbose"/>\r
-<option id="gnu.c.compiler.option.misc.ansi.581770468" name="Support ANSI programs (-ansi)" superClass="gnu.c.compiler.option.misc.ansi"/>\r
-<option id="com.crt.advproject.gcc.thumbinterwork.1368180127" name="Enable Thumb interworking" superClass="com.crt.advproject.gcc.thumbinterwork"/>\r
-<option id="com.crt.advproject.gcc.hdrlib.721600979" name="Use headers for C library" superClass="com.crt.advproject.gcc.hdrlib" value="com.crt.advproject.gcc.hdrlib.newlib" valueType="enumerated"/>\r
-<option id="com.crt.advproject.gcc.config.1169701529" name="%crt.mcu.configname" superClass="com.crt.advproject.gcc.config"/>\r
-<option id="com.crt.advproject.gcc.store.95863954" name="%crt.mcu.storename" superClass="com.crt.advproject.gcc.store"/>\r
-<inputType id="com.crt.advproject.compiler.input.40206634" superClass="com.crt.advproject.compiler.input"/>\r
-</tool>\r
-<tool id="com.crt.advproject.gas.exe.debug.152194393" name="MCU Assembler" superClass="com.crt.advproject.gas.exe.debug">\r
-<option id="com.crt.advproject.gas.arch.856827611" name="Architecture" superClass="com.crt.advproject.gas.arch" value="com.crt.advproject.gas.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.gas.thumb.1906562556" name="Thumb mode" superClass="com.crt.advproject.gas.thumb" value="true" valueType="boolean"/>\r
-<option id="gnu.both.asm.option.flags.crt.638939077" name="Assembler flags" superClass="gnu.both.asm.option.flags.crt" value="-c -x assembler-with-cpp -DDEBUG -D__CODE_RED" valueType="string"/>\r
-<inputType id="com.crt.advproject.assembler.input.1954791986" name="Additional Assembly Source Files" superClass="com.crt.advproject.assembler.input"/>\r
-</tool>\r
-<tool id="com.crt.advproject.link.cpp.exe.debug.696640668" name="MCU C++ Linker" superClass="com.crt.advproject.link.cpp.exe.debug"/>\r
-<tool id="com.crt.advproject.link.exe.debug.1514106711" name="MCU Linker" superClass="com.crt.advproject.link.exe.debug">\r
-<option id="com.crt.advproject.link.arch.420484637" name="Architecture" superClass="com.crt.advproject.link.arch" value="com.crt.advproject.link.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.link.thumb.1827721661" name="Thumb mode" superClass="com.crt.advproject.link.thumb" value="true" valueType="boolean"/>\r
-<option id="com.crt.advproject.link.script.285435470" name="Linker script" superClass="com.crt.advproject.link.script" value=""${workspace_loc:/RTOSDemo_MPU_RDB1768/src/rtosdemo_rdb1768_Debug.ld}"" valueType="string"/>\r
-<option id="com.crt.advproject.link.manage.913993351" name="Manage linker script" superClass="com.crt.advproject.link.manage" value="false" valueType="boolean"/>\r
-<option id="gnu.c.link.option.nostdlibs.1027293252" name="No startup or default libs (-nostdlib)" superClass="gnu.c.link.option.nostdlibs" value="true" valueType="boolean"/>\r
-<option id="gnu.c.link.option.other.762506621" name="Other options (-Xlinker [option])" superClass="gnu.c.link.option.other" valueType="stringList">\r
-<listOptionValue builtIn="false" value="--gc-sections"/>\r
-<listOptionValue builtIn="false" value="-Map=${BuildArtifactFileBaseName}.map"/>\r
-</option>\r
-<option id="gnu.c.link.option.nostart.1381612580" name="Do not use standard start files (-nostartfiles)" superClass="gnu.c.link.option.nostart"/>\r
-<option id="gnu.c.link.option.nodeflibs.638645680" name="Do not use default libraries (-nodefaultlibs)" superClass="gnu.c.link.option.nodeflibs"/>\r
-<option id="gnu.c.link.option.strip.195880545" name="Omit all symbol information (-s)" superClass="gnu.c.link.option.strip"/>\r
-<option id="gnu.c.link.option.noshared.2075727134" name="No shared libraries (-static)" superClass="gnu.c.link.option.noshared"/>\r
-<option id="gnu.c.link.option.libs.103012550" name="Libraries (-l)" superClass="gnu.c.link.option.libs"/>\r
-<option id="gnu.c.link.option.paths.1400704377" name="Library search path (-L)" superClass="gnu.c.link.option.paths"/>\r
-<option id="gnu.c.link.option.ldflags.1447780175" name="Linker flags" superClass="gnu.c.link.option.ldflags"/>\r
-<option id="gnu.c.link.option.userobjs.1395709820" name="Other objects" superClass="gnu.c.link.option.userobjs"/>\r
-<option id="gnu.c.link.option.shared.2052162401" name="Shared (-shared)" superClass="gnu.c.link.option.shared"/>\r
-<option id="gnu.c.link.option.soname.1795621625" name="Shared object name (-Wl,-soname=)" superClass="gnu.c.link.option.soname"/>\r
-<option id="gnu.c.link.option.implname.939745637" name="Import Library name (-Wl,--out-implib=)" superClass="gnu.c.link.option.implname"/>\r
-<option id="gnu.c.link.option.defname.905674991" name="DEF file name (-Wl,--output-def=)" superClass="gnu.c.link.option.defname"/>\r
-<option id="com.crt.advproject.link.gcc.hdrlib.284228451" name="Use C library" superClass="com.crt.advproject.link.gcc.hdrlib"/>\r
-<option id="com.crt.advproject.link.config.2135715637" name="%crt.mcu.configname" superClass="com.crt.advproject.link.config"/>\r
-<option id="com.crt.advproject.link.store.1260276895" name="%crt.mcu.storename" superClass="com.crt.advproject.link.store"/>\r
-<inputType id="cdt.managedbuild.tool.gnu.c.linker.input.150124411" superClass="cdt.managedbuild.tool.gnu.c.linker.input">\r
-<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>\r
-<additionalInput kind="additionalinput" paths="$(LIBS)"/>\r
-</inputType>\r
-</tool>\r
-</toolChain>\r
-</folderInfo>\r
-<sourceEntries>\r
-<entry excluding="webserver/httpd-fsdata.c|FreeRTOS/portable/MemMang/heap_3.c|FreeRTOS/portable/MemMang/heap_1.c" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>\r
-</sourceEntries>\r
-</configuration>\r
-</storageModule>\r
-<storageModule moduleId="scannerConfiguration">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<scannerConfigBuildInfo instanceId="com.crt.advproject.config.exe.debug.358435974;com.crt.advproject.config.exe.debug.358435974.;com.crt.advproject.gas.exe.debug.152194393;com.crt.advproject.assembler.input.1954791986">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="com.crt.advproject.GCCManagedMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-</scannerConfigBuildInfo>\r
-<scannerConfigBuildInfo instanceId="com.crt.advproject.config.exe.debug.358435974;com.crt.advproject.config.exe.debug.358435974.;com.crt.advproject.gcc.exe.debug.496871390;com.crt.advproject.compiler.input.40206634">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="com.crt.advproject.GCCManagedMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-</scannerConfigBuildInfo>\r
-</storageModule>\r
-<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>\r
-<storageModule moduleId="org.eclipse.cdt.core.language.mapping"/>\r
-<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>\r
-</cconfiguration>\r
-<cconfiguration id="com.crt.advproject.config.exe.release.429003282">\r
-<storageModule buildSystemId="org.eclipse.cdt.managedbuilder.core.configurationDataProvider" id="com.crt.advproject.config.exe.release.429003282" moduleId="org.eclipse.cdt.core.settings" name="Release">\r
-<externalSettings/>\r
-<extensions>\r
-<extension id="org.eclipse.cdt.core.ELF" point="org.eclipse.cdt.core.BinaryParser"/>\r
-<extension id="org.eclipse.cdt.core.GNU_ELF" point="org.eclipse.cdt.core.BinaryParser"/>\r
-<extension id="org.eclipse.cdt.core.MakeErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GCCErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GASErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-<extension id="org.eclipse.cdt.core.GLDErrorParser" point="org.eclipse.cdt.core.ErrorParser"/>\r
-</extensions>\r
-</storageModule>\r
-<storageModule moduleId="cdtBuildSystem" version="4.0.0">\r
-<configuration artifactExtension="axf" artifactName="RTOSDemo_RDB1768" buildArtefactType="org.eclipse.cdt.build.core.buildArtefactType.exe" buildProperties="org.eclipse.cdt.build.core.buildArtefactType=org.eclipse.cdt.build.core.buildArtefactType.exe" cleanCommand="rm -rf" description="Release build" errorParsers="org.eclipse.cdt.core.MakeErrorParser;org.eclipse.cdt.core.GCCErrorParser;org.eclipse.cdt.core.GLDErrorParser;org.eclipse.cdt.core.GASErrorParser" id="com.crt.advproject.config.exe.release.429003282" name="Release" parent="com.crt.advproject.config.exe.release" postannouncebuildStep="Performing post-build steps" postbuildStep="arm-none-eabi-size ${BuildArtifactFileName}; # arm-none-eabi-objdump -h -S ${BuildArtifactFileName} >${BuildArtifactFileBaseName}.lss">\r
-<folderInfo id="com.crt.advproject.config.exe.release.429003282." name="/" resourcePath="">\r
-<toolChain id="com.crt.advproject.toolchain.exe.release.880950854" name="Code Red MCU Tools" superClass="com.crt.advproject.toolchain.exe.release">\r
-<targetPlatform binaryParser="org.eclipse.cdt.core.ELF;org.eclipse.cdt.core.GNU_ELF" id="com.crt.advproject.platform.exe.release.1422592318" name="ARM-based MCU (Release)" superClass="com.crt.advproject.platform.exe.release"/>\r
-<builder buildPath="${workspace_loc:/RTOSDemo_RDB1768/Release}" id="com.crt.advproject.builder.exe.release.2027495818" keepEnvironmentInBuildfile="false" managedBuildOn="true" name="Gnu Make Builder" superClass="com.crt.advproject.builder.exe.release"/>\r
-<tool id="com.crt.advproject.cpp.exe.release.1199012411" name="MCU C++ Compiler" superClass="com.crt.advproject.cpp.exe.release"/>\r
-<tool id="com.crt.advproject.gcc.exe.release.660269152" name="MCU C Compiler" superClass="com.crt.advproject.gcc.exe.release">\r
-<option id="com.crt.advproject.gcc.arch.1587182028" name="Architecture" superClass="com.crt.advproject.gcc.arch" value="com.crt.advproject.gcc.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.gcc.thumb.1829358809" name="Thumb mode" superClass="com.crt.advproject.gcc.thumb" value="true" valueType="boolean"/>\r
-<option id="gnu.c.compiler.option.preprocessor.def.symbols.1242089509" name="Defined symbols (-D)" superClass="gnu.c.compiler.option.preprocessor.def.symbols" valueType="definedSymbols">\r
-<listOptionValue builtIn="false" value="NDEBUG"/>\r
-<listOptionValue builtIn="false" value="__CODE_RED"/>\r
-</option>\r
-<option id="gnu.c.compiler.option.misc.other.1084357971" name="Other flags" superClass="gnu.c.compiler.option.misc.other" value="-c -fmessage-length=0 -fno-builtin -ffunction-sections" valueType="string"/>\r
-<inputType id="com.crt.advproject.compiler.input.1760064385" superClass="com.crt.advproject.compiler.input"/>\r
-</tool>\r
-<tool id="com.crt.advproject.gas.exe.release.340210131" name="MCU Assembler" superClass="com.crt.advproject.gas.exe.release">\r
-<option id="com.crt.advproject.gas.arch.1089759047" name="Architecture" superClass="com.crt.advproject.gas.arch" value="com.crt.advproject.gas.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.gas.thumb.147071109" name="Thumb mode" superClass="com.crt.advproject.gas.thumb" value="true" valueType="boolean"/>\r
-<option id="gnu.both.asm.option.flags.crt.2019607838" name="Assembler flags" superClass="gnu.both.asm.option.flags.crt" value="-c -x assembler-with-cpp -DNDEBUG -D__CODE_RED" valueType="string"/>\r
-<inputType id="com.crt.advproject.assembler.input.1748919550" name="Additional Assembly Source Files" superClass="com.crt.advproject.assembler.input"/>\r
-</tool>\r
-<tool id="com.crt.advproject.link.cpp.exe.release.116216997" name="MCU C++ Linker" superClass="com.crt.advproject.link.cpp.exe.release"/>\r
-<tool id="com.crt.advproject.link.exe.release.1686532392" name="MCU Linker" superClass="com.crt.advproject.link.exe.release">\r
-<option id="com.crt.advproject.link.arch.1717419953" name="Architecture" superClass="com.crt.advproject.link.arch" value="com.crt.advproject.link.target.cm3" valueType="enumerated"/>\r
-<option id="com.crt.advproject.link.thumb.1483839948" name="Thumb mode" superClass="com.crt.advproject.link.thumb" value="true" valueType="boolean"/>\r
-<option id="com.crt.advproject.link.script.1512636887" name="Linker script" superClass="com.crt.advproject.link.script" value=""rtosdemo_rdb1768_Release.ld" " valueType="string"/>\r
-<option id="com.crt.advproject.link.manage.1635592390" name="Manage linker script" superClass="com.crt.advproject.link.manage" value="true" valueType="boolean"/>\r
-<option id="gnu.c.link.option.nostdlibs.464135975" name="No startup or default libs (-nostdlib)" superClass="gnu.c.link.option.nostdlibs" value="true" valueType="boolean"/>\r
-<option id="gnu.c.link.option.other.1143120921" name="Other options (-Xlinker [option])" superClass="gnu.c.link.option.other" valueType="stringList">\r
-<listOptionValue builtIn="false" value="--gc-sections"/>\r
-<listOptionValue builtIn="false" value="-Map=${BuildArtifactFileBaseName}.map"/>\r
-</option>\r
-<inputType id="cdt.managedbuild.tool.gnu.c.linker.input.1457924481" superClass="cdt.managedbuild.tool.gnu.c.linker.input">\r
-<additionalInput kind="additionalinputdependency" paths="$(USER_OBJS)"/>\r
-<additionalInput kind="additionalinput" paths="$(LIBS)"/>\r
-</inputType>\r
-</tool>\r
-</toolChain>\r
-</folderInfo>\r
-<sourceEntries>\r
-<entry excluding="webserver/httpd-fsdata.c|FreeRTOS/portable/MemMang/heap_3.c|FreeRTOS/portable/MemMang/heap_1.c" flags="VALUE_WORKSPACE_PATH|RESOLVED" kind="sourcePath" name="src"/>\r
-</sourceEntries>\r
-</configuration>\r
-</storageModule>\r
-<storageModule moduleId="scannerConfiguration">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<scannerConfigBuildInfo instanceId="com.crt.advproject.config.exe.debug.358435974;com.crt.advproject.config.exe.debug.358435974.;com.crt.advproject.gas.exe.debug.152194393;com.crt.advproject.assembler.input.1954791986">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="com.crt.advproject.GCCManagedMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-</scannerConfigBuildInfo>\r
-<scannerConfigBuildInfo instanceId="com.crt.advproject.config.exe.debug.358435974;com.crt.advproject.config.exe.debug.358435974.;com.crt.advproject.gcc.exe.debug.496871390;com.crt.advproject.compiler.input.40206634">\r
-<autodiscovery enabled="true" problemReportingEnabled="true" selectedProfileId="com.crt.advproject.GCCManagedMakePerProjectProfile"/>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-c++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="com.crt.advproject.GASManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="false" filePath=""/>\r
-<parser enabled="false"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="com.crt.advproject.specsFile">\r
-<runAction arguments="-x assembler-with-cpp -E -P -v -dD ${plugin_state_location}/${specs_file}" command="arm-none-eabi-gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.make.core.GCCStandardMakePerFileProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="makefileGenerator">\r
-<runAction arguments="-f ${project_name}_scd.mk" command="make" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfile">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/${specs_file}" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileCPP">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.cpp" command="g++" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-<profile id="org.eclipse.cdt.managedbuilder.core.GCCWinManagedMakePerProjectProfileC">\r
-<buildOutputProvider>\r
-<openAction enabled="true" filePath=""/>\r
-<parser enabled="true"/>\r
-</buildOutputProvider>\r
-<scannerInfoProvider id="specsFile">\r
-<runAction arguments="-E -P -v -dD ${plugin_state_location}/specs.c" command="gcc" useDefault="true"/>\r
-<parser enabled="true"/>\r
-</scannerInfoProvider>\r
-</profile>\r
-</scannerConfigBuildInfo>\r
-</storageModule>\r
-<storageModule moduleId="org.eclipse.cdt.core.externalSettings"/>\r
-<storageModule moduleId="org.eclipse.cdt.core.language.mapping"/>\r
-<storageModule moduleId="org.eclipse.cdt.make.core.buildtargets"/>\r
-</cconfiguration>\r
-</storageModule>\r
-<storageModule moduleId="cdtBuildSystem" version="4.0.0">\r
-<project id="RTOSDemo_RDB1768.com.crt.advproject.projecttype.exe.469488889" name="Executable" projectType="com.crt.advproject.projecttype.exe"/>\r
-</storageModule>\r
-<storageModule moduleId="com.crt.config">\r
-<projectStorage><?xml version="1.0" encoding="UTF-8"?> \r
-<TargetConfig> \r
-<Properties property_0="" property_1="" property_2="" property_3="NXP" property_4="LPC1768" property_count="5" version="1"/> \r
-<infoList vendor="NXP"><info chip="LPC1768" match_id="0x00013f37,0x26013F37" name="LPC1768" package="lpc17_lqfp100.xml"><chip><name>LPC1768</name> \r
-<family>LPC17xx</family> \r
-<vendor>NXP (formerly Philips)</vendor> \r
-<reset board="None" core="Real" sys="Real"/> \r
-<clock changeable="TRUE" freq="20MHz" is_accurate="TRUE"/> \r
-<memory can_program="true" id="Flash" is_ro="true" type="Flash"/> \r
-<memory id="RAM" type="RAM"/> \r
-<memory id="Periph" is_volatile="true" type="Peripheral"/> \r
-<memoryInstance derived_from="Flash" id="MFlash512" location="0x00000000" size="0x80000"/> \r
-<memoryInstance derived_from="RAM" id="RamLoc32" location="0x10000000" size="0x8000"/> \r
-<memoryInstance derived_from="RAM" id="RamAHB32" location="0x2007c000" size="0x8000"/> \r
-<prog_flash blocksz="0x1000" location="0" maxprgbuff="0x1000" progwithcode="TRUE" size="0x10000"/> \r
-<prog_flash blocksz="0x8000" location="0x10000" maxprgbuff="0x1000" progwithcode="TRUE" size="0x70000"/> \r
-<peripheralInstance derived_from="LPC17_NVIC" determined="infoFile" id="NVIC" location="0xE000E000"/> \r
-<peripheralInstance derived_from="TIMER" determined="infoFile" enable="SYSCTL.PCONP.PCTIM0&amp;0x1" id="TIMER0" location="0x40004000"/> \r
-<peripheralInstance derived_from="TIMER" determined="infoFile" enable="SYSCTL.PCONP.PCTIM1&amp;0x1" id="TIMER1" location="0x40008000"/> \r
-<peripheralInstance derived_from="TIMER" determined="infoFile" enable="SYSCTL.PCONP.PCTIM2&amp;0x1" id="TIMER2" location="0x40090000"/> \r
-<peripheralInstance derived_from="TIMER" determined="infoFile" enable="SYSCTL.PCONP.PCTIM3&amp;0x1" id="TIMER3" location="0x40094000"/> \r
-<peripheralInstance derived_from="FGPIO" determined="infoFile" enable="SYSCTL.PCONP.PCGPIO&amp;0x1" id="GPIO0" location="0x2009C000"/> \r
-<peripheralInstance derived_from="FGPIO" determined="infoFile" enable="SYSCTL.PCONP.PCGPIO&amp;0x1" id="GPIO1" location="0x2009C020"/> \r
-<peripheralInstance derived_from="FGPIO" determined="infoFile" enable="SYSCTL.PCONP.PCGPIO&amp;0x1" id="GPIO2" location="0x2009C040"/> \r
-<peripheralInstance derived_from="FGPIO" determined="infoFile" enable="SYSCTL.PCONP.PCGPIO&amp;0x1" id="GPIO3" location="0x2009C060"/> \r
-<peripheralInstance derived_from="FGPIO" determined="infoFile" enable="SYSCTL.PCONP.PCGPIO&amp;0x1" id="GPIO4" location="0x2009C080"/> \r
-<peripheralInstance derived_from="LPC17_I2S" determined="infoFile" enable="SYSCTL.PCONP&amp;0x08000000" id="I2S" location="0x400A8000"/> \r
-<peripheralInstance derived_from="LPC17_SYSCTL" determined="infoFile" id="SYSCTL" location="0x400FC000"/> \r
-<peripheralInstance derived_from="LPC17_DAC" determined="infoFile" enable="PCB.PINSEL1.P0_26&amp;0x2=2" id="DAC" location="0x4008C000"/> \r
-<peripheralInstance derived_from="LPC1xxx_UART" determined="infoFile" enable="SYSCTL.PCONP.PCUART0&amp;0x1" id="UART0" location="0x4000C000"/> \r
-<peripheralInstance derived_from="LPC1xxx_UART_MODEM" determined="infoFile" enable="SYSCTL.PCONP.PCUART1&amp;0x1" id="UART1" location="0x40010000"/> \r
-<peripheralInstance derived_from="LPC1xxx_UART" determined="infoFile" enable="SYSCTL.PCONP.PCUART2&amp;0x1" id="UART2" location="0x40098000"/> \r
-<peripheralInstance derived_from="LPC1xxx_UART" determined="infoFile" enable="SYSCTL.PCONP.PCAURT3&amp;0x1" id="UART3" location="0x4009C000"/> \r
-<peripheralInstance derived_from="SPI" determined="infoFile" enable="SYSCTL.PCONP.PCSPI&amp;0x1" id="SPI" location="0x40020000"/> \r
-<peripheralInstance derived_from="LPC17_SSP" determined="infoFile" enable="SYSCTL.PCONP.PCSSP0&amp;0x1" id="SSP0" location="0x40088000"/> \r
-<peripheralInstance derived_from="LPC17_SSP" determined="infoFile" enable="SYSCTL.PCONP.PCSSP1&amp;0x1" id="SSP1" location="0x40030000"/> \r
-<peripheralInstance derived_from="LPC17_ADC" determined="infoFile" enable="SYSCTL.PCONP.PCAD&amp;0x1" id="ADC" location="0x40034000"/> \r
-<peripheralInstance derived_from="LPC17_USBINTST" determined="infoFile" enable="USBCLKCTL.USBClkCtrl&amp;0x12" id="USBINTSTAT" location="0x400fc1c0"/> \r
-<peripheralInstance derived_from="LPC17_USB_CLK_CTL" determined="infoFile" id="USBCLKCTL" location="0x5000cff4"/> \r
-<peripheralInstance derived_from="LPC17_USBDEV" determined="infoFile" enable="USBCLKCTL.USBClkSt&amp;0x12=0x12" id="USBDEV" location="0x5000C200"/> \r
-<peripheralInstance derived_from="LPC17_PWM" determined="infoFile" enable="SYSCTL.PCONP.PWM1&amp;0x1" id="PWM" location="0x40018000"/> \r
-<peripheralInstance derived_from="LPC17_I2C" determined="infoFile" enable="SYSCTL.PCONP.PCI2C0&amp;0x1" id="I2C0" location="0x4001C000"/> \r
-<peripheralInstance derived_from="LPC17_I2C" determined="infoFile" enable="SYSCTL.PCONP.PCI2C1&amp;0x1" id="I2C1" location="0x4005C000"/> \r
-<peripheralInstance derived_from="LPC17_I2C" determined="infoFile" enable="SYSCTL.PCONP.PCI2C2&amp;0x1" id="I2C2" location="0x400A0000"/> \r
-<peripheralInstance derived_from="LPC17_DMA" determined="infoFile" enable="SYSCTL.PCONP.PCGPDMA&amp;0x1" id="DMA" location="0x50004000"/> \r
-<peripheralInstance derived_from="LPC17_ENET" determined="infoFile" enable="SYSCTL.PCONP.PCENET&amp;0x1" id="ENET" location="0x50000000"/> \r
-<peripheralInstance derived_from="CM3_DCR" determined="infoFile" id="DCR" location="0xE000EDF0"/> \r
-<peripheralInstance derived_from="LPC17_PCB" determined="infoFile" id="PCB" location="0x4002c000"/> \r
-<peripheralInstance derived_from="LPC17_QEI" determined="infoFile" enable="SYSCTL.PCONP.PCQEI&amp;0x1" id="QEI" location="0x400bc000"/> \r
-<peripheralInstance derived_from="LPC17_USBHOST" determined="infoFile" enable="USBCLKCTL.USBClkSt&amp;0x11=0x11" id="USBHOST" location="0x5000C000"/> \r
-<peripheralInstance derived_from="LPC17_USBOTG" determined="infoFile" enable="USBCLKCTL.USBClkSt&amp;0x1c=0x1c" id="USBOTG" location="0x5000C000"/> \r
-<peripheralInstance derived_from="LPC17_RTC" determined="infoFile" enable="SYSCTL.PCONP.PCRTC&amp;0x1" id="RTC" location="0x40024000"/> \r
-<peripheralInstance derived_from="MPU" determined="infoFile" id="MPU" location="0xE000ED90"/> \r
-<peripheralInstance derived_from="LPC1x_WDT" determined="infoFile" id="WDT" location="0x40000000"/> \r
-</chip> \r
-<processor><name gcc_name="cortex-m3">Cortex-M3</name> \r
-<family>Cortex-M</family> \r
-</processor> \r
-<link href="nxp_lpcxxxx_peripheral.xme" show="embed" type="simple"/> \r
-</info> \r
-</infoList> \r
-</TargetConfig></projectStorage>\r
-</storageModule>\r
-</cproject>\r
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>\r
-<projectDescription>\r
- <name>RTOSDemo_MPU_RDB1768</name>\r
- <comment></comment>\r
- <projects>\r
- </projects>\r
- <buildSpec>\r
- <buildCommand>\r
- <name>org.eclipse.cdt.managedbuilder.core.genmakebuilder</name>\r
- <triggers>clean,full,incremental,</triggers>\r
- <arguments>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.cleanBuildTarget</key>\r
- <value>clean</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.enableCleanBuild</key>\r
- <value>true</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.append_environment</key>\r
- <value>true</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>?name?</key>\r
- <value></value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.stopOnError</key>\r
- <value>true</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.buildCommand</key>\r
- <value>make</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.contents</key>\r
- <value>org.eclipse.cdt.make.core.activeConfigSettings</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.buildLocation</key>\r
- <value>${workspace_loc:/RTOSDemo_RDB1768/Debug}</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.useDefaultBuildCmd</key>\r
- <value>true</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.enableFullBuild</key>\r
- <value>true</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.enableAutoBuild</key>\r
- <value>false</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.fullBuildTarget</key>\r
- <value>all</value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.buildArguments</key>\r
- <value></value>\r
- </dictionary>\r
- <dictionary>\r
- <key>org.eclipse.cdt.make.core.autoBuildTarget</key>\r
- <value>all</value>\r
- </dictionary>\r
- </arguments>\r
- </buildCommand>\r
- <buildCommand>\r
- <name>org.eclipse.cdt.managedbuilder.core.ScannerConfigBuilder</name>\r
- <arguments>\r
- </arguments>\r
- </buildCommand>\r
- </buildSpec>\r
- <natures>\r
- <nature>org.eclipse.cdt.managedbuilder.core.ScannerConfigNature</nature>\r
- <nature>org.eclipse.cdt.managedbuilder.core.managedBuildNature</nature>\r
- <nature>org.eclipse.cdt.core.cnature</nature>\r
- </natures>\r
-</projectDescription>\r
+++ /dev/null
-REM This file should be executed from the command line prior to the first\r
-REM build. It will be necessary to refresh the Eclipse project once the\r
-REM .bat file has been executed (normally just press F5 to refresh).\r
-\r
-REM Copies all the required files from their location within the standard\r
-REM FreeRTOS directory structure to under the Eclipse project directory.\r
-REM This permits the Eclipse project to be used in 'managed' mode and without\r
-REM having to setup any linked resources.\r
-\r
-REM Have the files already been copied?\r
-IF EXIST src\FreeRTOS Goto END\r
-\r
- REM Create the required directory structure.\r
- MD src\FreeRTOS\r
- MD src\FreeRTOS\include \r
- MD src\FreeRTOS\portable\GCC\ARM_CM3_MPU\r
- MD src\FreeRTOS\portable\MemMang \r
- \r
- REM Copy the core kernel files.\r
- copy ..\..\Source\tasks.c src\FreeRTOS\r
- copy ..\..\Source\queue.c src\FreeRTOS\r
- copy ..\..\Source\list.c src\FreeRTOS\r
- \r
- REM Copy the common header files\r
-\r
- copy ..\..\Source\include\*.* src\FreeRTOS\include\r
- \r
- REM Copy the portable layer files\r
- copy ..\..\Source\portable\GCC\ARM_CM3_MPU\*.* src\FreeRTOS\portable\GCC\ARM_CM3_MPU\r
- \r
- REM Copy the basic memory allocation files\r
- copy ..\..\Source\portable\MemMang\heap_2.c src\FreeRTOS\portable\MemMang\r
-\r
-: END
\ No newline at end of file
--- /dev/null
+If you need the demo that used to be in this directory then download FreeRTOS V8.2.3\r
+from http://sourceforge.net/projects/freertos/files/FreeRTOS/\r
+\r
+++ /dev/null
-/*\r
- FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
- All rights reserved\r
-\r
- VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
- This file is part of the FreeRTOS distribution.\r
-\r
- FreeRTOS is free software; you can redistribute it and/or modify it under\r
- the terms of the GNU General Public License (version 2) as published by the\r
- Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
-\r
- ***************************************************************************\r
- >>! NOTE: The modification to the GPL is included to allow you to !<<\r
- >>! distribute a combined work that includes FreeRTOS without being !<<\r
- >>! obliged to provide the source code for proprietary components !<<\r
- >>! outside of the FreeRTOS kernel. !<<\r
- ***************************************************************************\r
-\r
- FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
- FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
- link: http://www.freertos.org/a00114.html\r
-\r
- ***************************************************************************\r
- * *\r
- * FreeRTOS provides completely free yet professionally developed, *\r
- * robust, strictly quality controlled, supported, and cross *\r
- * platform software that is more than just the market leader, it *\r
- * is the industry's de facto standard. *\r
- * *\r
- * Help yourself get started quickly while simultaneously helping *\r
- * to support the FreeRTOS project by purchasing a FreeRTOS *\r
- * tutorial book, reference manual, or both: *\r
- * http://www.FreeRTOS.org/Documentation *\r
- * *\r
- ***************************************************************************\r
-\r
- http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
- the FAQ page "My application does not run, what could be wrong?". Have you\r
- defined configASSERT()?\r
-\r
- http://www.FreeRTOS.org/support - In return for receiving this top quality\r
- embedded software for free we request you assist our global community by\r
- participating in the support forum.\r
-\r
- http://www.FreeRTOS.org/training - Investing in training allows your team to\r
- be as productive as possible as early as possible. Now you can receive\r
- FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
- Ltd, and the world's leading authority on the world's leading RTOS.\r
-\r
- http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
- including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
- compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
- http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
- Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
-\r
- http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
- Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
- licenses offer ticketed support, indemnification and commercial middleware.\r
-\r
- http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
- engineered and independently SIL3 certified version for use in safety and\r
- mission critical applications that require provable dependability.\r
-\r
- 1 tab == 4 spaces!\r
-*/\r
-\r
-#ifndef FREERTOS_CONFIG_H\r
-#define FREERTOS_CONFIG_H\r
-\r
-/* \r
- * The following #error directive is to remind users that a batch file must be\r
- * executed prior to this project being built. The batch file *cannot* be \r
- * executed from within the IDE! Once it has been executed, re-open or refresh \r
- * the Eclipse project and remove the #error line below.\r
- */\r
-#error Ensure CreateProjectDirectoryStructure.bat has been executed before building. See comment immediately above.\r
-\r
-#include "LPC17xx.h"\r
-\r
-/*-----------------------------------------------------------\r
- * Application specific definitions.\r
- *\r
- * These definitions should be adjusted for your particular hardware and\r
- * application requirements.\r
- *\r
- * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE\r
- * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.\r
- *----------------------------------------------------------*/\r
-\r
-#define configUSE_PREEMPTION 1\r
-#define configUSE_IDLE_HOOK 1\r
-#define configMAX_PRIORITIES ( 5 )\r
-#define configUSE_TICK_HOOK 1\r
-#define configCPU_CLOCK_HZ ( ( unsigned long ) 99000000 )\r
-#define configTICK_RATE_HZ ( ( TickType_t ) 1000 )\r
-#define configMINIMAL_STACK_SIZE ( ( unsigned short ) 100 )\r
-#define configTOTAL_HEAP_SIZE ( ( size_t ) ( 2560 ) )\r
-#define configMAX_TASK_NAME_LEN ( 12 )\r
-#define configUSE_TRACE_FACILITY 0\r
-#define configUSE_16_BIT_TICKS 0\r
-#define configIDLE_SHOULD_YIELD 0\r
-#define configUSE_CO_ROUTINES 0\r
-#define configUSE_MUTEXES 0\r
-\r
-#define configMAX_CO_ROUTINE_PRIORITIES ( 2 )\r
-\r
-#define configUSE_COUNTING_SEMAPHORES 0\r
-#define configUSE_ALTERNATIVE_API 0\r
-#define configCHECK_FOR_STACK_OVERFLOW 0\r
-#define configUSE_RECURSIVE_MUTEXES 0\r
-#define configQUEUE_REGISTRY_SIZE 0\r
-#define configGENERATE_RUN_TIME_STATS 0\r
-#define configUSE_MALLOC_FAILED_HOOK 1\r
-\r
-/* Set the following definitions to 1 to include the API function, or zero\r
-to exclude the API function. */\r
-\r
-#define INCLUDE_vTaskPrioritySet 0\r
-#define INCLUDE_uxTaskPriorityGet 0\r
-#define INCLUDE_vTaskDelete 1\r
-#define INCLUDE_vTaskCleanUpResources 0\r
-#define INCLUDE_vTaskSuspend 0\r
-#define INCLUDE_vTaskDelayUntil 0\r
-#define INCLUDE_vTaskDelay 0\r
-#define INCLUDE_uxTaskGetStackHighWaterMark 0\r
-\r
-/* Use the system definition, if there is one */\r
-#ifdef __NVIC_PRIO_BITS\r
- #define configPRIO_BITS __NVIC_PRIO_BITS\r
-#else\r
- #define configPRIO_BITS 5 /* 32 priority levels */\r
-#endif\r
-\r
-/* The lowest priority. */\r
-#define configKERNEL_INTERRUPT_PRIORITY ( 31 << (8 - configPRIO_BITS) )\r
-/* Priority 5, or 160 as only the top three bits are implemented. */\r
-/* !!!! configMAX_SYSCALL_INTERRUPT_PRIORITY must not be set to zero !!!!\r
-See http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html. */\r
-#define configMAX_SYSCALL_INTERRUPT_PRIORITY ( 5 << (8 - configPRIO_BITS) )\r
-\r
-\r
-\r
-#endif /* FREERTOS_CONFIG_H */\r
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// font.h - header file for font data contained in system_fixed_be_8_15.c\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-#ifndef FONT_H_\r
-#define FONT_H_\r
-\r
-extern const unsigned char font_data_table[];\r
-extern const unsigned char font_index_table[];\r
-\r
-#endif /*FONT_H_*/\r
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// lcd.c contains various routines to plot to the LCD display on the RDB1768\r
-// development board.\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-#include "lcd_commands.h"\r
-#include "lcd.h"\r
-#include "lcd_driver.h"\r
-#include "font.h"\r
-\r
-#include <stdlib.h> // to provice abs() function\r
-\r
-// Routine to draw a filled rectangle to the LCD.\r
-// Two corners of rectangle are at (xmin,ymin) and (xmax,ymax).\r
-// The Rectangle is filled with the RGB565 color specified\r
-void LCD_FilledRect(int xmin,int xmax,int ymin,int ymax,int color)\r
-{\r
- int i;\r
-\r
- // Specify to LCD controller coordinates we are writing to...\r
- LCDdriver_WriteCom(DD_CASET); // Set the column address\r
- LCDdriver_WriteData(xmin); // min address\r
- LCDdriver_WriteData(xmax); // max address\r
- LCDdriver_WriteCom(DD_RASET); // Set the row address\r
- LCDdriver_WriteData(ymin + 1); // min address\r
- LCDdriver_WriteData(ymax + 1); // max address\r
- LCDdriver_WriteCom(DD_RAMWR); // RAM Write command\r
-\r
- // Plot the color data to the LCD buffer\r
- for(i = ((xmax - xmin + 1) * (ymax - ymin + 1)); i > 0; i--)\r
- {\r
- LCDdriver_WriteData(color >> 8); // top 8 bits of RGB565 color\r
- LCDdriver_WriteData(color); // bottom 8 bits of RGB565 color\r
- }\r
-}\r
-\r
-// Routine to draw an unfilled rectangle to the LCD.\r
-// Two corners of rectangle are at (xmin,ymin) and (xmax,ymax).\r
-// The Rectangle is drawn in the RGB565 color specified\r
-void LCD_Rect(int xmin,int xmax,int ymin,int ymax,int color)\r
-{\r
- // Draw 4 lines of rectange as 4 filled rectanges, each of 1 pixel wide\r
- LCD_FilledRect(xmin,xmin,ymin,ymax,color);\r
- LCD_FilledRect(xmax,xmax,ymin,ymax,color);\r
- LCD_FilledRect(xmin,xmax,ymin,ymin,color);\r
- LCD_FilledRect(xmin,xmax,ymax,ymax,color);\r
-}\r
-\r
-\r
-\r
-// Plot a point on the screen in the 6:5:6 color format\r
-void LCD_PlotPoint(int x,int y,int color)\r
-{\r
- LCDdriver_WriteCom(DD_CASET); // Set the column address \r
- LCDdriver_WriteData(x); // min address\r
- LCDdriver_WriteData(x); // max address\r
- LCDdriver_WriteCom(DD_RASET); // Set the row address\r
- LCDdriver_WriteData(y + 1); // min address\r
- LCDdriver_WriteData(y + 1); // max address\r
- LCDdriver_WriteCom(DD_RAMWR); // RAM Write command\r
- LCDdriver_WriteData(color >> 8); // top 8 bits of RGB565 color\r
- LCDdriver_WriteData(color); // top 8 bits of RGB565 color\r
-}\r
-\r
-// Routine to draw a filled circle to the LCD.\r
-// The centre of the circle is at (x0,y0) and the circle has the \r
-// specifed radius. The circle is filled with the RGB565 color \r
-// The circle is drawn using the "Midpoint circle algorithm", \r
-// also known as "Bresenham's circle algorithm". In order to fill\r
-// the circle, the algorithm has been modifed to draw a line between\r
-// each two points, rather than plotting the two points individually.\r
-void LCD_FilledCircle (int x0, int y0, int radius, int color)\r
-{\r
- int f = 1 - radius;\r
- int ddF_x = 1;\r
- int ddF_y = -2 * radius;\r
- int x = 0;\r
- int y = radius;\r
- \r
- LCD_FilledRect(x0, x0 ,y0 - radius,y0 + radius, color); \r
- LCD_FilledRect(x0 - radius, x0 + radius ,y0,y0, color); \r
- \r
- while(x < y)\r
- {\r
- if(f >= 0) \r
- {\r
- y--;\r
- ddF_y += 2;\r
- f += ddF_y;\r
- }\r
- x++;\r
- ddF_x += 2;\r
- f += ddF_x; \r
-\r
- LCD_FilledRect(x0-x, x0+x ,y0 +y, y0 + y, color); \r
- LCD_FilledRect(x0-x, x0+x ,y0 - y, y0 - y, color); \r
- LCD_FilledRect(x0-y, x0+y ,y0 + x, y0 + x, color); \r
- LCD_FilledRect(x0-y, x0+y ,y0 - x, y0 - x, color); \r
- }\r
-}\r
-\r
-// Routine to draw an unfilled circle to the LCD.\r
-// The centre of the circle is at (x0,y0) and the circle has the \r
-// specifed radius. The circle is drawn in the RGB565 color \r
-// The circle is drawn using the "Midpoint circle algorithm", \r
-// also known as "Bresenham's circle algorithm". \r
-void LCD_Circle (int x0, int y0, int radius, int color)\r
-{\r
- int f = 1 - radius;\r
- int ddF_x = 1;\r
- int ddF_y = -2 * radius;\r
- int x = 0;\r
- int y = radius;\r
-\r
- LCD_PlotPoint(x0, y0 + radius, color);\r
- LCD_PlotPoint(x0, y0 - radius, color);\r
- LCD_PlotPoint(x0 + radius, y0, color);\r
- LCD_PlotPoint(x0 - radius, y0, color);\r
-\r
- while(x < y)\r
- {\r
- if(f >= 0) \r
- {\r
- y--;\r
- ddF_y += 2;\r
- f += ddF_y;\r
- }\r
- x++;\r
- ddF_x += 2;\r
- f += ddF_x; \r
- LCD_PlotPoint(x0 + x, y0 + y, color);\r
- LCD_PlotPoint(x0 - x, y0 + y, color);\r
- LCD_PlotPoint(x0 + x, y0 - y, color);\r
- LCD_PlotPoint(x0 - x, y0 - y, color);\r
- LCD_PlotPoint(x0 + y, y0 + x, color);\r
- LCD_PlotPoint(x0 - y, y0 + x, color);\r
- LCD_PlotPoint(x0 + y, y0 - x, color);\r
- LCD_PlotPoint(x0 - y, y0 - x, color);\r
- }\r
-}\r
-\r
-// Routine to draw a line in the RGB565 color to the LCD.\r
-// The line is drawn from (xmin,ymin) to (xmax,ymax).\r
-// The algorithm used to draw the line is "Bresenham's line\r
-// algorithm". \r
-#define SWAP(a, b) a ^= b; b ^= a; a ^= b; \r
-\r
-void LCD_Line (int xmin,int xmax,int ymin,int ymax,int color)\r
-{\r
- int Dx = xmax - xmin; \r
- int Dy = ymax - ymin;\r
- int steep = (abs(Dy) >= abs(Dx));\r
- if (steep) {\r
- SWAP(xmin, ymin);\r
- SWAP(xmax, ymax);\r
- // recompute Dx, Dy after swap\r
- Dx = xmax - xmin;\r
- Dy = ymax - ymin;\r
- }\r
- int xstep = 1;\r
- if (Dx < 0) {\r
- xstep = -1;\r
- Dx = -Dx;\r
- }\r
- int ystep = 1;\r
- if (Dy < 0) {\r
- ystep = -1; \r
- Dy = -Dy; \r
- }\r
- int TwoDy = 2*Dy; \r
- int TwoDyTwoDx = TwoDy - 2*Dx; // 2*Dy - 2*Dx\r
- int E = TwoDy - Dx; //2*Dy - Dx\r
- int y = ymin;\r
- int xDraw, yDraw;\r
- int x;\r
- for (x = xmin; x != xmax; x += xstep) { \r
- if (steep) { \r
- xDraw = y;\r
- yDraw = x;\r
- } else { \r
- xDraw = x;\r
- yDraw = y;\r
- }\r
- // plot\r
- LCD_PlotPoint(xDraw, yDraw, color);\r
- // next\r
- if (E > 0) {\r
- E += TwoDyTwoDx; //E += 2*Dy - 2*Dx;\r
- y = y + ystep;\r
- } else {\r
- E += TwoDy; //E += 2*Dy;\r
- }\r
- }\r
-}\r
-\r
-// Routine to clear the LCD.\r
-// Implemented by drawing a black rectangle across the whole screen\r
-void LCD_ClearScreen(void)\r
-{ \r
- LCD_FilledRect (0,LCD_MAX_X,0 , LCD_MAX_Y, COLOR_BLACK);\r
-}\r
-\r
-\r
-\r
-// Routine to write a single character to screen in the font pointed\r
-// to by pBitMap. This routine is intended to be used via the \r
-// LCD_PrintChar() and LCD_PrintString() routines, rather than called\r
-// directly from user code.\r
-void LCD_WriteBitMap8x15(int x, int y, int height, int width, unsigned char *pBitMap, int color)\r
-{\r
- int xmax = x + width - 1; // start at zero\r
- int ymax = y + height - 1; // start at zero\r
- int iRow, iCol;\r
- unsigned char ucRowData;\r
- \r
- LCDdriver_WriteCom(DD_CASET); // Column address set\r
- LCDdriver_WriteData(x); // Start column\r
- LCDdriver_WriteData(xmax); // End column\r
- LCDdriver_WriteCom(DD_RASET); // Row address set\r
- LCDdriver_WriteData(y); // Start row\r
- LCDdriver_WriteData(ymax); // End row\r
- LCDdriver_WriteCom(DD_RAMWR); // Memory write\r
- \r
- \r
- for(iRow=0;iRow<height;iRow++)\r
- {\r
- ucRowData = *pBitMap++;\r
- \r
- for(iCol=0;iCol<width;iCol++)\r
- {\r
-\r
- // Look at each input bitmap bit\r
- // and write as a black-pixel or\r
- // a color-pixel.\r
- \r
- if(ucRowData & 0x80) // 'color pixel'\r
- {\r
- LCDdriver_WriteData(color >> 8); \r
- LCDdriver_WriteData(color);\r
- }\r
- else // black pixel\r
- {\r
- LCDdriver_WriteData(0x00);\r
- LCDdriver_WriteData(0x00);\r
- }\r
- \r
- ucRowData = ucRowData<<1;\r
- }\r
- }\r
-\r
-}\r
-\r
-\r
-// Prints the character 'c' to the LCD in the appropriate color.\r
-void LCD_PrintChar(int x, int y, unsigned char c, int color )\r
-{\r
- const unsigned char index = font_index_table[c];\r
- const unsigned int offset = index * 15;\r
- unsigned char *pData = (unsigned char *)&font_data_table[offset]; \r
-\r
- LCD_WriteBitMap8x15(x, y, 15, 8, pData, color);\r
-}\r
-\r
-// Prints the string to the LCD in the appropriate color.\r
-void LCD_PrintString(int x, int y, char *pcString, int iStrLen, int color)\r
-{\r
- unsigned char index;\r
- unsigned int offset;\r
- unsigned char *pData;\r
- unsigned char c;\r
- int i;\r
- \r
- for(i=0;i<iStrLen;i++)\r
- {\r
- c = pcString[i];\r
- if(c==0)\r
- break;\r
- index = font_index_table[c];\r
- offset = index * 15;\r
- pData = (unsigned char *)&font_data_table[offset];\r
-\r
- LCD_WriteBitMap8x15(x, y, 15, 8, pData, color); \r
- x += 8;\r
- }\r
- \r
-}
\ No newline at end of file
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// lcd.h - Routines containing primitives for writing to the LCD\r
-//\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-\r
-#ifndef LCD_H_\r
-#define LCD_H_\r
-\r
-// Define size of LCD screen.\r
-\r
-#define LCD_MAX_X 128\r
-#define LCD_MAX_Y 128\r
-\r
-// Translates a 24-bit RGB color to RGB565\r
-#define TRANSLATE24BIT_TO_RGB565(c) ((((c) & 0x00ff0000) >> 19) | \\r
- ((((c) & 0x0000ff00) >> 5) & 0x000007e0) | \\r
- ((((c) & 0x000000ff) << 8) & 0x0000f800))\r
-\r
-// Define a basic set of 24bit colors, based on the standard "websafe" set\r
-#define COLOR24_AQUA 0x00FFFF\r
-#define COLOR24_GREY 0x808080\r
-#define COLOR24_NAVY 0x000080 \r
-#define COLOR24_SILVER 0xC0C0C0\r
-#define COLOR24_BLACK 0x000000 \r
-#define COLOR24_GREEN 0x008000 \r
-#define COLOR24_OLIVE 0x808000 \r
-#define COLOR24_TEAL 0x008080\r
-#define COLOR24_BLUE 0x0000FF \r
-#define COLOR24_LIME 0x00FF00 \r
-#define COLOR24_PURPLE 0x800080 \r
-#define COLOR24_WHITE 0xFFFFFF\r
-#define COLOR24_FUCHSIA 0xFF00FF \r
-#define COLOR24_MAROON 0x800000 \r
-#define COLOR24_RED 0xFF0000\r
-#define COLOR24_YELLOW 0xFFFF00\r
-\r
-// Create a set of RGB565 colors that can be used directly within code\r
-#define COLOR_AQUA TRANSLATE24BIT_TO_RGB565(COLOR24_AQUA)\r
-#define COLOR_GREY TRANSLATE24BIT_TO_RGB565(COLOR24_GREY)\r
-#define COLOR_NAVY TRANSLATE24BIT_TO_RGB565(COLOR24_NAVY) \r
-#define COLOR_SILVER TRANSLATE24BIT_TO_RGB565(COLOR24_SILVER)\r
-#define COLOR_BLACK TRANSLATE24BIT_TO_RGB565(COLOR24_BLACK) \r
-#define COLOR_GREEN TRANSLATE24BIT_TO_RGB565(COLOR24_GREEN) \r
-#define COLOR_OLIVE TRANSLATE24BIT_TO_RGB565(COLOR24_OLIVE) \r
-#define COLOR_TEAL TRANSLATE24BIT_TO_RGB565(COLOR24_TEAL)\r
-#define COLOR_BLUE TRANSLATE24BIT_TO_RGB565(COLOR24_BLUE) \r
-#define COLOR_LIME TRANSLATE24BIT_TO_RGB565(COLOR24_LIME) \r
-#define COLOR_PURPLE TRANSLATE24BIT_TO_RGB565(COLOR24_PURPLE) \r
-#define COLOR_WHITE TRANSLATE24BIT_TO_RGB565(COLOR24_WHITE)\r
-#define COLOR_FUCHSIA TRANSLATE24BIT_TO_RGB565(COLOR24_FUCHSIA) \r
-#define COLOR_MAROON TRANSLATE24BIT_TO_RGB565(COLOR24_MAROON) \r
-#define COLOR_RED TRANSLATE24BIT_TO_RGB565(COLOR24_RED)\r
-#define COLOR_YELLOW TRANSLATE24BIT_TO_RGB565(COLOR24_YELLOW)\r
-\r
-\r
-void LCD_Line (int xmin,int xmax,int ymin,int ymax,int color);\r
-void LCD_FilledRect(int xmin,int xmax,int ymin,int ymax,int color);\r
-void LCD_Rect(int xmin,int xmax,int ymin,int ymax,int color);\r
-void LCD_WriteBitMap8x15(int x, int y, int height, int width, unsigned char *pBitMap, int color);\r
-void LCD_PlotPoint(int x,int y,int color);\r
-void LCD_Circle (int x0, int y0, int radius, int color);\r
-void LCD_FilledCircle (int x0, int y0, int radius, int color);\r
-void LCD_ClearScreen(void);\r
-void LCD_WriteBitMap8x15(int x, int y, int height, int width, unsigned char *pBitMap, int color);\r
-void LCD_PrintChar(int x, int y, unsigned char c, int color );\r
-void LCD_PrintString(int x, int y, char *pcString, int iStrLen, int color);\r
-\r
-\r
-#endif /*LCD_H_*/
\ No newline at end of file
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// lcd_commands.h contains defines mapping onto the commands accepted by the\r
-// Sitronix ST7637 LCD Controller/driver used on the RDB1768 development board.//\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-#ifndef LCD_COMMANDS_H_\r
-#define LCD_COMMANDS_H_\r
-\r
-#define DD_NOP 0x00\r
-#define DD_SWRESET 0x01 //SW reset the display\r
-#define DD_SLPIN 0x10 //Sleep in and booster off\r
-#define DD_SLPOUT 0x11 //Sleep out and booster on\r
-#define DD_NORON 0x13 //Partial mode off (Normal mode on)\r
-#define DD_DISPOFF 0x28 //Display Off\r
-#define DD_DISPON 0x29 //Display On\r
-#define DD_CASET 0x2a //Column address set\r
-#define DD_RASET 0x2b //Row address set\r
-#define DD_RAMWR 0x2c //Memory write\r
-#define DD_MADCTR 0x36 //Memory Data Access Control\r
-#define DD_COLORMOD 0x3a //Set the color mode for the display \r
-#define DD_ColScanDir 0xb7 //Set the column scanning direction\r
-#define DD_VopSet 0xc0 //LCD supply voltage set\r
-#define DD_BiasSel 0xc3 //Bias selection\r
-#define DD_BstMbpXSel 0xc4 //Booster setting\r
-#define DD_AUTOLOADSET 0xd7 //Control auto load of ROM data\r
-#define DD_EPCTIN 0xe0 //OTP control RD/WR\r
-#define DD_EPREAD 0xe3 //OTP read\r
-#define DD_EPCTOUT 0xe1 //OTP control cancel\r
-\r
-\r
-#endif /*LCD_COMMANDS_H_*/\r
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// lcd_driver.c contains the lowest level access routines for the Sitronix\r
-// ST7637 LCD Controller/driver used on the RDB1768 development board.\r
-//\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-#include "NXP/LPC17xx/LPC17xx.h"\r
-#include "lcd_driver.h"\r
-#include "lcd_commands.h"\r
-\r
-// Bits within GPIO port 2 used for LCD driver\r
-#define LCD_CSB_PIN (1<<13)\r
-#define LCD_A0_PIN (1<<8)\r
-#define LCD_WR_PIN (1<<11)\r
-#define LCD_RD_PIN (1<<12)\r
-#define LCD_DATA_PIN 0xff\r
-\r
-// Bit within GPIO port 3 used for LCD driver\r
-#define LCD_RESB_PIN (1<<25)\r
-\r
-// Bits to configure as outputs for driving LCD\r
-#define LCD_PORT2_DIRECTIONS (LCD_CSB_PIN | LCD_A0_PIN | LCD_WR_PIN | LCD_RD_PIN | LCD_DATA_PIN)\r
-#define LCD_PORT3_DIRECTIONS (LCD_RESB_PIN)\r
-\r
-// Define names for GPIO port 2 and 3 registers to better indicate in code\r
-// the operation being carried out on the LCD driver hardware.\r
-#define LCD_DATA_CLR FIO2CLR\r
-#define LCD_DATA_SET FIO2SET\r
-\r
-#define LCD_CSB_CLR FIO2CLR\r
-#define LCD_CSB_SET FIO2SET\r
-\r
-#define LCD_RESB_CLR FIO3CLR\r
-#define LCD_RESB_SET FIO3SET\r
-\r
-#define LCD_A0_CLR FIO2CLR\r
-#define LCD_A0_SET FIO2SET\r
-\r
-#define LCD_WR_CLR FIO2CLR\r
-#define LCD_WR_SET FIO2SET\r
-\r
-#define LCD_RD_CLR FIO2CLR\r
-#define LCD_RD_SET FIO2SET\r
-\r
-// Routine to write data to LCD driver. Normally called in combination\r
-// with LCDdriver_WriteCom() routine\r
-void LCDdriver_WriteData(unsigned char LCD_Data)\r
-{\r
- LCD_DATA_CLR = LCD_DATA_PIN; \r
- LCD_DATA_SET = LCD_Data;\r
- LCD_CSB_CLR = LCD_CSB_PIN;\r
- LCD_WR_CLR = LCD_WR_PIN;\r
- LCD_WR_SET = LCD_WR_PIN;\r
- LCD_CSB_SET = LCD_CSB_PIN;\r
-}\r
-\r
-// Routine to configure set LCD driver to accept particular command.\r
-// A call to this routine will normally be followed by a call\r
-// to LCDdriver_WriteData() to transfer appropriate parameters to driver.\r
-void LCDdriver_WriteCom(unsigned char LCD_Command)\r
-{\r
- LCD_DATA_CLR = LCD_DATA_PIN; \r
- LCD_DATA_SET = LCD_Command;\r
- LCD_A0_CLR = LCD_A0_PIN;\r
- LCD_CSB_CLR = LCD_CSB_PIN;\r
- LCD_WR_CLR = LCD_WR_PIN;\r
- LCD_WR_SET = LCD_WR_PIN;\r
- LCD_CSB_SET = LCD_CSB_PIN;\r
- LCD_A0_SET = LCD_A0_PIN;\r
-}\r
-\r
-// Function to add short delays in writing things to the LCD.\r
-void ms_delay(int n)\r
-{\r
- volatile int d;\r
- for (d=0; d<n*3000; d++){}\r
-}\r
-\r
-\r
-// Initialize GPIO connection to the LCD driver\r
-void LCDdriver_ConfigGPIOtoLCD(void)\r
-{\r
- // set direction to outputs \r
- FIO2DIR |= LCD_PORT2_DIRECTIONS; \r
- FIO3DIR |= LCD_PORT3_DIRECTIONS;\r
- \r
- // Set GPIO outputs connected to LCD to default values\r
- LCD_CSB_SET = LCD_CSB_PIN;\r
- LCD_A0_SET = LCD_A0_PIN;\r
- LCD_WR_SET = LCD_WR_PIN;\r
- LCD_RD_SET = LCD_RD_PIN;\r
- LCD_RESB_SET = LCD_RESB_PIN;\r
- LCD_DATA_CLR = 0xff; // data bus to zero \r
-\r
-}\r
-\r
-\r
-// Initialisation routine to set up LCD\r
-void LCDdriver_initialisation(void)\r
-{\r
- int i; // temp loop variable\r
- \r
- LCDdriver_ConfigGPIOtoLCD(); // Initialize the GPIO for the display\r
-\r
- LCDdriver_WriteCom(DD_SWRESET); // SW reset\r
- ms_delay(120); // Small delay\r
-\r
- LCDdriver_WriteCom(DD_AUTOLOADSET); // disable auto loading of mask rom data\r
- LCDdriver_WriteData(0xBF);\r
-\r
- LCDdriver_WriteCom(DD_EPCTIN); // OTP control mode=read\r
- LCDdriver_WriteData(0x00);\r
- ms_delay(10); // Small delay\r
-\r
- LCDdriver_WriteCom(DD_EPREAD); // Start the OTP read.\r
- ms_delay(20); // Small delay\r
-\r
- LCDdriver_WriteCom(DD_EPCTOUT); // Cancel the OTP read (20ms should have been enough)\r
-\r
- LCDdriver_WriteCom(DD_DISPOFF); // display off\r
-\r
- LCDdriver_WriteCom(DD_SLPOUT); // Exit sleep mode.\r
- ms_delay(50); // Small delay\r
-\r
- LCDdriver_WriteCom(DD_VopSet); // set LCD operating voltage to 14V.\r
- LCDdriver_WriteData(0x04);\r
- LCDdriver_WriteData(0x01);\r
-\r
- LCDdriver_WriteCom(DD_BiasSel); // Select an LCD bias voltage ratio of 1/12.\r
- LCDdriver_WriteData(0x00);\r
-\r
- LCDdriver_WriteCom(DD_BstMbpXSel); // x8 booster circuit on\r
- LCDdriver_WriteData(0x07);\r
-\r
- LCDdriver_WriteCom(DD_ColScanDir); // Invert the column scan direction for the panel.\r
- LCDdriver_WriteData(0xC0);\r
-\r
- LCDdriver_WriteCom(DD_COLORMOD); // 16bpp, 5-6-5 data input mode.\r
- LCDdriver_WriteData(0x05);\r
- \r
- LCDdriver_WriteCom(DD_MADCTR); // mem scan direction\r
- LCDdriver_WriteData(0x00);\r
- \r
- LCDdriver_WriteCom(DD_DISPON); // display on\r
-\r
- // Now Clear the Screen\r
- LCDdriver_WriteCom(DD_CASET);\r
- LCDdriver_WriteData(0x00);\r
- LCDdriver_WriteData(0x7F);\r
-\r
- LCDdriver_WriteCom(DD_RASET);\r
- LCDdriver_WriteData(0x01);\r
- LCDdriver_WriteData(0x80);\r
-\r
- LCDdriver_WriteCom(DD_RAMWR);\r
- for(i = 0; i < (128 * 128); i++)\r
- {\r
- LCDdriver_WriteData(0x00);\r
- LCDdriver_WriteData(0x00);\r
- }\r
-\r
- LCDdriver_WriteCom(DD_NORON); // normal operation mode\r
-}\r
-\r
-\r
-\r
-\r
-\r
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// lcd_driver.h - Header file for driver for the lowest level access routines\r
-// for the Sitronix ST7637 LCD Controller/driver used on the RDB1768 \r
-// development board.\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-\r
-#ifndef LCD_DRIVER_H_\r
-#define LCD_DRIVER_H_\r
-\r
-void LCDdriver_WriteData(unsigned char LCD_Data);\r
-void LCDdriver_WriteCom(unsigned char LCD_Command);\r
-void LCDdriver_initialisation(void);\r
-\r
-#endif /*LCD_DRIVER_H_*/\r
+++ /dev/null
-/*******************************************************************************************\r
- Data table provides the bitmap data of each character.\r
-\r
- To get the starting data offset of character 'A', you can use the following expression:\r
-\r
- const unsigned char index = index_table['A'];\r
- const unsigned int offset = offset_table[index];\r
- const unsigned char *pData = data_table[offset];\r
-\r
- *******************************************************************************************/\r
-const unsigned char font_data_table[] = {\r
-\r
-/* character 0x0020 (' '): (width=8, offset=0) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0021 ('!'): (width=8, offset=15) */\r
-0x00, 0x00, 0x00, 0x18, 0x3C, 0x3C, 0x3C, 0x18, \r
-0x18, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0022 ('"'): (width=8, offset=30) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0023 ('#'): (width=8, offset=45) */\r
-0x00, 0x00, 0x00, 0x36, 0x36, 0x7F, 0x36, 0x36, \r
-0x36, 0x7F, 0x36, 0x36, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0024 ('$'): (width=8, offset=60) */\r
-0x00, 0x18, 0x18, 0x3C, 0x66, 0x60, 0x30, 0x18, \r
-0x0C, 0x06, 0x66, 0x3C, 0x18, 0x18, 0x00, \r
-\r
-/* character 0x0025 ('%'): (width=8, offset=75) */\r
-0x00, 0x00, 0x70, 0xD8, 0xDA, 0x76, 0x0C, 0x18, \r
-0x30, 0x6E, 0x5B, 0x1B, 0x0E, 0x00, 0x00, \r
-\r
-/* character 0x0026 ('&'): (width=8, offset=90) */\r
-0x00, 0x00, 0x00, 0x38, 0x6C, 0x6C, 0x38, 0x60, \r
-0x6F, 0x66, 0x66, 0x3B, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0027 ('''): (width=8, offset=105) */\r
-0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0028 ('('): (width=8, offset=120) */\r
-0x00, 0x00, 0x00, 0x0C, 0x18, 0x18, 0x30, 0x30, \r
-0x30, 0x30, 0x30, 0x18, 0x18, 0x0C, 0x00, \r
-\r
-/* character 0x0029 (')'): (width=8, offset=135) */\r
-0x00, 0x00, 0x00, 0x30, 0x18, 0x18, 0x0C, 0x0C, \r
-0x0C, 0x0C, 0x0C, 0x18, 0x18, 0x30, 0x00, \r
-\r
-/* character 0x002A ('*'): (width=8, offset=150) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x36, 0x1C, 0x7F, \r
-0x1C, 0x36, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x002B ('+'): (width=8, offset=165) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x18, 0x7E, \r
-0x18, 0x18, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x002C (','): (width=8, offset=180) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x1C, 0x1C, 0x0C, 0x18, 0x00, \r
-\r
-/* character 0x002D ('-'): (width=8, offset=195) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x002E ('.'): (width=8, offset=210) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x1C, 0x1C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x002F ('/'): (width=8, offset=225) */\r
-0x00, 0x00, 0x00, 0x06, 0x06, 0x0C, 0x0C, 0x18, \r
-0x18, 0x30, 0x30, 0x60, 0x60, 0x00, 0x00, \r
-\r
-/* character 0x0030 ('0'): (width=8, offset=240) */\r
-0x00, 0x00, 0x00, 0x1E, 0x33, 0x37, 0x37, 0x33, \r
-0x3B, 0x3B, 0x33, 0x1E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0031 ('1'): (width=8, offset=255) */\r
-0x00, 0x00, 0x00, 0x0C, 0x1C, 0x7C, 0x0C, 0x0C, \r
-0x0C, 0x0C, 0x0C, 0x0C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0032 ('2'): (width=8, offset=270) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x06, 0x0C, \r
-0x18, 0x30, 0x60, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0033 ('3'): (width=8, offset=285) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x06, 0x1C, \r
-0x06, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0034 ('4'): (width=8, offset=300) */\r
-0x00, 0x00, 0x00, 0x30, 0x30, 0x36, 0x36, 0x36, \r
-0x66, 0x7F, 0x06, 0x06, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0035 ('5'): (width=8, offset=315) */\r
-0x00, 0x00, 0x00, 0x7E, 0x60, 0x60, 0x60, 0x7C, \r
-0x06, 0x06, 0x0C, 0x78, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0036 ('6'): (width=8, offset=330) */\r
-0x00, 0x00, 0x00, 0x1C, 0x18, 0x30, 0x7C, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0037 ('7'): (width=8, offset=345) */\r
-0x00, 0x00, 0x00, 0x7E, 0x06, 0x0C, 0x0C, 0x18, \r
-0x18, 0x30, 0x30, 0x30, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0038 ('8'): (width=8, offset=360) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x76, 0x3C, \r
-0x6E, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0039 ('9'): (width=8, offset=375) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x66, 0x66, \r
-0x3E, 0x0C, 0x18, 0x38, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x003A (':'): (width=8, offset=390) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x1C, 0x00, \r
-0x00, 0x00, 0x1C, 0x1C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x003B (';'): (width=8, offset=405) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x1C, 0x1C, 0x00, \r
-0x00, 0x00, 0x1C, 0x1C, 0x0C, 0x18, 0x00, \r
-\r
-/* character 0x003C ('<'): (width=8, offset=420) */\r
-0x00, 0x00, 0x00, 0x06, 0x0C, 0x18, 0x30, 0x60, \r
-0x30, 0x18, 0x0C, 0x06, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x003D ('='): (width=8, offset=435) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x00, \r
-0x7E, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x003E ('>'): (width=8, offset=450) */\r
-0x00, 0x00, 0x00, 0x60, 0x30, 0x18, 0x0C, 0x06, \r
-0x0C, 0x18, 0x30, 0x60, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x003F ('?'): (width=8, offset=465) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x0C, 0x18, \r
-0x18, 0x00, 0x18, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0040 ('@'): (width=8, offset=480) */\r
-0x00, 0x00, 0x00, 0x7E, 0xC3, 0xC3, 0xCF, 0xDB, \r
-0xDB, 0xCF, 0xC0, 0x7F, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0041 ('A'): (width=8, offset=495) */\r
-0x00, 0x00, 0x00, 0x18, 0x3C, 0x66, 0x66, 0x66, \r
-0x7E, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0042 ('B'): (width=8, offset=510) */\r
-0x00, 0x00, 0x00, 0x7C, 0x66, 0x66, 0x66, 0x7C, \r
-0x66, 0x66, 0x66, 0x7C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0043 ('C'): (width=8, offset=525) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x60, 0x60, \r
-0x60, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0044 ('D'): (width=8, offset=540) */\r
-0x00, 0x00, 0x00, 0x78, 0x6C, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x6C, 0x78, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0045 ('E'): (width=8, offset=555) */\r
-0x00, 0x00, 0x00, 0x7E, 0x60, 0x60, 0x60, 0x7C, \r
-0x60, 0x60, 0x60, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0046 ('F'): (width=8, offset=570) */\r
-0x00, 0x00, 0x00, 0x7E, 0x60, 0x60, 0x60, 0x7C, \r
-0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0047 ('G'): (width=8, offset=585) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x60, 0x60, \r
-0x6E, 0x66, 0x66, 0x3E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0048 ('H'): (width=8, offset=600) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x7E, \r
-0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0049 ('I'): (width=8, offset=615) */\r
-0x00, 0x00, 0x00, 0x3C, 0x18, 0x18, 0x18, 0x18, \r
-0x18, 0x18, 0x18, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004A ('J'): (width=8, offset=630) */\r
-0x00, 0x00, 0x00, 0x06, 0x06, 0x06, 0x06, 0x06, \r
-0x06, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004B ('K'): (width=8, offset=645) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x6C, 0x6C, 0x78, \r
-0x6C, 0x6C, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004C ('L'): (width=8, offset=660) */\r
-0x00, 0x00, 0x00, 0x60, 0x60, 0x60, 0x60, 0x60, \r
-0x60, 0x60, 0x60, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004D ('M'): (width=8, offset=675) */\r
-0x00, 0x00, 0x00, 0x63, 0x63, 0x77, 0x6B, 0x6B, \r
-0x6B, 0x63, 0x63, 0x63, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004E ('N'): (width=8, offset=690) */\r
-0x00, 0x00, 0x00, 0x63, 0x63, 0x73, 0x7B, 0x6F, \r
-0x67, 0x63, 0x63, 0x63, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x004F ('O'): (width=8, offset=705) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0050 ('P'): (width=8, offset=720) */\r
-0x00, 0x00, 0x00, 0x7C, 0x66, 0x66, 0x66, 0x7C, \r
-0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0051 ('Q'): (width=8, offset=735) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x0C, 0x06, 0x00, \r
-\r
-/* character 0x0052 ('R'): (width=8, offset=750) */\r
-0x00, 0x00, 0x00, 0x7C, 0x66, 0x66, 0x66, 0x7C, \r
-0x6C, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0053 ('S'): (width=8, offset=765) */\r
-0x00, 0x00, 0x00, 0x3C, 0x66, 0x60, 0x30, 0x18, \r
-0x0C, 0x06, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0054 ('T'): (width=8, offset=780) */\r
-0x00, 0x00, 0x00, 0x7E, 0x18, 0x18, 0x18, 0x18, \r
-0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0055 ('U'): (width=8, offset=795) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0056 ('V'): (width=8, offset=810) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x3C, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0057 ('W'): (width=8, offset=825) */\r
-0x00, 0x00, 0x00, 0x63, 0x63, 0x63, 0x6B, 0x6B, \r
-0x6B, 0x36, 0x36, 0x36, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0058 ('X'): (width=8, offset=840) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x34, 0x18, 0x18, \r
-0x2C, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0059 ('Y'): (width=8, offset=855) */\r
-0x00, 0x00, 0x00, 0x66, 0x66, 0x66, 0x66, 0x3C, \r
-0x18, 0x18, 0x18, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x005A ('Z'): (width=8, offset=870) */\r
-0x00, 0x00, 0x00, 0x7E, 0x06, 0x06, 0x0C, 0x18, \r
-0x30, 0x60, 0x60, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x005B ('['): (width=8, offset=885) */\r
-0x00, 0x00, 0x00, 0x3C, 0x30, 0x30, 0x30, 0x30, \r
-0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x3C, \r
-\r
-/* character 0x005C ('\'): (width=8, offset=900) */\r
-0x00, 0x00, 0x00, 0x60, 0x60, 0x30, 0x30, 0x18, \r
-0x18, 0x0C, 0x0C, 0x06, 0x06, 0x00, 0x00, \r
-\r
-/* character 0x005D (']'): (width=8, offset=915) */\r
-0x00, 0x00, 0x00, 0x3C, 0x0C, 0x0C, 0x0C, 0x0C, \r
-0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x3C, \r
-\r
-/* character 0x005E ('^'): (width=8, offset=930) */\r
-0x00, 0x18, 0x3C, 0x66, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x005F ('_'): (width=8, offset=945) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, \r
-\r
-/* character 0x0060 ('`'): (width=8, offset=960) */\r
-0x00, 0x38, 0x18, 0x0C, 0x00, 0x00, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0061 ('a'): (width=8, offset=975) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x06, 0x06, \r
-0x3E, 0x66, 0x66, 0x3E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0062 ('b'): (width=8, offset=990) */\r
-0x00, 0x00, 0x00, 0x60, 0x60, 0x7C, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x7C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0063 ('c'): (width=8, offset=1005) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x66, 0x60, \r
-0x60, 0x60, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0064 ('d'): (width=8, offset=1020) */\r
-0x00, 0x00, 0x00, 0x06, 0x06, 0x3E, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0065 ('e'): (width=8, offset=1035) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, \r
-0x7E, 0x60, 0x60, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0066 ('f'): (width=8, offset=1050) */\r
-0x00, 0x00, 0x00, 0x1E, 0x30, 0x30, 0x30, 0x7E, \r
-0x30, 0x30, 0x30, 0x30, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0067 ('g'): (width=8, offset=1065) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3E, 0x06, 0x06, 0x7C, \r
-\r
-/* character 0x0068 ('h'): (width=8, offset=1080) */\r
-0x00, 0x00, 0x00, 0x60, 0x60, 0x7C, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0069 ('i'): (width=8, offset=1095) */\r
-0x00, 0x00, 0x18, 0x18, 0x00, 0x78, 0x18, 0x18, \r
-0x18, 0x18, 0x18, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x006A ('j'): (width=8, offset=1110) */\r
-0x00, 0x00, 0x0C, 0x0C, 0x00, 0x3C, 0x0C, 0x0C, \r
-0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x0C, 0x78, \r
-\r
-/* character 0x006B ('k'): (width=8, offset=1125) */\r
-0x00, 0x00, 0x00, 0x60, 0x60, 0x66, 0x66, 0x6C, \r
-0x78, 0x6C, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x006C ('l'): (width=8, offset=1140) */\r
-0x00, 0x00, 0x00, 0x78, 0x18, 0x18, 0x18, 0x18, \r
-0x18, 0x18, 0x18, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x006D ('m'): (width=8, offset=1155) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x6B, 0x6B, \r
-0x6B, 0x6B, 0x6B, 0x63, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x006E ('n'): (width=8, offset=1170) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x006F ('o'): (width=8, offset=1185) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3C, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0070 ('p'): (width=8, offset=1200) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x7C, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x7C, 0x60, 0x60, 0x60, \r
-\r
-/* character 0x0071 ('q'): (width=8, offset=1215) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3E, 0x06, 0x06, 0x06, \r
-\r
-/* character 0x0072 ('r'): (width=8, offset=1230) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x6E, 0x70, \r
-0x60, 0x60, 0x60, 0x60, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0073 ('s'): (width=8, offset=1245) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x3E, 0x60, 0x60, \r
-0x3C, 0x06, 0x06, 0x7C, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0074 ('t'): (width=8, offset=1260) */\r
-0x00, 0x00, 0x00, 0x30, 0x30, 0x7E, 0x30, 0x30, \r
-0x30, 0x30, 0x30, 0x1E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0075 ('u'): (width=8, offset=1275) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0076 ('v'): (width=8, offset=1290) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x3C, 0x18, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0077 ('w'): (width=8, offset=1305) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x63, 0x6B, 0x6B, \r
-0x6B, 0x6B, 0x36, 0x36, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0078 ('x'): (width=8, offset=1320) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x3C, \r
-0x18, 0x3C, 0x66, 0x66, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x0079 ('y'): (width=8, offset=1335) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x66, 0x66, 0x66, \r
-0x66, 0x66, 0x66, 0x3C, 0x0C, 0x18, 0xF0, \r
-\r
-/* character 0x007A ('z'): (width=8, offset=1350) */\r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x7E, 0x06, 0x0C, \r
-0x18, 0x30, 0x60, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x007B ('{'): (width=8, offset=1365) */\r
-0x00, 0x00, 0x00, 0x0C, 0x18, 0x18, 0x18, 0x30, \r
-0x60, 0x30, 0x18, 0x18, 0x18, 0x0C, 0x00, \r
-\r
-/* character 0x007C ('|'): (width=8, offset=1380) */\r
-0x00, 0x00, 0x00, 0x18, 0x18, 0x18, 0x18, 0x18, \r
-0x18, 0x18, 0x18, 0x18, 0x18, 0x18, 0x18, \r
-\r
-/* character 0x007D ('}'): (width=8, offset=1395) */\r
-0x00, 0x00, 0x00, 0x30, 0x18, 0x18, 0x18, 0x0C, \r
-0x06, 0x0C, 0x18, 0x18, 0x18, 0x30, 0x00, \r
-\r
-/* character 0x007E ('~'): (width=8, offset=1410) */\r
-0x00, 0x00, 0x00, 0x71, 0xDB, 0x8E, 0x00, 0x00, \r
-0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \r
-\r
-/* character 0x007F ('\7f'): (width=8, offset=1425) */\r
-0x00, 0x00, 0x00, 0x7E, 0x7E, 0x7E, 0x7E, 0x7E, \r
-0x7E, 0x7E, 0x7E, 0x7E, 0x00, 0x00, 0x00, \r
-\r
-};\r
-\r
-\r
-/*******************************************************************************************\r
- Index table is used to find the mapping index of a character.\r
-\r
- If you can find a simple mathematical expression for index mapping, you can use that.\r
- If you do not have such a mathematical expression, this index table is just for you.\r
-\r
- To get the index of character 'A', you can use the following expression:\r
-\r
- const unsigned char index = index_table['A'];\r
-\r
- *******************************************************************************************/\r
-const unsigned char font_index_table[] = {\r
-/* index hexcode decimal char */\r
-/* ===== ======= ======= ==== */\r
- 0, /* 00 0 . */\r
- 0, /* 01 1 . */\r
- 0, /* 02 2 . */\r
- 0, /* 03 3 . */\r
- 0, /* 04 4 . */\r
- 0, /* 05 5 . */\r
- 0, /* 06 6 . */\r
- 0, /* 07 7 . */\r
- 0, /* 08 8 . */\r
- 0, /* 09 9 . */\r
- 0, /* 0A 10 . */\r
- 0, /* 0B 11 . */\r
- 0, /* 0C 12 . */\r
- 0, /* 0D 13 . */\r
- 0, /* 0E 14 . */\r
- 0, /* 0F 15 . */\r
- 0, /* 10 16 . */\r
- 0, /* 11 17 . */\r
- 0, /* 12 18 . */\r
- 0, /* 13 19 . */\r
- 0, /* 14 20 . */\r
- 0, /* 15 21 . */\r
- 0, /* 16 22 . */\r
- 0, /* 17 23 . */\r
- 0, /* 18 24 . */\r
- 0, /* 19 25 . */\r
- 0, /* 1A 26 . */\r
- 0, /* 1B 27 . */\r
- 0, /* 1C 28 . */\r
- 0, /* 1D 29 . */\r
- 0, /* 1E 30 . */\r
- 0, /* 1F 31 . */\r
- 0, /* 20 32 */\r
- 1, /* 21 33 ! */\r
- 2, /* 22 34 " */\r
- 3, /* 23 35 # */\r
- 4, /* 24 36 $ */\r
- 5, /* 25 37 % */\r
- 6, /* 26 38 & */\r
- 7, /* 27 39 ' */\r
- 8, /* 28 40 ( */\r
- 9, /* 29 41 ) */\r
- 10, /* 2A 42 * */\r
- 11, /* 2B 43 + */\r
- 12, /* 2C 44 , */\r
- 13, /* 2D 45 - */\r
- 14, /* 2E 46 . */\r
- 15, /* 2F 47 / */\r
- 16, /* 30 48 0 */\r
- 17, /* 31 49 1 */\r
- 18, /* 32 50 2 */\r
- 19, /* 33 51 3 */\r
- 20, /* 34 52 4 */\r
- 21, /* 35 53 5 */\r
- 22, /* 36 54 6 */\r
- 23, /* 37 55 7 */\r
- 24, /* 38 56 8 */\r
- 25, /* 39 57 9 */\r
- 26, /* 3A 58 : */\r
- 27, /* 3B 59 ; */\r
- 28, /* 3C 60 < */\r
- 29, /* 3D 61 = */\r
- 30, /* 3E 62 > */\r
- 31, /* 3F 63 ? */\r
- 32, /* 40 64 @ */\r
- 33, /* 41 65 A */\r
- 34, /* 42 66 B */\r
- 35, /* 43 67 C */\r
- 36, /* 44 68 D */\r
- 37, /* 45 69 E */\r
- 38, /* 46 70 F */\r
- 39, /* 47 71 G */\r
- 40, /* 48 72 H */\r
- 41, /* 49 73 I */\r
- 42, /* 4A 74 J */\r
- 43, /* 4B 75 K */\r
- 44, /* 4C 76 L */\r
- 45, /* 4D 77 M */\r
- 46, /* 4E 78 N */\r
- 47, /* 4F 79 O */\r
- 48, /* 50 80 P */\r
- 49, /* 51 81 Q */\r
- 50, /* 52 82 R */\r
- 51, /* 53 83 S */\r
- 52, /* 54 84 T */\r
- 53, /* 55 85 U */\r
- 54, /* 56 86 V */\r
- 55, /* 57 87 W */\r
- 56, /* 58 88 X */\r
- 57, /* 59 89 Y */\r
- 58, /* 5A 90 Z */\r
- 59, /* 5B 91 [ */\r
- 60, /* 5C 92 \ */\r
- 61, /* 5D 93 ] */\r
- 62, /* 5E 94 ^ */\r
- 63, /* 5F 95 _ */\r
- 64, /* 60 96 ` */\r
- 65, /* 61 97 a */\r
- 66, /* 62 98 b */\r
- 67, /* 63 99 c */\r
- 68, /* 64 100 d */\r
- 69, /* 65 101 e */\r
- 70, /* 66 102 f */\r
- 71, /* 67 103 g */\r
- 72, /* 68 104 h */\r
- 73, /* 69 105 i */\r
- 74, /* 6A 106 j */\r
- 75, /* 6B 107 k */\r
- 76, /* 6C 108 l */\r
- 77, /* 6D 109 m */\r
- 78, /* 6E 110 n */\r
- 79, /* 6F 111 o */\r
- 80, /* 70 112 p */\r
- 81, /* 71 113 q */\r
- 82, /* 72 114 r */\r
- 83, /* 73 115 s */\r
- 84, /* 74 116 t */\r
- 85, /* 75 117 u */\r
- 86, /* 76 118 v */\r
- 87, /* 77 119 w */\r
- 88, /* 78 120 x */\r
- 89, /* 79 121 y */\r
- 90, /* 7A 122 z */\r
- 91, /* 7B 123 { */\r
- 92, /* 7C 124 | */\r
- 93, /* 7D 125 } */\r
- 94, /* 7E 126 ~ */\r
- 95, /* 7F 127 \7f */\r
- 0, /* 80 128 ? */\r
- 0, /* 81 129 � */\r
- 0, /* 82 130 ? */\r
- 0, /* 83 131 ? */\r
- 0, /* 84 132 ? */\r
- 0, /* 85 133 ? */\r
- 0, /* 86 134 ? */\r
- 0, /* 87 135 ? */\r
- 0, /* 88 136 ? */\r
- 0, /* 89 137 ? */\r
- 0, /* 8A 138 ? */\r
- 0, /* 8B 139 ? */\r
- 0, /* 8C 140 ? */\r
- 0, /* 8D 141 � */\r
- 0, /* 8E 142 ? */\r
- 0, /* 8F 143 � */\r
- 0, /* 90 144 � */\r
- 0, /* 91 145 ? */\r
- 0, /* 92 146 ? */\r
- 0, /* 93 147 ? */\r
- 0, /* 94 148 ? */\r
- 0, /* 95 149 ? */\r
- 0, /* 96 150 ? */\r
- 0, /* 97 151 ? */\r
- 0, /* 98 152 ? */\r
- 0, /* 99 153 ? */\r
- 0, /* 9A 154 ? */\r
- 0, /* 9B 155 ? */\r
- 0, /* 9C 156 ? */\r
- 0, /* 9D 157 � */\r
- 0, /* 9E 158 ? */\r
- 0, /* 9F 159 ? */\r
- 0, /* A0 160 � */\r
- 0, /* A1 161 � */\r
- 0, /* A2 162 � */\r
- 0, /* A3 163 � */\r
- 0, /* A4 164 � */\r
- 0, /* A5 165 � */\r
- 0, /* A6 166 � */\r
- 0, /* A7 167 � */\r
- 0, /* A8 168 � */\r
- 0, /* A9 169 � */\r
- 0, /* AA 170 � */\r
- 0, /* AB 171 � */\r
- 0, /* AC 172 � */\r
- 0, /* AD 173 � */\r
- 0, /* AE 174 � */\r
- 0, /* AF 175 � */\r
- 0, /* B0 176 � */\r
- 0, /* B1 177 � */\r
- 0, /* B2 178 � */\r
- 0, /* B3 179 � */\r
- 0, /* B4 180 � */\r
- 0, /* B5 181 � */\r
- 0, /* B6 182 � */\r
- 0, /* B7 183 � */\r
- 0, /* B8 184 � */\r
- 0, /* B9 185 � */\r
- 0, /* BA 186 � */\r
- 0, /* BB 187 � */\r
- 0, /* BC 188 � */\r
- 0, /* BD 189 � */\r
- 0, /* BE 190 � */\r
- 0, /* BF 191 � */\r
- 0, /* C0 192 � */\r
- 0, /* C1 193 � */\r
- 0, /* C2 194 � */\r
- 0, /* C3 195 � */\r
- 0, /* C4 196 � */\r
- 0, /* C5 197 � */\r
- 0, /* C6 198 � */\r
- 0, /* C7 199 � */\r
- 0, /* C8 200 � */\r
- 0, /* C9 201 � */\r
- 0, /* CA 202 � */\r
- 0, /* CB 203 � */\r
- 0, /* CC 204 � */\r
- 0, /* CD 205 � */\r
- 0, /* CE 206 � */\r
- 0, /* CF 207 � */\r
- 0, /* D0 208 � */\r
- 0, /* D1 209 � */\r
- 0, /* D2 210 � */\r
- 0, /* D3 211 � */\r
- 0, /* D4 212 � */\r
- 0, /* D5 213 � */\r
- 0, /* D6 214 � */\r
- 0, /* D7 215 � */\r
- 0, /* D8 216 � */\r
- 0, /* D9 217 � */\r
- 0, /* DA 218 � */\r
- 0, /* DB 219 � */\r
- 0, /* DC 220 � */\r
- 0, /* DD 221 � */\r
- 0, /* DE 222 � */\r
- 0, /* DF 223 � */\r
- 0, /* E0 224 � */\r
- 0, /* E1 225 � */\r
- 0, /* E2 226 � */\r
- 0, /* E3 227 � */\r
- 0, /* E4 228 � */\r
- 0, /* E5 229 � */\r
- 0, /* E6 230 � */\r
- 0, /* E7 231 � */\r
- 0, /* E8 232 � */\r
- 0, /* E9 233 � */\r
- 0, /* EA 234 � */\r
- 0, /* EB 235 � */\r
- 0, /* EC 236 � */\r
- 0, /* ED 237 � */\r
- 0, /* EE 238 � */\r
- 0, /* EF 239 � */\r
- 0, /* F0 240 � */\r
- 0, /* F1 241 � */\r
- 0, /* F2 242 � */\r
- 0, /* F3 243 � */\r
- 0, /* F4 244 � */\r
- 0, /* F5 245 � */\r
- 0, /* F6 246 � */\r
- 0, /* F7 247 � */\r
- 0, /* F8 248 � */\r
- 0, /* F9 249 � */\r
- 0, /* FA 250 � */\r
- 0, /* FB 251 � */\r
- 0, /* FC 252 � */\r
- 0, /* FD 253 � */\r
- 0, /* FE 254 � */\r
- 0, /* FF 255 � */\r
-};\r
-\r
-\r
-\r
+++ /dev/null
-#ifndef __LPC17xx_H\r
-#define __LPC17xx_H\r
-\r
-/* System Control Block (SCB) includes:\r
- Flash Accelerator Module, Clocking and Power Control, External Interrupts,\r
- Reset, System Control and Status\r
-*/\r
-#define SCB_BASE_ADDR 0x400FC000\r
-\r
-#define PCONP_PCTIM0 0x00000002\r
-#define PCONP_PCTIM1 0x00000004\r
-#define PCONP_PCUART0 0x00000008\r
-#define PCONP_PCUART1 0x00000010\r
-#define PCONP_PCPWM1 0x00000040\r
-#define PCONP_PCI2C0 0x00000080\r
-#define PCONP_PCSPI 0x00000100\r
-#define PCONP_PCRTC 0x00000200\r
-#define PCONP_PCSSP1 0x00000400\r
-#define PCONP_PCAD 0x00001000\r
-#define PCONP_PCCAN1 0x00002000\r
-#define PCONP_PCCAN2 0x00004000\r
-#define PCONP_PCGPIO 0x00008000\r
-#define PCONP_PCRIT 0x00010000\r
-#define PCONP_PCMCPWM 0x00020000\r
-#define PCONP_PCQEI 0x00040000\r
-#define PCONP_PCI2C1 0x00080000\r
-#define PCONP_PCSSP0 0x00200000\r
-#define PCONP_PCTIM2 0x00400000\r
-#define PCONP_PCTIM3 0x00800000\r
-#define PCONP_PCUART2 0x01000000\r
-#define PCONP_PCUART3 0x02000000\r
-#define PCONP_PCI2C2 0x04000000\r
-#define PCONP_PCI2S 0x08000000\r
-#define PCONP_PCGPDMA 0x20000000\r
-#define PCONP_PCENET 0x40000000\r
-#define PCONP_PCUSB 0x80000000\r
-\r
-#define PLLCON_PLLE 0x00000001\r
-#define PLLCON_PLLC 0x00000002\r
-#define PLLCON_MASK 0x00000003\r
-\r
-#define PLLCFG_MUL1 0x00000000\r
-#define PLLCFG_MUL2 0x00000001\r
-#define PLLCFG_MUL3 0x00000002\r
-#define PLLCFG_MUL4 0x00000003\r
-#define PLLCFG_MUL5 0x00000004\r
-#define PLLCFG_MUL6 0x00000005\r
-#define PLLCFG_MUL7 0x00000006\r
-#define PLLCFG_MUL8 0x00000007\r
-#define PLLCFG_MUL9 0x00000008\r
-#define PLLCFG_MUL10 0x00000009\r
-#define PLLCFG_MUL11 0x0000000A\r
-#define PLLCFG_MUL12 0x0000000B\r
-#define PLLCFG_MUL13 0x0000000C\r
-#define PLLCFG_MUL14 0x0000000D\r
-#define PLLCFG_MUL15 0x0000000E\r
-#define PLLCFG_MUL16 0x0000000F\r
-#define PLLCFG_MUL17 0x00000010\r
-#define PLLCFG_MUL18 0x00000011\r
-#define PLLCFG_MUL19 0x00000012\r
-#define PLLCFG_MUL20 0x00000013\r
-#define PLLCFG_MUL21 0x00000014\r
-#define PLLCFG_MUL22 0x00000015\r
-#define PLLCFG_MUL23 0x00000016\r
-#define PLLCFG_MUL24 0x00000017\r
-#define PLLCFG_MUL25 0x00000018\r
-#define PLLCFG_MUL26 0x00000019\r
-#define PLLCFG_MUL27 0x0000001A\r
-#define PLLCFG_MUL28 0x0000001B\r
-#define PLLCFG_MUL29 0x0000001C\r
-#define PLLCFG_MUL30 0x0000001D\r
-#define PLLCFG_MUL31 0x0000001E\r
-#define PLLCFG_MUL32 0x0000001F\r
-#define PLLCFG_MUL33 0x00000020\r
-#define PLLCFG_MUL34 0x00000021\r
-#define PLLCFG_MUL35 0x00000022\r
-#define PLLCFG_MUL36 0x00000023\r
-\r
-#define PLLCFG_DIV1 0x00000000\r
-#define PLLCFG_DIV2 0x00010000\r
-#define PLLCFG_DIV3 0x00020000\r
-#define PLLCFG_DIV4 0x00030000\r
-#define PLLCFG_DIV5 0x00040000\r
-#define PLLCFG_DIV6 0x00050000\r
-#define PLLCFG_DIV7 0x00060000\r
-#define PLLCFG_DIV8 0x00070000\r
-#define PLLCFG_DIV9 0x00080000\r
-#define PLLCFG_DIV10 0x00090000\r
-#define PLLCFG_MASK 0x00FF7FFF\r
-\r
-#define PLLSTAT_MSEL_MASK 0x00007FFF\r
-#define PLLSTAT_NSEL_MASK 0x00FF0000\r
-\r
-#define PLLSTAT_PLLE (1 << 24)\r
-#define PLLSTAT_PLLC (1 << 25)\r
-#define PLLSTAT_PLOCK (1 << 26)\r
-\r
-#define PLLFEED_FEED1 0x000000AA\r
-#define PLLFEED_FEED2 0x00000055\r
-\r
-#define NVIC_IRQ_WDT 0u // IRQ0, exception number 16\r
-#define NVIC_IRQ_TIMER0 1u // IRQ1, exception number 17\r
-#define NVIC_IRQ_TIMER1 2u // IRQ2, exception number 18\r
-#define NVIC_IRQ_TIMER2 3u // IRQ3, exception number 19\r
-#define NVIC_IRQ_TIMER3 4u // IRQ4, exception number 20\r
-#define NVIC_IRQ_UART0 5u // IRQ5, exception number 21\r
-#define NVIC_IRQ_UART1 6u // IRQ6, exception number 22\r
-#define NVIC_IRQ_UART2 7u // IRQ7, exception number 23\r
-#define NVIC_IRQ_UART3 8u // IRQ8, exception number 24\r
-#define NVIC_IRQ_PWM1 9u // IRQ9, exception number 25\r
-#define NVIC_IRQ_I2C0 10u // IRQ10, exception number 26\r
-#define NVIC_IRQ_I2C1 11u // IRQ11, exception number 27\r
-#define NVIC_IRQ_I2C2 12u // IRQ12, exception number 28\r
-#define NVIC_IRQ_SPI 13u // IRQ13, exception number 29\r
-#define NVIC_IRQ_SSP0 14u // IRQ14, exception number 30\r
-#define NVIC_IRQ_SSP1 15u // IRQ15, exception number 31\r
-#define NVIC_IRQ_PLL0 16u // IRQ16, exception number 32\r
-#define NVIC_IRQ_RTC 17u // IRQ17, exception number 33\r
-#define NVIC_IRQ_EINT0 18u // IRQ18, exception number 34\r
-#define NVIC_IRQ_EINT1 19u // IRQ19, exception number 35\r
-#define NVIC_IRQ_EINT2 20u // IRQ20, exception number 36\r
-#define NVIC_IRQ_EINT3 21u // IRQ21, exception number 37\r
-#define NVIC_IRQ_ADC 22u // IRQ22, exception number 38\r
-#define NVIC_IRQ_BOD 23u // IRQ23, exception number 39\r
-#define NVIC_IRQ_USB 24u // IRQ24, exception number 40\r
-#define NVIC_IRQ_CAN 25u // IRQ25, exception number 41\r
-#define NVIC_IRQ_GPDMA 26u // IRQ26, exception number 42\r
-#define NVIC_IRQ_I2S 27u // IRQ27, exception number 43\r
-#define NVIC_IRQ_ETHERNET 28u // IRQ28, exception number 44\r
-#define NVIC_IRQ_RIT 29u // IRQ29, exception number 45\r
-#define NVIC_IRQ_MCPWM 30u // IRQ30, exception number 46\r
-#define NVIC_IRQ_QE 31u // IRQ31, exception number 47\r
-#define NVIC_IRQ_PLL1 32u // IRQ32, exception number 48\r
-#define NVIC_IRQ_USB_ACT 33u // IRQ33, exception number 49\r
-#define NVIC_IRQ_CAN_ACT 34u // IRQ34, exception number 50\r
-\r
-\r
-#endif // __LPC17xx_H\r
-\r
-\r
-#ifndef CMSIS_17xx_H\r
-#define CMSIS_17xx_H\r
-\r
-/******************************************************************************\r
- * @file: LPC17xx.h\r
- * @purpose: CMSIS Cortex-M3 Core Peripheral Access Layer Header File for\r
- * NXP LPC17xx Device Series\r
- * @version: V1.1\r
- * @date: 14th May 2009\r
- *----------------------------------------------------------------------------\r
- *\r
- * Copyright (C) 2008 ARM Limited. All rights reserved.\r
- *\r
- * ARM Limited (ARM) is supplying this software for use with Cortex-M3\r
- * processor based microcontrollers. This file can be freely distributed\r
- * within development tools that are supporting such ARM based processors.\r
- *\r
- * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
- * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
- * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
- * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
- *\r
- ******************************************************************************/\r
-\r
-\r
-#ifndef __LPC17xx_H__\r
-#define __LPC17xx_H__\r
-\r
-/*\r
- * ==========================================================================\r
- * ---------- Interrupt Number Definition -----------------------------------\r
- * ==========================================================================\r
- */\r
-\r
-typedef enum IRQn\r
-{\r
-/****** Cortex-M3 Processor Exceptions Numbers ***************************************************/\r
- NonMaskableInt_IRQn = -14, /*!< 2 Non Maskable Interrupt */\r
- MemoryManagement_IRQn = -12, /*!< 4 Cortex-M3 Memory Management Interrupt */\r
- BusFault_IRQn = -11, /*!< 5 Cortex-M3 Bus Fault Interrupt */\r
- UsageFault_IRQn = -10, /*!< 6 Cortex-M3 Usage Fault Interrupt */\r
- SVCall_IRQn = -5, /*!< 11 Cortex-M3 SV Call Interrupt */\r
- DebugMonitor_IRQn = -4, /*!< 12 Cortex-M3 Debug Monitor Interrupt */\r
- PendSV_IRQn = -2, /*!< 14 Cortex-M3 Pend SV Interrupt */\r
- SysTick_IRQn = -1, /*!< 15 Cortex-M3 System Tick Interrupt */\r
-\r
-/****** LPC17xx Specific Interrupt Numbers *******************************************************/\r
- WDT_IRQn = 0, /*!< Watchdog Timer Interrupt */\r
- TIMER0_IRQn = 1, /*!< Timer0 Interrupt */\r
- TIMER1_IRQn = 2, /*!< Timer1 Interrupt */\r
- TIMER2_IRQn = 3, /*!< Timer2 Interrupt */\r
- TIMER3_IRQn = 4, /*!< Timer3 Interrupt */\r
- UART0_IRQn = 5, /*!< UART0 Interrupt */\r
- UART1_IRQn = 6, /*!< UART1 Interrupt */\r
- UART2_IRQn = 7, /*!< UART2 Interrupt */\r
- UART3_IRQn = 8, /*!< UART3 Interrupt */\r
- PWM1_IRQn = 9, /*!< PWM1 Interrupt */\r
- I2C0_IRQn = 10, /*!< I2C0 Interrupt */\r
- I2C1_IRQn = 11, /*!< I2C1 Interrupt */\r
- I2C2_IRQn = 12, /*!< I2C2 Interrupt */\r
- SPI_IRQn = 13, /*!< SPI Interrupt */\r
- SSP0_IRQn = 14, /*!< SSP0 Interrupt */\r
- SSP1_IRQn = 15, /*!< SSP1 Interrupt */\r
- PLL0_IRQn = 16, /*!< PLL0 Lock (Main PLL) Interrupt */\r
- RTC_IRQn = 17, /*!< Real Time Clock Interrupt */\r
- EINT0_IRQn = 18, /*!< External Interrupt 0 Interrupt */\r
- EINT1_IRQn = 19, /*!< External Interrupt 1 Interrupt */\r
- EINT2_IRQn = 20, /*!< External Interrupt 2 Interrupt */\r
- EINT3_IRQn = 21, /*!< External Interrupt 3 Interrupt */\r
- ADC_IRQn = 22, /*!< A/D Converter Interrupt */\r
- BOD_IRQn = 23, /*!< Brown-Out Detect Interrupt */\r
- USB_IRQn = 24, /*!< USB Interrupt */\r
- CAN_IRQn = 25, /*!< CAN Interrupt */\r
- DMA_IRQn = 26, /*!< General Purpose DMA Interrupt */\r
- I2S_IRQn = 27, /*!< I2S Interrupt */\r
- ENET_IRQn = 28, /*!< Ethernet Interrupt */\r
- RIT_IRQn = 29, /*!< Repetitive Interrupt Timer Interrupt */\r
- MCPWM_IRQn = 30, /*!< Motor Control PWM Interrupt */\r
- QEI_IRQn = 31, /*!< Quadrature Encoder Interface Interrupt */\r
- PLL1_IRQn = 32, /*!< PLL1 Lock (USB PLL) Interrupt */\r
-} IRQn_Type;\r
-\r
-\r
-/*\r
- * ==========================================================================\r
- * ----------- Processor and Core Peripheral Section ------------------------\r
- * ==========================================================================\r
- */\r
-\r
-/* Configuration of the Cortex-M3 Processor and Core Peripherals */\r
-#define __MPU_PRESENT 1 /*!< MPU present or not */\r
-#define __NVIC_PRIO_BITS 5 /*!< Number of Bits used for Priority Levels */\r
-#define __Vendor_SysTickConfig 0 /*!< Set to 1 if different SysTick Config is used */\r
-\r
-\r
-//#include "..\core_cm3.h" /* Cortex-M3 processor and core peripherals */\r
-#include "core_cm3.h"\r
-#include "system_LPC17xx.h" /* System Header */\r
-\r
-\r
-\r
-/**\r
- * Initialize the system clock\r
- *\r
- * @param none\r
- * @return none\r
- *\r
- * @brief Setup the microcontroller system.\r
- * Initialize the System and update the SystemFrequency variable.\r
- */\r
-extern void SystemInit (void);\r
-\r
-\r
-/******************************************************************************/\r
-/* Device Specific Peripheral registers structures */\r
-/******************************************************************************/\r
-\r
-/*------------- System Control (SC) ------------------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t FLASHCFG; /* Flash Accelerator Module */\r
- uint32_t RESERVED0[31];\r
- __IO uint32_t PLL0CON; /* Clocking and Power Control */\r
- __IO uint32_t PLL0CFG;\r
- __I uint32_t PLL0STAT;\r
- __O uint32_t PLL0FEED;\r
- uint32_t RESERVED1[4];\r
- __IO uint32_t PLL1CON;\r
- __IO uint32_t PLL1CFG;\r
- __I uint32_t PLL1STAT;\r
- __O uint32_t PLL1FEED;\r
- uint32_t RESERVED2[4];\r
- __IO uint32_t PCON;\r
- __IO uint32_t PCONP;\r
- uint32_t RESERVED3[15];\r
- __IO uint32_t CCLKCFG;\r
- __IO uint32_t USBCLKCFG;\r
- __IO uint32_t CLKSRCSEL;\r
- uint32_t RESERVED4[12];\r
- __IO uint32_t EXTINT; /* External Interrupts */\r
- uint32_t RESERVED5;\r
- __IO uint32_t EXTMODE;\r
- __IO uint32_t EXTPOLAR;\r
- uint32_t RESERVED6[12];\r
- __IO uint32_t RSID; /* Reset */\r
- uint32_t RESERVED7[7];\r
- __IO uint32_t SCS; /* Syscon Miscellaneous Registers */\r
- __IO uint32_t IRCTRIM; /* Clock Dividers */\r
- __IO uint32_t PCLKSEL0;\r
- __IO uint32_t PCLKSEL1;\r
- uint32_t RESERVED8[4];\r
- __IO uint32_t USBIntSt; /* USB Device/OTG Interrupt Register */\r
- uint32_t RESERVED9;\r
- __IO uint32_t CLKOUTCFG; /* Clock Output Configuration */\r
- } SC_TypeDef;\r
-\r
-/*------------- Pin Connect Block (PINCON) -----------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t PINSEL0;\r
- __IO uint32_t PINSEL1;\r
- __IO uint32_t PINSEL2;\r
- __IO uint32_t PINSEL3;\r
- __IO uint32_t PINSEL4;\r
- __IO uint32_t PINSEL5;\r
- __IO uint32_t PINSEL6;\r
- __IO uint32_t PINSEL7;\r
- __IO uint32_t PINSEL8;\r
- __IO uint32_t PINSEL9;\r
- __IO uint32_t PINSEL10;\r
- uint32_t RESERVED0[5];\r
- __IO uint32_t PINMODE0;\r
- __IO uint32_t PINMODE1;\r
- __IO uint32_t PINMODE2;\r
- __IO uint32_t PINMODE3;\r
- __IO uint32_t PINMODE4;\r
- __IO uint32_t PINMODE5;\r
- __IO uint32_t PINMODE6;\r
- __IO uint32_t PINMODE7;\r
- __IO uint32_t PINMODE8;\r
- __IO uint32_t PINMODE9;\r
- __IO uint32_t PINMODE_OD0;\r
- __IO uint32_t PINMODE_OD1;\r
- __IO uint32_t PINMODE_OD2;\r
- __IO uint32_t PINMODE_OD3;\r
- __IO uint32_t PINMODE_OD4;\r
-} PINCON_TypeDef;\r
-\r
-/*------------- General Purpose Input/Output (GPIO) --------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t FIODIR;\r
- uint32_t RESERVED0[3];\r
- __IO uint32_t FIOMASK;\r
- __IO uint32_t FIOPIN;\r
- __IO uint32_t FIOSET;\r
- __O uint32_t FIOCLR;\r
-} GPIO_TypeDef;\r
-\r
-typedef struct\r
-{\r
- __I uint32_t IntStatus;\r
- __I uint32_t IO0IntStatR;\r
- __I uint32_t IO0IntStatF;\r
- __O uint32_t IO0IntClr;\r
- __IO uint32_t IO0IntEnR;\r
- __IO uint32_t IO0IntEnF;\r
- uint32_t RESERVED0[3];\r
- __I uint32_t IO2IntStatR;\r
- __I uint32_t IO2IntStatF;\r
- __O uint32_t IO2IntClr;\r
- __IO uint32_t IO2IntEnR;\r
- __IO uint32_t IO2IntEnF;\r
-} GPIOINT_TypeDef;\r
-\r
-/*------------- Timer (TIM) --------------------------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t IR;\r
- __IO uint32_t TCR;\r
- __IO uint32_t TC;\r
- __IO uint32_t PR;\r
- __IO uint32_t PC;\r
- __IO uint32_t MCR;\r
- __IO uint32_t MR0;\r
- __IO uint32_t MR1;\r
- __IO uint32_t MR2;\r
- __IO uint32_t MR3;\r
- __IO uint32_t CCR;\r
- __I uint32_t CR0;\r
- __I uint32_t CR1;\r
- uint32_t RESERVED0[2];\r
- __IO uint32_t EMR;\r
- uint32_t RESERVED1[24];\r
- __IO uint32_t CTCR;\r
-} TIM_TypeDef;\r
-\r
-/*------------- Pulse-Width Modulation (PWM) ---------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t IR;\r
- __IO uint32_t TCR;\r
- __IO uint32_t TC;\r
- __IO uint32_t PR;\r
- __IO uint32_t PC;\r
- __IO uint32_t MCR;\r
- __IO uint32_t MR0;\r
- __IO uint32_t MR1;\r
- __IO uint32_t MR2;\r
- __IO uint32_t MR3;\r
- __IO uint32_t CCR;\r
- __I uint32_t CR0;\r
- __I uint32_t CR1;\r
- __I uint32_t CR2;\r
- __I uint32_t CR3;\r
- __IO uint32_t MR4;\r
- __IO uint32_t MR5;\r
- __IO uint32_t MR6;\r
- __IO uint32_t PCR;\r
- __IO uint32_t LER;\r
- uint32_t RESERVED0[7];\r
- __IO uint32_t CTCR;\r
-} PWM_TypeDef;\r
-\r
-/*------------- Universal Asynchronous Receiver Transmitter (UART) -----------*/\r
-typedef struct\r
-{\r
- union {\r
- __I uint8_t RBR;\r
- __O uint8_t THR;\r
- __IO uint8_t DLL;\r
- uint32_t RESERVED0;\r
- };\r
- union {\r
- __IO uint8_t DLM;\r
- __IO uint32_t IER;\r
- };\r
- union {\r
- __I uint32_t IIR;\r
- __O uint8_t FCR;\r
- };\r
- __IO uint8_t LCR;\r
- uint8_t RESERVED1[7];\r
- __IO uint8_t LSR;\r
- uint8_t RESERVED2[7];\r
- __IO uint8_t SCR;\r
- uint8_t RESERVED3[3];\r
- __IO uint32_t ACR;\r
- __IO uint8_t ICR;\r
- uint8_t RESERVED4[3];\r
- __IO uint8_t FDR;\r
- uint8_t RESERVED5[7];\r
- __IO uint8_t TER;\r
- uint8_t RESERVED6[27];\r
- __IO uint8_t RS485CTRL;\r
- uint8_t RESERVED7[3];\r
- __IO uint8_t ADRMATCH;\r
-} UART_TypeDef;\r
-\r
-typedef struct\r
-{\r
- union {\r
- __I uint8_t RBR;\r
- __O uint8_t THR;\r
- __IO uint8_t DLL;\r
- uint32_t RESERVED0;\r
- };\r
- union {\r
- __IO uint8_t DLM;\r
- __IO uint32_t IER;\r
- };\r
- union {\r
- __I uint32_t IIR;\r
- __O uint8_t FCR;\r
- };\r
- __IO uint8_t LCR;\r
- uint8_t RESERVED1[3];\r
- __IO uint8_t MCR;\r
- uint8_t RESERVED2[3];\r
- __IO uint8_t LSR;\r
- uint8_t RESERVED3[3];\r
- __IO uint8_t MSR;\r
- uint8_t RESERVED4[3];\r
- __IO uint8_t SCR;\r
- uint8_t RESERVED5[3];\r
- __IO uint32_t ACR;\r
- uint32_t RESERVED6;\r
- __IO uint32_t FDR;\r
- uint32_t RESERVED7;\r
- __IO uint8_t TER;\r
- uint8_t RESERVED8[27];\r
- __IO uint8_t RS485CTRL;\r
- uint8_t RESERVED9[3];\r
- __IO uint8_t ADRMATCH;\r
- uint8_t RESERVED10[3];\r
- __IO uint8_t RS485DLY;\r
-} UART1_TypeDef;\r
-\r
-/*------------- Serial Peripheral Interface (SPI) ----------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t SPCR;\r
- __I uint32_t SPSR;\r
- __IO uint32_t SPDR;\r
- __IO uint32_t SPCCR;\r
- uint32_t RESERVED0[3];\r
- __IO uint32_t SPINT;\r
-} SPI_TypeDef;\r
-\r
-/*------------- Synchronous Serial Communication (SSP) -----------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t CR0;\r
- __IO uint32_t CR1;\r
- __IO uint32_t DR;\r
- __I uint32_t SR;\r
- __IO uint32_t CPSR;\r
- __IO uint32_t IMSC;\r
- __IO uint32_t RIS;\r
- __IO uint32_t MIS;\r
- __IO uint32_t ICR;\r
- __IO uint32_t DMACR;\r
-} SSP_TypeDef;\r
-\r
-/*------------- Inter-Integrated Circuit (I2C) -------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t I2CONSET;\r
- __I uint32_t I2STAT;\r
- __IO uint32_t I2DAT;\r
- __IO uint32_t I2ADR0;\r
- __IO uint32_t I2SCLH;\r
- __IO uint32_t I2SCLL;\r
- __O uint32_t I2CONCLR;\r
- __IO uint32_t MMCTRL;\r
- __IO uint32_t I2ADR1;\r
- __IO uint32_t I2ADR2;\r
- __IO uint32_t I2ADR3;\r
- __I uint32_t I2DATA_BUFFER;\r
- __IO uint32_t I2MASK0;\r
- __IO uint32_t I2MASK1;\r
- __IO uint32_t I2MASK2;\r
- __IO uint32_t I2MASK3;\r
-} I2C_TypeDef;\r
-\r
-/*------------- Inter IC Sound (I2S) -----------------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t I2SDAO;\r
- __IO uint32_t I2SDAI;\r
- __O uint32_t I2STXFIFO;\r
- __I uint32_t I2SRXFIFO;\r
- __I uint32_t I2SSTATE;\r
- __IO uint32_t I2SDMA1;\r
- __IO uint32_t I2SDMA2;\r
- __IO uint32_t I2SIRQ;\r
- __IO uint32_t I2STXRATE;\r
- __IO uint32_t I2SRXRATE;\r
- __IO uint32_t I2STXBITRATE;\r
- __IO uint32_t I2SRXBITRATE;\r
- __IO uint32_t I2STXMODE;\r
- __IO uint32_t I2SRXMODE;\r
-} I2S_TypeDef;\r
-\r
-/*------------- Repetitive Interrupt Timer (RIT) -----------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t RICOMPVAL;\r
- __IO uint32_t RIMASK;\r
- __IO uint8_t RICTRL;\r
- uint8_t RESERVED0[3];\r
- __IO uint32_t RICOUNTER;\r
-} RIT_TypeDef;\r
-\r
-/*------------- Real-Time Clock (RTC) ----------------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint8_t ILR;\r
- uint8_t RESERVED0[3];\r
- __IO uint8_t CCR;\r
- uint8_t RESERVED1[3];\r
- __IO uint8_t CIIR;\r
- uint8_t RESERVED2[3];\r
- __IO uint8_t AMR;\r
- uint8_t RESERVED3[3];\r
- __I uint32_t CTIME0;\r
- __I uint32_t CTIME1;\r
- __I uint32_t CTIME2;\r
- __IO uint8_t SEC;\r
- uint8_t RESERVED4[3];\r
- __IO uint8_t MIN;\r
- uint8_t RESERVED5[3];\r
- __IO uint8_t HOUR;\r
- uint8_t RESERVED6[3];\r
- __IO uint8_t DOM;\r
- uint8_t RESERVED7[3];\r
- __IO uint8_t DOW;\r
- uint8_t RESERVED8[3];\r
- __IO uint16_t DOY;\r
- uint16_t RESERVED9;\r
- __IO uint8_t MONTH;\r
- uint8_t RESERVED10[3];\r
- __IO uint16_t YEAR;\r
- uint16_t RESERVED11;\r
- __IO uint32_t CALIBRATION;\r
- __IO uint32_t GPREG0;\r
- __IO uint32_t GPREG1;\r
- __IO uint32_t GPREG2;\r
- __IO uint32_t GPREG3;\r
- __IO uint32_t GPREG4;\r
- __IO uint8_t WAKEUPDIS;\r
- uint8_t RESERVED12[3];\r
- __IO uint8_t PWRCTRL;\r
- uint8_t RESERVED13[3];\r
- __IO uint8_t ALSEC;\r
- uint8_t RESERVED14[3];\r
- __IO uint8_t ALMIN;\r
- uint8_t RESERVED15[3];\r
- __IO uint8_t ALHOUR;\r
- uint8_t RESERVED16[3];\r
- __IO uint8_t ALDOM;\r
- uint8_t RESERVED17[3];\r
- __IO uint8_t ALDOW;\r
- uint8_t RESERVED18[3];\r
- __IO uint16_t ALDOY;\r
- uint16_t RESERVED19;\r
- __IO uint8_t ALMON;\r
- uint8_t RESERVED20[3];\r
- __IO uint16_t ALYEAR;\r
- uint16_t RESERVED21;\r
-} RTC_TypeDef;\r
-\r
-/*------------- Watchdog Timer (WDT) -----------------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint8_t WDMOD;\r
- uint8_t RESERVED0[3];\r
- __IO uint32_t WDTC;\r
- __O uint8_t WDFEED;\r
- uint8_t RESERVED1[3];\r
- __I uint32_t WDTV;\r
- __IO uint32_t WDCLKSEL;\r
-} WDT_TypeDef;\r
-\r
-/*------------- Analog-to-Digital Converter (ADC) ----------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t ADCR;\r
- __IO uint32_t ADGDR;\r
- uint32_t RESERVED0;\r
- __IO uint32_t ADINTEN;\r
- __I uint32_t ADDR0;\r
- __I uint32_t ADDR1;\r
- __I uint32_t ADDR2;\r
- __I uint32_t ADDR3;\r
- __I uint32_t ADDR4;\r
- __I uint32_t ADDR5;\r
- __I uint32_t ADDR6;\r
- __I uint32_t ADDR7;\r
- __I uint32_t ADSTAT;\r
- __IO uint32_t ADTRM;\r
-} ADC_TypeDef;\r
-\r
-/*------------- Digital-to-Analog Converter (DAC) ----------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t DACR;\r
- __IO uint32_t DACCTRL;\r
- __IO uint16_t DACCNTVAL;\r
-} DAC_TypeDef;\r
-\r
-/*------------- Motor Control Pulse-Width Modulation (MCPWM) -----------------*/\r
-typedef struct\r
-{\r
- __I uint32_t MCCON;\r
- __O uint32_t MCCON_SET;\r
- __O uint32_t MCCON_CLR;\r
- __I uint32_t MCCAPCON;\r
- __O uint32_t MCCAPCON_SET;\r
- __O uint32_t MCCAPCON_CLR;\r
- __IO uint32_t MCTIM0;\r
- __IO uint32_t MCTIM1;\r
- __IO uint32_t MCTIM2;\r
- __IO uint32_t MCPER0;\r
- __IO uint32_t MCPER1;\r
- __IO uint32_t MCPER2;\r
- __IO uint32_t MCPW0;\r
- __IO uint32_t MCPW1;\r
- __IO uint32_t MCPW2;\r
- __IO uint32_t MCDEADTIME;\r
- __IO uint32_t MCCCP;\r
- __IO uint32_t MCCR0;\r
- __IO uint32_t MCCR1;\r
- __IO uint32_t MCCR2;\r
- __I uint32_t MCINTEN;\r
- __O uint32_t MCINTEN_SET;\r
- __O uint32_t MCINTEN_CLR;\r
- __I uint32_t MCCNTCON;\r
- __O uint32_t MCCNTCON_SET;\r
- __O uint32_t MCCNTCON_CLR;\r
- __I uint32_t MCINTFLAG;\r
- __O uint32_t MCINTFLAG_SET;\r
- __O uint32_t MCINTFLAG_CLR;\r
- __O uint32_t MCCAP_CLR;\r
-} MCPWM_TypeDef;\r
-\r
-/*------------- Quadrature Encoder Interface (QEI) ---------------------------*/\r
-typedef struct\r
-{\r
- __O uint32_t QEICON;\r
- __I uint32_t QEISTAT;\r
- __IO uint32_t QEICONF;\r
- __I uint32_t QEIPOS;\r
- __IO uint32_t QEIMAXPOS;\r
- __IO uint32_t CMPOS0;\r
- __IO uint32_t CMPOS1;\r
- __IO uint32_t CMPOS2;\r
- __I uint32_t INXCNT;\r
- __IO uint32_t INXCMP;\r
- __IO uint32_t QEILOAD;\r
- __I uint32_t QEITIME;\r
- __I uint32_t QEIVEL;\r
- __I uint32_t QEICAP;\r
- __IO uint32_t VELCOMP;\r
- __IO uint32_t FILTER;\r
- uint32_t RESERVED0[998];\r
- __O uint32_t QEIIEC;\r
- __O uint32_t QEIIES;\r
- __I uint32_t QEIINTSTAT;\r
- __I uint32_t QEIIE;\r
- __O uint32_t QEICLR;\r
- __O uint32_t QEISET;\r
-} QEI_TypeDef;\r
-\r
-/*------------- Controller Area Network (CAN) --------------------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t mask[512]; /* ID Masks */\r
-} CANAF_RAM_TypeDef;\r
-\r
-typedef struct /* Acceptance Filter Registers */\r
-{\r
- __IO uint32_t AFMR;\r
- __IO uint32_t SFF_sa;\r
- __IO uint32_t SFF_GRP_sa;\r
- __IO uint32_t EFF_sa;\r
- __IO uint32_t EFF_GRP_sa;\r
- __IO uint32_t ENDofTable;\r
- __I uint32_t LUTerrAd;\r
- __I uint32_t LUTerr;\r
-} CANAF_TypeDef;\r
-\r
-typedef struct /* Central Registers */\r
-{\r
- __I uint32_t CANTxSR;\r
- __I uint32_t CANRxSR;\r
- __I uint32_t CANMSR;\r
-} CANCR_TypeDef;\r
-\r
-typedef struct /* Controller Registers */\r
-{\r
- __IO uint32_t MOD;\r
- __O uint32_t CMR;\r
- __IO uint32_t GSR;\r
- __I uint32_t ICR;\r
- __IO uint32_t IER;\r
- __IO uint32_t BTR;\r
- __IO uint32_t EWL;\r
- __I uint32_t SR;\r
- __IO uint32_t RFS;\r
- __IO uint32_t RID;\r
- __IO uint32_t RDA;\r
- __IO uint32_t RDB;\r
- __IO uint32_t TFI1;\r
- __IO uint32_t TID1;\r
- __IO uint32_t TDA1;\r
- __IO uint32_t TDB1;\r
- __IO uint32_t TFI2;\r
- __IO uint32_t TID2;\r
- __IO uint32_t TDA2;\r
- __IO uint32_t TDB2;\r
- __IO uint32_t TFI3;\r
- __IO uint32_t TID3;\r
- __IO uint32_t TDA3;\r
- __IO uint32_t TDB3;\r
-} CAN_TypeDef;\r
-\r
-/*------------- General Purpose Direct Memory Access (GPDMA) -----------------*/\r
-typedef struct /* Common Registers */\r
-{\r
- __I uint32_t DMACIntStat;\r
- __I uint32_t DMACIntTCStat;\r
- __O uint32_t DMACIntTCClear;\r
- __I uint32_t DMACIntErrStat;\r
- __O uint32_t DMACIntErrClr;\r
- __I uint32_t DMACRawIntTCStat;\r
- __I uint32_t DMACRawIntErrStat;\r
- __I uint32_t DMACEnbldChns;\r
- __IO uint32_t DMACSoftBReq;\r
- __IO uint32_t DMACSoftSReq;\r
- __IO uint32_t DMACSoftLBReq;\r
- __IO uint32_t DMACSoftLSReq;\r
- __IO uint32_t DMACConfig;\r
- __IO uint32_t DMACSync;\r
-} GPDMA_TypeDef;\r
-\r
-typedef struct /* Channel Registers */\r
-{\r
- __IO uint32_t DMACCSrcAddr;\r
- __IO uint32_t DMACCDestAddr;\r
- __IO uint32_t DMACCLLI;\r
- __IO uint32_t DMACCControl;\r
- __IO uint32_t DMACCConfig;\r
-} GPDMACH_TypeDef;\r
-\r
-/*------------- Universal Serial Bus (USB) -----------------------------------*/\r
-typedef struct\r
-{\r
- __I uint32_t HcRevision; /* USB Host Registers */\r
- __IO uint32_t HcControl;\r
- __IO uint32_t HcCommandStatus;\r
- __IO uint32_t HcInterruptStatus;\r
- __IO uint32_t HcInterruptEnable;\r
- __IO uint32_t HcInterruptDisable;\r
- __IO uint32_t HcHCCA;\r
- __I uint32_t HcPeriodCurrentED;\r
- __IO uint32_t HcControlHeadED;\r
- __IO uint32_t HcControlCurrentED;\r
- __IO uint32_t HcBulkHeadED;\r
- __IO uint32_t HcBulkCurrentED;\r
- __I uint32_t HcDoneHead;\r
- __IO uint32_t HcFmInterval;\r
- __I uint32_t HcFmRemaining;\r
- __I uint32_t HcFmNumber;\r
- __IO uint32_t HcPeriodicStart;\r
- __IO uint32_t HcLSTreshold;\r
- __IO uint32_t HcRhDescriptorA;\r
- __IO uint32_t HcRhDescriptorB;\r
- __IO uint32_t HcRhStatus;\r
- __IO uint32_t HcRhPortStatus1;\r
- __IO uint32_t HcRhPortStatus2;\r
- uint32_t RESERVED0[40];\r
- __I uint32_t Module_ID;\r
-\r
- __I uint32_t OTGIntSt; /* USB On-The-Go Registers */\r
- __IO uint32_t OTGIntEn;\r
- __O uint32_t OTGIntSet;\r
- __O uint32_t OTGIntClr;\r
- __IO uint32_t OTGStCtrl;\r
- __IO uint32_t OTGTmr;\r
- uint32_t RESERVED1[58];\r
-\r
- __I uint32_t USBDevIntSt; /* USB Device Interrupt Registers */\r
- __IO uint32_t USBDevIntEn;\r
- __O uint32_t USBDevIntClr;\r
- __O uint32_t USBDevIntSet;\r
-\r
- __O uint32_t USBCmdCode; /* USB Device SIE Command Registers */\r
- __I uint32_t USBCmdData;\r
-\r
- __I uint32_t USBRxData; /* USB Device Transfer Registers */\r
- __O uint32_t USBTxData;\r
- __I uint32_t USBRxPLen;\r
- __O uint32_t USBTxPLen;\r
- __IO uint32_t USBCtrl;\r
- __O uint32_t USBDevIntPri;\r
-\r
- __I uint32_t USBEpIntSt; /* USB Device Endpoint Interrupt Regs */\r
- __IO uint32_t USBEpIntEn;\r
- __O uint32_t USBEpIntClr;\r
- __O uint32_t USBEpIntSet;\r
- __O uint32_t USBEpIntPri;\r
-\r
- __IO uint32_t USBReEp; /* USB Device Endpoint Realization Reg*/\r
- __O uint32_t USBEpInd;\r
- __IO uint32_t USBMaxPSize;\r
-\r
- __I uint32_t USBDMARSt; /* USB Device DMA Registers */\r
- __O uint32_t USBDMARClr;\r
- __O uint32_t USBDMARSet;\r
- uint32_t RESERVED2[9];\r
- __IO uint32_t USBUDCAH;\r
- __I uint32_t USBEpDMASt;\r
- __O uint32_t USBEpDMAEn;\r
- __O uint32_t USBEpDMADis;\r
- __I uint32_t USBDMAIntSt;\r
- __IO uint32_t USBDMAIntEn;\r
- uint32_t RESERVED3[2];\r
- __I uint32_t USBEoTIntSt;\r
- __O uint32_t USBEoTIntClr;\r
- __O uint32_t USBEoTIntSet;\r
- __I uint32_t USBNDDRIntSt;\r
- __O uint32_t USBNDDRIntClr;\r
- __O uint32_t USBNDDRIntSet;\r
- __I uint32_t USBSysErrIntSt;\r
- __O uint32_t USBSysErrIntClr;\r
- __O uint32_t USBSysErrIntSet;\r
- uint32_t RESERVED4[15];\r
-\r
- __I uint32_t I2C_RX; /* USB OTG I2C Registers */\r
- __O uint32_t I2C_WO;\r
- __I uint32_t I2C_STS;\r
- __IO uint32_t I2C_CTL;\r
- __IO uint32_t I2C_CLKHI;\r
- __O uint32_t I2C_CLKLO;\r
- uint32_t RESERVED5[823];\r
-\r
- union {\r
- __IO uint32_t USBClkCtrl; /* USB Clock Control Registers */\r
- __IO uint32_t OTGClkCtrl;\r
- } ;\r
- union {\r
- __I uint32_t USBClkSt;\r
- __I uint32_t OTGClkSt;\r
- };\r
-} USB_TypeDef;\r
-\r
-/*------------- Ethernet Media Access Controller (EMAC) ----------------------*/\r
-typedef struct\r
-{\r
- __IO uint32_t MAC1; /* MAC Registers */\r
- __IO uint32_t MAC2;\r
- __IO uint32_t IPGT;\r
- __IO uint32_t IPGR;\r
- __IO uint32_t CLRT;\r
- __IO uint32_t MAXF;\r
- __IO uint32_t SUPP;\r
- __IO uint32_t TEST;\r
- __IO uint32_t MCFG;\r
- __IO uint32_t MCMD;\r
- __IO uint32_t MADR;\r
- __O uint32_t MWTD;\r
- __I uint32_t MRDD;\r
- __I uint32_t MIND;\r
- uint32_t RESERVED0[2];\r
- __IO uint32_t SA0;\r
- __IO uint32_t SA1;\r
- __IO uint32_t SA2;\r
- uint32_t RESERVED1[45];\r
- __IO uint32_t Command; /* Control Registers */\r
- __I uint32_t Status;\r
- __IO uint32_t RxDescriptor;\r
- __IO uint32_t RxStatus;\r
- __IO uint32_t RxDescriptorNumber;\r
- __I uint32_t RxProduceIndex;\r
- __IO uint32_t RxConsumeIndex;\r
- __IO uint32_t TxDescriptor;\r
- __IO uint32_t TxStatus;\r
- __IO uint32_t TxDescriptorNumber;\r
- __IO uint32_t TxProduceIndex;\r
- __I uint32_t TxConsumeIndex;\r
- uint32_t RESERVED2[10];\r
- __I uint32_t TSV0;\r
- __I uint32_t TSV1;\r
- __I uint32_t RSV;\r
- uint32_t RESERVED3[3];\r
- __IO uint32_t FlowControlCounter;\r
- __I uint32_t FlowControlStatus;\r
- uint32_t RESERVED4[34];\r
- __IO uint32_t RxFilterCtrl; /* Rx Filter Registers */\r
- __IO uint32_t RxFilterWoLStatus;\r
- __IO uint32_t RxFilterWoLClear;\r
- uint32_t RESERVED5;\r
- __IO uint32_t HashFilterL;\r
- __IO uint32_t HashFilterH;\r
- uint32_t RESERVED6[882];\r
- __I uint32_t IntStatus; /* Module Control Registers */\r
- __IO uint32_t IntEnable;\r
- __O uint32_t IntClear;\r
- __O uint32_t IntSet;\r
- uint32_t RESERVED7;\r
- __IO uint32_t PowerDown;\r
- uint32_t RESERVED8;\r
- __IO uint32_t Module_ID;\r
-} EMAC_TypeDef;\r
-\r
-/******************************************************************************/\r
-/* Peripheral memory map */\r
-/******************************************************************************/\r
-/* Base addresses */\r
-#define FLASH_BASE (0x00000000UL)\r
-#define RAM_BASE (0x10000000UL)\r
-#define GPIO_BASE (0x2009C000UL)\r
-#define APB0_BASE (0x40000000UL)\r
-#define APB1_BASE (0x40080000UL)\r
-#define AHB_BASE (0x50000000UL)\r
-#define CM3_BASE (0xE0000000UL)\r
-\r
-/* APB0 peripherals */\r
-#define WDT_BASE (APB0_BASE + 0x00000)\r
-#define TIM0_BASE (APB0_BASE + 0x04000)\r
-#define TIM1_BASE (APB0_BASE + 0x08000)\r
-#define UART0_BASE (APB0_BASE + 0x0C000)\r
-#define UART1_BASE (APB0_BASE + 0x10000)\r
-#define PWM1_BASE (APB0_BASE + 0x18000)\r
-#define I2C0_BASE (APB0_BASE + 0x1C000)\r
-#define SPI_BASE (APB0_BASE + 0x20000)\r
-#define RTC_BASE (APB0_BASE + 0x24000)\r
-#define GPIOINT_BASE (APB0_BASE + 0x28080)\r
-#define PINCON_BASE (APB0_BASE + 0x2C000)\r
-#define SSP1_BASE (APB0_BASE + 0x30000)\r
-#define ADC_BASE (APB0_BASE + 0x34000)\r
-#define CANAF_RAM_BASE (APB0_BASE + 0x38000)\r
-#define CANAF_BASE (APB0_BASE + 0x3C000)\r
-#define CANCR_BASE (APB0_BASE + 0x40000)\r
-#define CAN1_BASE (APB0_BASE + 0x44000)\r
-#define CAN2_BASE (APB0_BASE + 0x48000)\r
-#define I2C1_BASE (APB0_BASE + 0x5C000)\r
-\r
-/* APB1 peripherals */\r
-#define SSP0_BASE (APB1_BASE + 0x08000)\r
-#define DAC_BASE (APB1_BASE + 0x0C000)\r
-#define TIM2_BASE (APB1_BASE + 0x10000)\r
-#define TIM3_BASE (APB1_BASE + 0x14000)\r
-#define UART2_BASE (APB1_BASE + 0x18000)\r
-#define UART3_BASE (APB1_BASE + 0x1C000)\r
-#define I2C2_BASE (APB1_BASE + 0x20000)\r
-#define I2S_BASE (APB1_BASE + 0x28000)\r
-#define RIT_BASE (APB1_BASE + 0x30000)\r
-#define MCPWM_BASE (APB1_BASE + 0x38000)\r
-#define QEI_BASE (APB1_BASE + 0x3C000)\r
-#define SC_BASE (APB1_BASE + 0x7C000)\r
-\r
-/* AHB peripherals */\r
-#define EMAC_BASE (AHB_BASE + 0x00000)\r
-#define GPDMA_BASE (AHB_BASE + 0x04000)\r
-#define GPDMACH0_BASE (AHB_BASE + 0x04100)\r
-#define GPDMACH1_BASE (AHB_BASE + 0x04120)\r
-#define GPDMACH2_BASE (AHB_BASE + 0x04140)\r
-#define GPDMACH3_BASE (AHB_BASE + 0x04160)\r
-#define GPDMACH4_BASE (AHB_BASE + 0x04180)\r
-#define GPDMACH5_BASE (AHB_BASE + 0x041A0)\r
-#define GPDMACH6_BASE (AHB_BASE + 0x041C0)\r
-#define GPDMACH7_BASE (AHB_BASE + 0x041E0)\r
-#define USB_BASE (AHB_BASE + 0x0C000)\r
-\r
-/* GPIOs */\r
-#define GPIO0_BASE (GPIO_BASE + 0x00000)\r
-#define GPIO1_BASE (GPIO_BASE + 0x00020)\r
-#define GPIO2_BASE (GPIO_BASE + 0x00040)\r
-#define GPIO3_BASE (GPIO_BASE + 0x00060)\r
-#define GPIO4_BASE (GPIO_BASE + 0x00080)\r
-\r
-\r
-/******************************************************************************/\r
-/* Peripheral declaration */\r
-/******************************************************************************/\r
-#define SC (( SC_TypeDef *) SC_BASE)\r
-#define GPIO0 (( GPIO_TypeDef *) GPIO0_BASE)\r
-#define GPIO1 (( GPIO_TypeDef *) GPIO1_BASE)\r
-#define GPIO2 (( GPIO_TypeDef *) GPIO2_BASE)\r
-#define GPIO3 (( GPIO_TypeDef *) GPIO3_BASE)\r
-#define GPIO4 (( GPIO_TypeDef *) GPIO4_BASE)\r
-#define WDT (( WDT_TypeDef *) WDT_BASE)\r
-#define TIM0 (( TIM_TypeDef *) TIM0_BASE)\r
-#define TIM1 (( TIM_TypeDef *) TIM1_BASE)\r
-#define TIM2 (( TIM_TypeDef *) TIM2_BASE)\r
-#define TIM3 (( TIM_TypeDef *) TIM3_BASE)\r
-#define RIT (( RIT_TypeDef *) RIT_BASE)\r
-#define UART0 (( UART_TypeDef *) UART0_BASE)\r
-#define UART1 (( UART1_TypeDef *) UART1_BASE)\r
-#define UART2 (( UART_TypeDef *) UART2_BASE)\r
-#define UART3 (( UART_TypeDef *) UART3_BASE)\r
-#define PWM1 (( PWM_TypeDef *) PWM1_BASE)\r
-#define I2C0 (( I2C_TypeDef *) I2C0_BASE)\r
-#define I2C1 (( I2C_TypeDef *) I2C1_BASE)\r
-#define I2C2 (( I2C_TypeDef *) I2C2_BASE)\r
-#define I2S (( I2S_TypeDef *) I2S_BASE)\r
-#define SPI (( SPI_TypeDef *) SPI_BASE)\r
-#define RTC (( RTC_TypeDef *) RTC_BASE)\r
-#define GPIOINT (( GPIOINT_TypeDef *) GPIOINT_BASE)\r
-#define PINCON (( PINCON_TypeDef *) PINCON_BASE)\r
-#define SSP0 (( SSP_TypeDef *) SSP0_BASE)\r
-#define SSP1 (( SSP_TypeDef *) SSP1_BASE)\r
-#define ADC (( ADC_TypeDef *) ADC_BASE)\r
-#define DAC (( DAC_TypeDef *) DAC_BASE)\r
-#define CANAF_RAM ((CANAF_RAM_TypeDef *) CANAF_RAM_BASE)\r
-#define CANAF (( CANAF_TypeDef *) CANAF_BASE)\r
-#define CANCR (( CANCR_TypeDef *) CANCR_BASE)\r
-#define CAN1 (( CAN_TypeDef *) CAN1_BASE)\r
-#define CAN2 (( CAN_TypeDef *) CAN2_BASE)\r
-#define MCPWM (( MCPWM_TypeDef *) MCPWM_BASE)\r
-#define QEI (( QEI_TypeDef *) QEI_BASE)\r
-#define EMAC (( EMAC_TypeDef *) EMAC_BASE)\r
-#define GPDMA (( GPDMA_TypeDef *) GPDMA_BASE)\r
-#define GPDMACH0 (( GPDMACH_TypeDef *) GPDMACH0_BASE)\r
-#define GPDMACH1 (( GPDMACH_TypeDef *) GPDMACH1_BASE)\r
-#define GPDMACH2 (( GPDMACH_TypeDef *) GPDMACH2_BASE)\r
-#define GPDMACH3 (( GPDMACH_TypeDef *) GPDMACH3_BASE)\r
-#define GPDMACH4 (( GPDMACH_TypeDef *) GPDMACH4_BASE)\r
-#define GPDMACH5 (( GPDMACH_TypeDef *) GPDMACH5_BASE)\r
-#define GPDMACH6 (( GPDMACH_TypeDef *) GPDMACH6_BASE)\r
-#define GPDMACH7 (( GPDMACH_TypeDef *) GPDMACH7_BASE)\r
-#define USB (( USB_TypeDef *) USB_BASE)\r
-\r
-#endif // __LPC17xx_H__\r
-\r
-\r
-#endif\r
+++ /dev/null
-/******************************************************************************\r
- * @file: core_cm3.h\r
- * @purpose: CMSIS Cortex-M3 Core Peripheral Access Layer Header File\r
- * @version: V1.20\r
- * @date: 22. May 2009\r
- *----------------------------------------------------------------------------\r
- *\r
- * Copyright (C) 2009 ARM Limited. All rights reserved.\r
- *\r
- * ARM Limited (ARM) is supplying this software for use with Cortex-Mx \r
- * processor based microcontrollers. This file can be freely distributed \r
- * within development tools that are supporting such ARM based processors. \r
- *\r
- * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
- * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
- * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
- * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
- *\r
- ******************************************************************************/\r
-\r
-#ifndef __CM3_CORE_H__\r
-#define __CM3_CORE_H__\r
-\r
-#ifdef __cplusplus\r
- extern "C" {\r
-#endif \r
-\r
-#define __CM3_CMSIS_VERSION_MAIN (0x01) /*!< [31:16] CMSIS HAL main version */\r
-#define __CM3_CMSIS_VERSION_SUB (0x20) /*!< [15:0] CMSIS HAL sub version */\r
-#define __CM3_CMSIS_VERSION ((__CM3_CMSIS_VERSION_MAIN << 16) | __CM3_CMSIS_VERSION_SUB) /*!< CMSIS HAL version number */\r
-\r
-#define __CORTEX_M (0x03) /*!< Cortex core */\r
-\r
-/**\r
- * Lint configuration \n\r
- * ----------------------- \n\r
- *\r
- * The following Lint messages will be suppressed and not shown: \n\r
- * \n\r
- * --- Error 10: --- \n\r
- * register uint32_t __regBasePri __asm("basepri"); \n\r
- * Error 10: Expecting ';' \n\r
- * \n\r
- * --- Error 530: --- \n\r
- * return(__regBasePri); \n\r
- * Warning 530: Symbol '__regBasePri' (line 264) not initialized \n\r
- * \n\r
- * --- Error 550: --- \n\r
- * __regBasePri = (basePri & 0x1ff); \n\r
- * } \n\r
- * Warning 550: Symbol '__regBasePri' (line 271) not accessed \n\r
- * \n\r
- * --- Error 754: --- \n\r
- * uint32_t RESERVED0[24]; \n\r
- * Info 754: local structure member '<some, not used in the HAL>' (line 109, file ./cm3_core.h) not referenced \n\r
- * \n\r
- * --- Error 750: --- \n\r
- * #define __CM3_CORE_H__ \n\r
- * Info 750: local macro '__CM3_CORE_H__' (line 43, file./cm3_core.h) not referenced \n\r
- * \n\r
- * --- Error 528: --- \n\r
- * static __INLINE void NVIC_DisableIRQ(uint32_t IRQn) \n\r
- * Warning 528: Symbol 'NVIC_DisableIRQ(unsigned int)' (line 419, file ./cm3_core.h) not referenced \n\r
- * \n\r
- * --- Error 751: --- \n\r
- * } InterruptType_Type; \n\r
- * Info 751: local typedef 'InterruptType_Type' (line 170, file ./cm3_core.h) not referenced \n\r
- * \n\r
- * \n\r
- * Note: To re-enable a Message, insert a space before 'lint' * \n\r
- *\r
- */\r
-\r
-/*lint -save */\r
-/*lint -e10 */\r
-/*lint -e530 */\r
-/*lint -e550 */\r
-/*lint -e754 */\r
-/*lint -e750 */\r
-/*lint -e528 */\r
-/*lint -e751 */\r
-\r
-\r
-#include <stdint.h> /* Include standard types */\r
-\r
-#if defined (__ICCARM__)\r
- #include <intrinsics.h> /* IAR Intrinsics */\r
-#endif\r
-\r
-\r
-#ifndef __NVIC_PRIO_BITS\r
- #define __NVIC_PRIO_BITS 4 /*!< standard definition for NVIC Priority Bits */\r
-#endif\r
-\r
-\r
-\r
-\r
-/**\r
- * IO definitions\r
- *\r
- * define access restrictions to peripheral registers\r
- */\r
-\r
-#ifdef __cplusplus\r
-#define __I volatile /*!< defines 'read only' permissions */\r
-#else\r
-#define __I volatile const /*!< defines 'read only' permissions */\r
-#endif\r
-#define __O volatile /*!< defines 'write only' permissions */\r
-#define __IO volatile /*!< defines 'read / write' permissions */\r
-\r
-\r
-\r
-/*******************************************************************************\r
- * Register Abstraction\r
- ******************************************************************************/\r
-\r
-\r
-/* System Reset */\r
-#define NVIC_VECTRESET 0 /*!< Vector Reset Bit */\r
-#define NVIC_SYSRESETREQ 2 /*!< System Reset Request */\r
-#define NVIC_AIRCR_VECTKEY (0x5FA << 16) /*!< AIRCR Key for write access */\r
-#define NVIC_AIRCR_ENDIANESS 15 /*!< Endianess */\r
-\r
-/* Core Debug */\r
-#define CoreDebug_DEMCR_TRCENA (1 << 24) /*!< DEMCR TRCENA enable */\r
-#define ITM_TCR_ITMENA 1 /*!< ITM enable */\r
-\r
-\r
-\r
-\r
-/* memory mapping struct for Nested Vectored Interrupt Controller (NVIC) */\r
-typedef struct\r
-{\r
- __IO uint32_t ISER[8]; /*!< Interrupt Set Enable Register */\r
- uint32_t RESERVED0[24];\r
- __IO uint32_t ICER[8]; /*!< Interrupt Clear Enable Register */\r
- uint32_t RSERVED1[24];\r
- __IO uint32_t ISPR[8]; /*!< Interrupt Set Pending Register */\r
- uint32_t RESERVED2[24];\r
- __IO uint32_t ICPR[8]; /*!< Interrupt Clear Pending Register */\r
- uint32_t RESERVED3[24];\r
- __IO uint32_t IABR[8]; /*!< Interrupt Active bit Register */\r
- uint32_t RESERVED4[56];\r
- __IO uint8_t IP[240]; /*!< Interrupt Priority Register, 8Bit wide */\r
- uint32_t RESERVED5[644];\r
- __O uint32_t STIR; /*!< Software Trigger Interrupt Register */\r
-} NVIC_Type;\r
-\r
-\r
-/* memory mapping struct for System Control Block */\r
-typedef struct\r
-{\r
- __I uint32_t CPUID; /*!< CPU ID Base Register */\r
- __IO uint32_t ICSR; /*!< Interrupt Control State Register */\r
- __IO uint32_t VTOR; /*!< Vector Table Offset Register */\r
- __IO uint32_t AIRCR; /*!< Application Interrupt / Reset Control Register */\r
- __IO uint32_t SCR; /*!< System Control Register */\r
- __IO uint32_t CCR; /*!< Configuration Control Register */\r
- __IO uint8_t SHP[12]; /*!< System Handlers Priority Registers (4-7, 8-11, 12-15) */\r
- __IO uint32_t SHCSR; /*!< System Handler Control and State Register */\r
- __IO uint32_t CFSR; /*!< Configurable Fault Status Register */\r
- __IO uint32_t HFSR; /*!< Hard Fault Status Register */\r
- __IO uint32_t DFSR; /*!< Debug Fault Status Register */\r
- __IO uint32_t MMFAR; /*!< Mem Manage Address Register */\r
- __IO uint32_t BFAR; /*!< Bus Fault Address Register */\r
- __IO uint32_t AFSR; /*!< Auxiliary Fault Status Register */\r
- __I uint32_t PFR[2]; /*!< Processor Feature Register */\r
- __I uint32_t DFR; /*!< Debug Feature Register */\r
- __I uint32_t ADR; /*!< Auxiliary Feature Register */\r
- __I uint32_t MMFR[4]; /*!< Memory Model Feature Register */\r
- __I uint32_t ISAR[5]; /*!< ISA Feature Register */\r
-} SCB_Type;\r
-\r
-\r
-/* memory mapping struct for SysTick */\r
-typedef struct\r
-{\r
- __IO uint32_t CTRL; /*!< SysTick Control and Status Register */\r
- __IO uint32_t LOAD; /*!< SysTick Reload Value Register */\r
- __IO uint32_t VAL; /*!< SysTick Current Value Register */\r
- __I uint32_t CALIB; /*!< SysTick Calibration Register */\r
-} SysTick_Type;\r
-\r
-\r
-/* memory mapping structur for ITM */\r
-typedef struct\r
-{\r
- __O union \r
- {\r
- __O uint8_t u8; /*!< ITM Stimulus Port 8-bit */\r
- __O uint16_t u16; /*!< ITM Stimulus Port 16-bit */\r
- __O uint32_t u32; /*!< ITM Stimulus Port 32-bit */\r
- } PORT [32]; /*!< ITM Stimulus Port Registers */\r
- uint32_t RESERVED0[864];\r
- __IO uint32_t TER; /*!< ITM Trace Enable Register */\r
- uint32_t RESERVED1[15];\r
- __IO uint32_t TPR; /*!< ITM Trace Privilege Register */\r
- uint32_t RESERVED2[15];\r
- __IO uint32_t TCR; /*!< ITM Trace Control Register */\r
- uint32_t RESERVED3[29];\r
- __IO uint32_t IWR; /*!< ITM Integration Write Register */\r
- __IO uint32_t IRR; /*!< ITM Integration Read Register */\r
- __IO uint32_t IMCR; /*!< ITM Integration Mode Control Register */\r
- uint32_t RESERVED4[43];\r
- __IO uint32_t LAR; /*!< ITM Lock Access Register */\r
- __IO uint32_t LSR; /*!< ITM Lock Status Register */\r
- uint32_t RESERVED5[6];\r
- __I uint32_t PID4; /*!< ITM Product ID Registers */\r
- __I uint32_t PID5;\r
- __I uint32_t PID6;\r
- __I uint32_t PID7;\r
- __I uint32_t PID0;\r
- __I uint32_t PID1;\r
- __I uint32_t PID2;\r
- __I uint32_t PID3;\r
- __I uint32_t CID0;\r
- __I uint32_t CID1;\r
- __I uint32_t CID2;\r
- __I uint32_t CID3;\r
-} ITM_Type;\r
-\r
-\r
-/* memory mapped struct for Interrupt Type */\r
-typedef struct\r
-{\r
- uint32_t RESERVED0;\r
- __I uint32_t ICTR; /*!< Interrupt Control Type Register */\r
-#if ((defined __CM3_REV) && (__CM3_REV >= 0x200))\r
- __IO uint32_t ACTLR; /*!< Auxiliary Control Register */\r
-#else\r
- uint32_t RESERVED1;\r
-#endif\r
-} InterruptType_Type;\r
-\r
-\r
-/* Memory Protection Unit */\r
-#if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1)\r
-typedef struct\r
-{\r
- __I uint32_t TYPE; /*!< MPU Type Register */\r
- __IO uint32_t CTRL; /*!< MPU Control Register */\r
- __IO uint32_t RNR; /*!< MPU Region RNRber Register */\r
- __IO uint32_t RBAR; /*!< MPU Region Base Address Register */\r
- __IO uint32_t RASR; /*!< MPU Region Attribute and Size Register */\r
- __IO uint32_t RBAR_A1; /*!< MPU Alias 1 Region Base Address Register */\r
- __IO uint32_t RASR_A1; /*!< MPU Alias 1 Region Attribute and Size Register */\r
- __IO uint32_t RBAR_A2; /*!< MPU Alias 2 Region Base Address Register */\r
- __IO uint32_t RASR_A2; /*!< MPU Alias 2 Region Attribute and Size Register */\r
- __IO uint32_t RBAR_A3; /*!< MPU Alias 3 Region Base Address Register */\r
- __IO uint32_t RASR_A3; /*!< MPU Alias 3 Region Attribute and Size Register */\r
-} MPU_Type;\r
-#endif\r
-\r
-\r
-/* Core Debug Register */\r
-typedef struct\r
-{\r
- __IO uint32_t DHCSR; /*!< Debug Halting Control and Status Register */\r
- __O uint32_t DCRSR; /*!< Debug Core Register Selector Register */\r
- __IO uint32_t DCRDR; /*!< Debug Core Register Data Register */\r
- __IO uint32_t DEMCR; /*!< Debug Exception and Monitor Control Register */\r
-} CoreDebug_Type;\r
-\r
-\r
-/* Memory mapping of Cortex-M3 Hardware */\r
-#define SCS_BASE (0xE000E000) /*!< System Control Space Base Address */\r
-#define ITM_BASE (0xE0000000) /*!< ITM Base Address */\r
-#define CoreDebug_BASE (0xE000EDF0) /*!< Core Debug Base Address */\r
-#define SysTick_BASE (SCS_BASE + 0x0010) /*!< SysTick Base Address */\r
-#define NVIC_BASE (SCS_BASE + 0x0100) /*!< NVIC Base Address */\r
-#define SCB_BASE (SCS_BASE + 0x0D00) /*!< System Control Block Base Address */\r
-\r
-#define InterruptType ((InterruptType_Type *) SCS_BASE) /*!< Interrupt Type Register */\r
-#define SCB ((SCB_Type *) SCB_BASE) /*!< SCB configuration struct */\r
-#define SysTick ((SysTick_Type *) SysTick_BASE) /*!< SysTick configuration struct */\r
-#define NVIC ((NVIC_Type *) NVIC_BASE) /*!< NVIC configuration struct */\r
-#define ITM ((ITM_Type *) ITM_BASE) /*!< ITM configuration struct */\r
-#define CoreDebug ((CoreDebug_Type *) CoreDebug_BASE) /*!< Core Debug configuration struct */\r
-\r
-#if defined (__MPU_PRESENT) && (__MPU_PRESENT == 1)\r
- #define MPU_BASE (SCS_BASE + 0x0D90) /*!< Memory Protection Unit */\r
- #define MPU ((MPU_Type*) MPU_BASE) /*!< Memory Protection Unit */\r
-#endif\r
-\r
-\r
-\r
-/*******************************************************************************\r
- * Hardware Abstraction Layer\r
- ******************************************************************************/\r
-\r
-\r
-#if defined ( __CC_ARM )\r
- #define __ASM __asm /*!< asm keyword for ARM Compiler */\r
- #define __INLINE __inline /*!< inline keyword for ARM Compiler */\r
-\r
-#elif defined ( __ICCARM__ )\r
- #define __ASM __asm /*!< asm keyword for IAR Compiler */\r
- #define __INLINE inline /*!< inline keyword for IAR Compiler. Only avaiable in High optimization mode! */\r
-\r
-#elif defined ( __GNUC__ )\r
- #define __ASM __asm /*!< asm keyword for GNU Compiler */\r
- #define __INLINE inline /*!< inline keyword for GNU Compiler */\r
-\r
-#elif defined ( __TASKING__ )\r
- #define __ASM __asm /*!< asm keyword for TASKING Compiler */\r
- #define __INLINE inline /*!< inline keyword for TASKING Compiler */\r
-\r
-#endif\r
-\r
-\r
-/* ################### Compiler specific Intrinsics ########################### */\r
-\r
-#if defined ( __CC_ARM ) /*------------------RealView Compiler -----------------*/\r
-/* ARM armcc specific functions */\r
-\r
-#define __enable_fault_irq __enable_fiq\r
-#define __disable_fault_irq __disable_fiq\r
-\r
-#define __NOP __nop\r
-#define __WFI __wfi\r
-#define __WFE __wfe\r
-#define __SEV __sev\r
-#define __ISB() __isb(0)\r
-#define __DSB() __dsb(0)\r
-#define __DMB() __dmb(0)\r
-#define __REV __rev\r
-#define __RBIT __rbit\r
-#define __LDREXB(ptr) ((unsigned char ) __ldrex(ptr))\r
-#define __LDREXH(ptr) ((unsigned short) __ldrex(ptr))\r
-#define __LDREXW(ptr) ((unsigned int ) __ldrex(ptr))\r
-#define __STREXB(value, ptr) __strex(value, ptr)\r
-#define __STREXH(value, ptr) __strex(value, ptr)\r
-#define __STREXW(value, ptr) __strex(value, ptr)\r
-\r
-\r
-/* intrinsic unsigned long long __ldrexd(volatile void *ptr) */\r
-/* intrinsic int __strexd(unsigned long long val, volatile void *ptr) */\r
-/* intrinsic void __enable_irq(); */\r
-/* intrinsic void __disable_irq(); */\r
-\r
-\r
-/**\r
- * @brief Return the Process Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t ProcessStackPointer\r
- *\r
- * Return the actual process stack pointer\r
- */\r
-extern uint32_t __get_PSP(void);\r
-\r
-/**\r
- * @brief Set the Process Stack Pointer\r
- *\r
- * @param uint32_t Process Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value ProcessStackPointer to the MSP \r
- * (process stack pointer) Cortex processor register\r
- */\r
-extern void __set_PSP(uint32_t topOfProcStack);\r
-\r
-/**\r
- * @brief Return the Main Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t Main Stack Pointer\r
- *\r
- * Return the current value of the MSP (main stack pointer)\r
- * Cortex processor register\r
- */\r
-extern uint32_t __get_MSP(void);\r
-\r
-/**\r
- * @brief Set the Main Stack Pointer\r
- *\r
- * @param uint32_t Main Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value mainStackPointer to the MSP \r
- * (main stack pointer) Cortex processor register\r
- */\r
-extern void __set_MSP(uint32_t topOfMainStack);\r
-\r
-/**\r
- * @brief Reverse byte order in unsigned short value\r
- *\r
- * @param uint16_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse byte order in unsigned short value\r
- */\r
-extern uint32_t __REV16(uint16_t value);\r
-\r
-/*\r
- * @brief Reverse byte order in signed short value with sign extension to integer\r
- *\r
- * @param int16_t value to reverse\r
- * @return int32_t reversed value\r
- *\r
- * Reverse byte order in signed short value with sign extension to integer\r
- */\r
-extern int32_t __REVSH(int16_t value);\r
-\r
-\r
-#if (__ARMCC_VERSION < 400000)\r
-\r
-/**\r
- * @brief Remove the exclusive lock created by ldrex\r
- *\r
- * @param none\r
- * @return none\r
- *\r
- * Removes the exclusive lock which is created by ldrex.\r
- */\r
-extern void __CLREX(void);\r
-\r
-/**\r
- * @brief Return the Base Priority value\r
- *\r
- * @param none\r
- * @return uint32_t BasePriority\r
- *\r
- * Return the content of the base priority register\r
- */\r
-extern uint32_t __get_BASEPRI(void);\r
-\r
-/**\r
- * @brief Set the Base Priority value\r
- *\r
- * @param uint32_t BasePriority\r
- * @return none\r
- *\r
- * Set the base priority register\r
- */\r
-extern void __set_BASEPRI(uint32_t basePri);\r
-\r
-/**\r
- * @brief Return the Priority Mask value\r
- *\r
- * @param none\r
- * @return uint32_t PriMask\r
- *\r
- * Return the state of the priority mask bit from the priority mask\r
- * register\r
- */\r
-extern uint32_t __get_PRIMASK(void);\r
-\r
-/**\r
- * @brief Set the Priority Mask value\r
- *\r
- * @param uint32_t PriMask\r
- * @return none\r
- *\r
- * Set the priority mask bit in the priority mask register\r
- */\r
-extern void __set_PRIMASK(uint32_t priMask);\r
-\r
-/**\r
- * @brief Return the Fault Mask value\r
- *\r
- * @param none\r
- * @return uint32_t FaultMask\r
- *\r
- * Return the content of the fault mask register\r
- */\r
-extern uint32_t __get_FAULTMASK(void);\r
-\r
-/**\r
- * @brief Set the Fault Mask value\r
- *\r
- * @param uint32_t faultMask value\r
- * @return none\r
- *\r
- * Set the fault mask register\r
- */\r
-extern void __set_FAULTMASK(uint32_t faultMask);\r
-\r
-/**\r
- * @brief Return the Control Register value\r
- * \r
- * @param none\r
- * @return uint32_t Control value\r
- *\r
- * Return the content of the control register\r
- */\r
-extern uint32_t __get_CONTROL(void);\r
-\r
-/**\r
- * @brief Set the Control Register value\r
- *\r
- * @param uint32_t Control value\r
- * @return none\r
- *\r
- * Set the control register\r
- */\r
-extern void __set_CONTROL(uint32_t control);\r
-\r
-#else /* (__ARMCC_VERSION >= 400000) */\r
-\r
-\r
-/**\r
- * @brief Remove the exclusive lock created by ldrex\r
- *\r
- * @param none\r
- * @return none\r
- *\r
- * Removes the exclusive lock which is created by ldrex.\r
- */\r
-#define __CLREX __clrex\r
-\r
-/**\r
- * @brief Return the Base Priority value\r
- *\r
- * @param none\r
- * @return uint32_t BasePriority\r
- *\r
- * Return the content of the base priority register\r
- */\r
-static __INLINE uint32_t __get_BASEPRI(void)\r
-{\r
- register uint32_t __regBasePri __ASM("basepri");\r
- return(__regBasePri);\r
-}\r
-\r
-/**\r
- * @brief Set the Base Priority value\r
- *\r
- * @param uint32_t BasePriority\r
- * @return none\r
- *\r
- * Set the base priority register\r
- */\r
-static __INLINE void __set_BASEPRI(uint32_t basePri)\r
-{\r
- register uint32_t __regBasePri __ASM("basepri");\r
- __regBasePri = (basePri & 0x1ff);\r
-}\r
-\r
-/**\r
- * @brief Return the Priority Mask value\r
- *\r
- * @param none\r
- * @return uint32_t PriMask\r
- *\r
- * Return the state of the priority mask bit from the priority mask\r
- * register\r
- */\r
-static __INLINE uint32_t __get_PRIMASK(void)\r
-{\r
- register uint32_t __regPriMask __ASM("primask");\r
- return(__regPriMask);\r
-}\r
-\r
-/**\r
- * @brief Set the Priority Mask value\r
- *\r
- * @param uint32_t PriMask\r
- * @return none\r
- *\r
- * Set the priority mask bit in the priority mask register\r
- */\r
-static __INLINE void __set_PRIMASK(uint32_t priMask)\r
-{\r
- register uint32_t __regPriMask __ASM("primask");\r
- __regPriMask = (priMask);\r
-}\r
-\r
-/**\r
- * @brief Return the Fault Mask value\r
- *\r
- * @param none\r
- * @return uint32_t FaultMask\r
- *\r
- * Return the content of the fault mask register\r
- */\r
-static __INLINE uint32_t __get_FAULTMASK(void)\r
-{\r
- register uint32_t __regFaultMask __ASM("faultmask");\r
- return(__regFaultMask);\r
-}\r
-\r
-/**\r
- * @brief Set the Fault Mask value\r
- *\r
- * @param uint32_t faultMask value\r
- * @return none\r
- *\r
- * Set the fault mask register\r
- */\r
-static __INLINE void __set_FAULTMASK(uint32_t faultMask)\r
-{\r
- register uint32_t __regFaultMask __ASM("faultmask");\r
- __regFaultMask = (faultMask & 1);\r
-}\r
-\r
-/**\r
- * @brief Return the Control Register value\r
- * \r
- * @param none\r
- * @return uint32_t Control value\r
- *\r
- * Return the content of the control register\r
- */\r
-static __INLINE uint32_t __get_CONTROL(void)\r
-{\r
- register uint32_t __regControl __ASM("control");\r
- return(__regControl);\r
-}\r
-\r
-/**\r
- * @brief Set the Control Register value\r
- *\r
- * @param uint32_t Control value\r
- * @return none\r
- *\r
- * Set the control register\r
- */\r
-static __INLINE void __set_CONTROL(uint32_t control)\r
-{\r
- register uint32_t __regControl __ASM("control");\r
- __regControl = control;\r
-}\r
-\r
-#endif /* __ARMCC_VERSION */ \r
-\r
-\r
-\r
-#elif (defined (__ICCARM__)) /*------------------ ICC Compiler -------------------*/\r
-/* IAR iccarm specific functions */\r
-\r
-#define __enable_irq __enable_interrupt /*!< global Interrupt enable */\r
-#define __disable_irq __disable_interrupt /*!< global Interrupt disable */\r
-\r
-static __INLINE void __enable_fault_irq() { __ASM ("cpsie f"); }\r
-static __INLINE void __disable_fault_irq() { __ASM ("cpsid f"); }\r
-\r
-#define __NOP __no_operation() /*!< no operation intrinsic in IAR Compiler */ \r
-static __INLINE void __WFI() { __ASM ("wfi"); }\r
-static __INLINE void __WFE() { __ASM ("wfe"); }\r
-static __INLINE void __SEV() { __ASM ("sev"); }\r
-static __INLINE void __CLREX() { __ASM ("clrex"); }\r
-\r
-/* intrinsic void __ISB(void) */\r
-/* intrinsic void __DSB(void) */\r
-/* intrinsic void __DMB(void) */\r
-/* intrinsic void __set_PRIMASK(); */\r
-/* intrinsic void __get_PRIMASK(); */\r
-/* intrinsic void __set_FAULTMASK(); */\r
-/* intrinsic void __get_FAULTMASK(); */\r
-/* intrinsic uint32_t __REV(uint32_t value); */\r
-/* intrinsic uint32_t __REVSH(uint32_t value); */\r
-/* intrinsic unsigned long __STREX(unsigned long, unsigned long); */\r
-/* intrinsic unsigned long __LDREX(unsigned long *); */\r
-\r
-\r
-/**\r
- * @brief Return the Process Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t ProcessStackPointer\r
- *\r
- * Return the actual process stack pointer\r
- */\r
-extern uint32_t __get_PSP(void);\r
-\r
-/**\r
- * @brief Set the Process Stack Pointer\r
- *\r
- * @param uint32_t Process Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value ProcessStackPointer to the MSP \r
- * (process stack pointer) Cortex processor register\r
- */\r
-extern void __set_PSP(uint32_t topOfProcStack);\r
-\r
-/**\r
- * @brief Return the Main Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t Main Stack Pointer\r
- *\r
- * Return the current value of the MSP (main stack pointer)\r
- * Cortex processor register\r
- */\r
-extern uint32_t __get_MSP(void);\r
-\r
-/**\r
- * @brief Set the Main Stack Pointer\r
- *\r
- * @param uint32_t Main Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value mainStackPointer to the MSP \r
- * (main stack pointer) Cortex processor register\r
- */\r
-extern void __set_MSP(uint32_t topOfMainStack);\r
-\r
-/**\r
- * @brief Reverse byte order in unsigned short value\r
- *\r
- * @param uint16_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse byte order in unsigned short value\r
- */\r
-extern uint32_t __REV16(uint16_t value);\r
-\r
-/**\r
- * @brief Reverse bit order of value\r
- *\r
- * @param uint32_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse bit order of value\r
- */\r
-extern uint32_t __RBIT(uint32_t value);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint8_t* address\r
- * @return uint8_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint8_t __LDREXB(uint8_t *addr);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint16_t* address\r
- * @return uint16_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint16_t __LDREXH(uint16_t *addr);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint32_t* address\r
- * @return uint32_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint32_t __LDREXW(uint32_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint8_t *address\r
- * @param uint8_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXB(uint8_t value, uint8_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint16_t *address\r
- * @param uint16_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXH(uint16_t value, uint16_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint32_t *address\r
- * @param uint32_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXW(uint32_t value, uint32_t *addr);\r
-\r
-\r
-\r
-#elif (defined (__GNUC__)) /*------------------ GNU Compiler ---------------------*/\r
-/* GNU gcc specific functions */\r
-\r
-static __INLINE void __enable_irq() { __ASM volatile ("cpsie i"); }\r
-static __INLINE void __disable_irq() { __ASM volatile ("cpsid i"); }\r
-\r
-static __INLINE void __enable_fault_irq() { __ASM volatile ("cpsie f"); }\r
-static __INLINE void __disable_fault_irq() { __ASM volatile ("cpsid f"); }\r
-\r
-static __INLINE void __NOP() { __ASM volatile ("nop"); }\r
-static __INLINE void __WFI() { __ASM volatile ("wfi"); }\r
-static __INLINE void __WFE() { __ASM volatile ("wfe"); }\r
-static __INLINE void __SEV() { __ASM volatile ("sev"); }\r
-static __INLINE void __ISB() { __ASM volatile ("isb"); }\r
-static __INLINE void __DSB() { __ASM volatile ("dsb"); }\r
-static __INLINE void __DMB() { __ASM volatile ("dmb"); }\r
-static __INLINE void __CLREX() { __ASM volatile ("clrex"); }\r
-\r
-\r
-/**\r
- * @brief Return the Process Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t ProcessStackPointer\r
- *\r
- * Return the actual process stack pointer\r
- */\r
-extern uint32_t __get_PSP(void);\r
-\r
-/**\r
- * @brief Set the Process Stack Pointer\r
- *\r
- * @param uint32_t Process Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value ProcessStackPointer to the MSP \r
- * (process stack pointer) Cortex processor register\r
- */\r
-extern void __set_PSP(uint32_t topOfProcStack);\r
-\r
-/**\r
- * @brief Return the Main Stack Pointer\r
- *\r
- * @param none\r
- * @return uint32_t Main Stack Pointer\r
- *\r
- * Return the current value of the MSP (main stack pointer)\r
- * Cortex processor register\r
- */\r
-extern uint32_t __get_MSP(void);\r
-\r
-/**\r
- * @brief Set the Main Stack Pointer\r
- *\r
- * @param uint32_t Main Stack Pointer\r
- * @return none\r
- *\r
- * Assign the value mainStackPointer to the MSP \r
- * (main stack pointer) Cortex processor register\r
- */\r
-extern void __set_MSP(uint32_t topOfMainStack);\r
-\r
-/**\r
- * @brief Return the Base Priority value\r
- *\r
- * @param none\r
- * @return uint32_t BasePriority\r
- *\r
- * Return the content of the base priority register\r
- */\r
-extern uint32_t __get_BASEPRI(void);\r
-\r
-/**\r
- * @brief Set the Base Priority value\r
- *\r
- * @param uint32_t BasePriority\r
- * @return none\r
- *\r
- * Set the base priority register\r
- */\r
-extern void __set_BASEPRI(uint32_t basePri);\r
-\r
-/**\r
- * @brief Return the Priority Mask value\r
- *\r
- * @param none\r
- * @return uint32_t PriMask\r
- *\r
- * Return the state of the priority mask bit from the priority mask\r
- * register\r
- */\r
-extern uint32_t __get_PRIMASK(void);\r
-\r
-/**\r
- * @brief Set the Priority Mask value\r
- *\r
- * @param uint32_t PriMask\r
- * @return none\r
- *\r
- * Set the priority mask bit in the priority mask register\r
- */\r
-extern void __set_PRIMASK(uint32_t priMask);\r
-\r
-/**\r
- * @brief Return the Fault Mask value\r
- *\r
- * @param none\r
- * @return uint32_t FaultMask\r
- *\r
- * Return the content of the fault mask register\r
- */\r
-extern uint32_t __get_FAULTMASK(void);\r
-\r
-/**\r
- * @brief Set the Fault Mask value\r
- *\r
- * @param uint32_t faultMask value\r
- * @return none\r
- *\r
- * Set the fault mask register\r
- */\r
-extern void __set_FAULTMASK(uint32_t faultMask);\r
-\r
-/**\r
- * @brief Return the Control Register value\r
-* \r
-* @param none\r
-* @return uint32_t Control value\r
- *\r
- * Return the content of the control register\r
- */\r
-extern uint32_t __get_CONTROL(void);\r
-\r
-/**\r
- * @brief Set the Control Register value\r
- *\r
- * @param uint32_t Control value\r
- * @return none\r
- *\r
- * Set the control register\r
- */\r
-extern void __set_CONTROL(uint32_t control);\r
-\r
-/**\r
- * @brief Reverse byte order in integer value\r
- *\r
- * @param uint32_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse byte order in integer value\r
- */\r
-extern uint32_t __REV(uint32_t value);\r
-\r
-/**\r
- * @brief Reverse byte order in unsigned short value\r
- *\r
- * @param uint16_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse byte order in unsigned short value\r
- */\r
-extern uint32_t __REV16(uint16_t value);\r
-\r
-/*\r
- * Reverse byte order in signed short value with sign extension to integer\r
- *\r
- * @param int16_t value to reverse\r
- * @return int32_t reversed value\r
- *\r
- * @brief Reverse byte order in signed short value with sign extension to integer\r
- */\r
-extern int32_t __REVSH(int16_t value);\r
-\r
-/**\r
- * @brief Reverse bit order of value\r
- *\r
- * @param uint32_t value to reverse\r
- * @return uint32_t reversed value\r
- *\r
- * Reverse bit order of value\r
- */\r
-extern uint32_t __RBIT(uint32_t value);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint8_t* address\r
- * @return uint8_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint8_t __LDREXB(uint8_t *addr);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint16_t* address\r
- * @return uint16_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint16_t __LDREXH(uint16_t *addr);\r
-\r
-/**\r
- * @brief LDR Exclusive\r
- *\r
- * @param uint32_t* address\r
- * @return uint32_t value of (*address)\r
- *\r
- * Exclusive LDR command\r
- */\r
-extern uint32_t __LDREXW(uint32_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint8_t *address\r
- * @param uint8_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXB(uint8_t value, uint8_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint16_t *address\r
- * @param uint16_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXH(uint16_t value, uint16_t *addr);\r
-\r
-/**\r
- * @brief STR Exclusive\r
- *\r
- * @param uint32_t *address\r
- * @param uint32_t value to store\r
- * @return uint32_t successful / failed\r
- *\r
- * Exclusive STR command\r
- */\r
-extern uint32_t __STREXW(uint32_t value, uint32_t *addr);\r
-\r
-\r
-#elif (defined (__TASKING__)) /*------------------ TASKING Compiler ---------------------*/\r
-/* TASKING carm specific functions */\r
-\r
-/*\r
- * The CMSIS functions have been implemented as intrinsics in the compiler.\r
- * Please use "carm -?i" to get an up to date list of all instrinsics,\r
- * Including the CMSIS ones.\r
- */\r
-\r
-#endif\r
-\r
-\r
-\r
-/* ########################## NVIC functions #################################### */\r
-\r
-\r
-/**\r
- * @brief Set the Priority Grouping in NVIC Interrupt Controller\r
- *\r
- * @param uint32_t priority_grouping is priority grouping field\r
- * @return none \r
- *\r
- * Set the priority grouping field using the required unlock sequence.\r
- * The parameter priority_grouping is assigned to the field \r
- * SCB->AIRCR [10:8] PRIGROUP field. Only values from 0..7 are used.\r
- * In case of a conflict between priority grouping and available\r
- * priority bits (__NVIC_PRIO_BITS) the smallest possible priority group is set.\r
- */\r
-static __INLINE void NVIC_SetPriorityGrouping(uint32_t PriorityGroup)\r
-{\r
- uint32_t reg_value;\r
- uint32_t PriorityGroupTmp = (PriorityGroup & 0x07); /* only values 0..7 are used */\r
- \r
- reg_value = SCB->AIRCR; /* read old register configuration */\r
- reg_value &= ~((0xFFFFU << 16) | (0x0F << 8)); /* clear bits to change */\r
- reg_value = ((reg_value | NVIC_AIRCR_VECTKEY | (PriorityGroupTmp << 8))); /* Insert write key and priorty group */\r
- SCB->AIRCR = reg_value;\r
-}\r
-\r
-/**\r
- * @brief Get the Priority Grouping from NVIC Interrupt Controller\r
- *\r
- * @param none\r
- * @return uint32_t priority grouping field \r
- *\r
- * Get the priority grouping from NVIC Interrupt Controller.\r
- * priority grouping is SCB->AIRCR [10:8] PRIGROUP field.\r
- */\r
-static __INLINE uint32_t NVIC_GetPriorityGrouping(void)\r
-{\r
- return ((SCB->AIRCR >> 8) & 0x07); /* read priority grouping field */\r
-}\r
-\r
-/**\r
- * @brief Enable Interrupt in NVIC Interrupt Controller\r
- *\r
- * @param IRQn_Type IRQn specifies the interrupt number\r
- * @return none \r
- *\r
- * Enable a device specific interupt in the NVIC interrupt controller.\r
- * The interrupt number cannot be a negative value.\r
- */\r
-static __INLINE void NVIC_EnableIRQ(IRQn_Type IRQn)\r
-{\r
- NVIC->ISER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* enable interrupt */\r
-}\r
-\r
-/**\r
- * @brief Disable the interrupt line for external interrupt specified\r
- * \r
- * @param IRQn_Type IRQn is the positive number of the external interrupt\r
- * @return none\r
- * \r
- * Disable a device specific interupt in the NVIC interrupt controller.\r
- * The interrupt number cannot be a negative value.\r
- */\r
-static __INLINE void NVIC_DisableIRQ(IRQn_Type IRQn)\r
-{\r
- NVIC->ICER[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* disable interrupt */\r
-}\r
-\r
-/**\r
- * @brief Read the interrupt pending bit for a device specific interrupt source\r
- * \r
- * @param IRQn_Type IRQn is the number of the device specifc interrupt\r
- * @return uint32_t 1 if pending interrupt else 0\r
- *\r
- * Read the pending register in NVIC and return 1 if its status is pending, \r
- * otherwise it returns 0\r
- */\r
-static __INLINE uint32_t NVIC_GetPendingIRQ(IRQn_Type IRQn)\r
-{\r
- return((uint32_t) ((NVIC->ISPR[(uint32_t)(IRQn) >> 5] & (1 << ((uint32_t)(IRQn) & 0x1F)))?1:0)); /* Return 1 if pending else 0 */\r
-}\r
-\r
-/**\r
- * @brief Set the pending bit for an external interrupt\r
- * \r
- * @param IRQn_Type IRQn is the Number of the interrupt\r
- * @return none\r
- *\r
- * Set the pending bit for the specified interrupt.\r
- * The interrupt number cannot be a negative value.\r
- */\r
-static __INLINE void NVIC_SetPendingIRQ(IRQn_Type IRQn)\r
-{\r
- NVIC->ISPR[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* set interrupt pending */\r
-}\r
-\r
-/**\r
- * @brief Clear the pending bit for an external interrupt\r
- *\r
- * @param IRQn_Type IRQn is the Number of the interrupt\r
- * @return none\r
- *\r
- * Clear the pending bit for the specified interrupt. \r
- * The interrupt number cannot be a negative value.\r
- */\r
-static __INLINE void NVIC_ClearPendingIRQ(IRQn_Type IRQn)\r
-{\r
- NVIC->ICPR[((uint32_t)(IRQn) >> 5)] = (1 << ((uint32_t)(IRQn) & 0x1F)); /* Clear pending interrupt */\r
-}\r
-\r
-/**\r
- * @brief Read the active bit for an external interrupt\r
- *\r
- * @param IRQn_Type IRQn is the Number of the interrupt\r
- * @return uint32_t 1 if active else 0\r
- *\r
- * Read the active register in NVIC and returns 1 if its status is active, \r
- * otherwise it returns 0.\r
- */\r
-static __INLINE uint32_t NVIC_GetActive(IRQn_Type IRQn)\r
-{\r
- return((uint32_t)((NVIC->IABR[(uint32_t)(IRQn) >> 5] & (1 << ((uint32_t)(IRQn) & 0x1F)))?1:0)); /* Return 1 if active else 0 */\r
-}\r
-\r
-/**\r
- * @brief Set the priority for an interrupt\r
- *\r
- * @param IRQn_Type IRQn is the Number of the interrupt\r
- * @param priority is the priority for the interrupt\r
- * @return none\r
- *\r
- * Set the priority for the specified interrupt. The interrupt \r
- * number can be positive to specify an external (device specific) \r
- * interrupt, or negative to specify an internal (core) interrupt. \n\r
- *\r
- * Note: The priority cannot be set for every core interrupt.\r
- */\r
-static __INLINE void NVIC_SetPriority(IRQn_Type IRQn, uint32_t priority)\r
-{\r
- if(IRQn < 0) {\r
- SCB->SHP[((uint32_t)(IRQn) & 0xF)-4] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff); } /* set Priority for Cortex-M3 System Interrupts */\r
- else {\r
- NVIC->IP[(uint32_t)(IRQn)] = ((priority << (8 - __NVIC_PRIO_BITS)) & 0xff); } /* set Priority for device specific Interrupts */\r
-}\r
-\r
-/**\r
- * @brief Read the priority for an interrupt\r
- *\r
- * @param IRQn_Type IRQn is the Number of the interrupt\r
- * @return uint32_t priority is the priority for the interrupt\r
- *\r
- * Read the priority for the specified interrupt. The interrupt \r
- * number can be positive to specify an external (device specific) \r
- * interrupt, or negative to specify an internal (core) interrupt.\r
- *\r
- * The returned priority value is automatically aligned to the implemented\r
- * priority bits of the microcontroller.\r
- *\r
- * Note: The priority cannot be set for every core interrupt.\r
- */\r
-static __INLINE uint32_t NVIC_GetPriority(IRQn_Type IRQn)\r
-{\r
-\r
- if(IRQn < 0) {\r
- return((uint32_t)(SCB->SHP[((uint32_t)(IRQn) & 0xF)-4] >> (8 - __NVIC_PRIO_BITS))); } /* get priority for Cortex-M3 system interrupts */\r
- else {\r
- return((uint32_t)(NVIC->IP[(uint32_t)(IRQn)] >> (8 - __NVIC_PRIO_BITS))); } /* get priority for device specific interrupts */\r
-}\r
-\r
-\r
-/**\r
- * @brief Encode the priority for an interrupt\r
- *\r
- * @param uint32_t PriorityGroup is the used priority group\r
- * @param uint32_t PreemptPriority is the preemptive priority value (starting from 0)\r
- * @param uint32_t SubPriority is the sub priority value (starting from 0)\r
- * @return uint32_t the priority for the interrupt\r
- *\r
- * Encode the priority for an interrupt with the given priority group,\r
- * preemptive priority value and sub priority value.\r
- * In case of a conflict between priority grouping and available\r
- * priority bits (__NVIC_PRIO_BITS) the samllest possible priority group is set.\r
- *\r
- * The returned priority value can be used for NVIC_SetPriority(...) function\r
- */\r
-static __INLINE uint32_t NVIC_EncodePriority (uint32_t PriorityGroup, uint32_t PreemptPriority, uint32_t SubPriority)\r
-{\r
- uint32_t PriorityGroupTmp = (PriorityGroup & 0x07); /* only values 0..7 are used */\r
- uint32_t PreemptPriorityBits;\r
- uint32_t SubPriorityBits;\r
-\r
- PreemptPriorityBits = ((7 - PriorityGroupTmp) > __NVIC_PRIO_BITS) ? __NVIC_PRIO_BITS : 7 - PriorityGroupTmp;\r
- SubPriorityBits = ((PriorityGroupTmp + __NVIC_PRIO_BITS) < 7) ? 0 : PriorityGroupTmp - 7 + __NVIC_PRIO_BITS;\r
- \r
- return (\r
- ((PreemptPriority & ((1 << (PreemptPriorityBits)) - 1)) << SubPriorityBits) |\r
- ((SubPriority & ((1 << (SubPriorityBits )) - 1)))\r
- );\r
-}\r
-\r
-\r
-/**\r
- * @brief Decode the priority of an interrupt\r
- *\r
- * @param uint32_t Priority the priority for the interrupt\r
- * @param uint32_t PrioGroup is the used priority group\r
- * @param uint32_t* pPreemptPrio is the preemptive priority value (starting from 0)\r
- * @param uint32_t* pSubPrio is the sub priority value (starting from 0)\r
- * @return none\r
- *\r
- * Decode an interrupt priority value with the given priority group to \r
- * preemptive priority value and sub priority value.\r
- * In case of a conflict between priority grouping and available\r
- * priority bits (__NVIC_PRIO_BITS) the samllest possible priority group is set.\r
- *\r
- * The priority value can be retrieved with NVIC_GetPriority(...) function\r
- */\r
-static __INLINE void NVIC_DecodePriority (uint32_t Priority, uint32_t PriorityGroup, uint32_t* pPreemptPriority, uint32_t* pSubPriority)\r
-{\r
- uint32_t PriorityGroupTmp = (PriorityGroup & 0x07); /* only values 0..7 are used */\r
- uint32_t PreemptPriorityBits;\r
- uint32_t SubPriorityBits;\r
-\r
- PreemptPriorityBits = ((7 - PriorityGroupTmp) > __NVIC_PRIO_BITS) ? __NVIC_PRIO_BITS : 7 - PriorityGroupTmp;\r
- SubPriorityBits = ((PriorityGroupTmp + __NVIC_PRIO_BITS) < 7) ? 0 : PriorityGroupTmp - 7 + __NVIC_PRIO_BITS;\r
- \r
- *pPreemptPriority = (Priority >> SubPriorityBits) & ((1 << (PreemptPriorityBits)) - 1);\r
- *pSubPriority = (Priority ) & ((1 << (SubPriorityBits )) - 1);\r
-}\r
-\r
-\r
-\r
-/* ################################## SysTick function ############################################ */\r
-\r
-#if (!defined (__Vendor_SysTickConfig)) || (__Vendor_SysTickConfig == 0)\r
-\r
-/* SysTick constants */\r
-#define SYSTICK_ENABLE 0 /* Config-Bit to start or stop the SysTick Timer */\r
-#define SYSTICK_TICKINT 1 /* Config-Bit to enable or disable the SysTick interrupt */\r
-#define SYSTICK_CLKSOURCE 2 /* Clocksource has the offset 2 in SysTick Control and Status Register */\r
-#define SYSTICK_MAXCOUNT ((1<<24) -1) /* SysTick MaxCount */\r
-\r
-/**\r
- * @brief Initialize and start the SysTick counter and its interrupt.\r
- *\r
- * @param uint32_t ticks is the number of ticks between two interrupts\r
- * @return none\r
- *\r
- * Initialise the system tick timer and its interrupt and start the\r
- * system tick timer / counter in free running mode to generate \r
- * periodical interrupts.\r
- */\r
-static __INLINE uint32_t SysTick_Config(uint32_t ticks)\r
-{ \r
- if (ticks > SYSTICK_MAXCOUNT) return (1); /* Reload value impossible */\r
-\r
- SysTick->LOAD = (ticks & SYSTICK_MAXCOUNT) - 1; /* set reload register */\r
- NVIC_SetPriority (SysTick_IRQn, (1<<__NVIC_PRIO_BITS) - 1); /* set Priority for Cortex-M0 System Interrupts */\r
- SysTick->VAL = (0x00); /* Load the SysTick Counter Value */\r
- SysTick->CTRL = (1 << SYSTICK_CLKSOURCE) | (1<<SYSTICK_ENABLE) | (1<<SYSTICK_TICKINT); /* Enable SysTick IRQ and SysTick Timer */\r
- return (0); /* Function successful */\r
-}\r
-\r
-#endif\r
-\r
-\r
-\r
-\r
-\r
-/* ################################## Reset function ############################################ */\r
-\r
-/**\r
- * @brief Initiate a system reset request.\r
- *\r
- * @param none\r
- * @return none\r
- *\r
- * Initialize a system reset request to reset the MCU\r
- */\r
-static __INLINE void NVIC_SystemReset(void)\r
-{\r
- SCB->AIRCR = (NVIC_AIRCR_VECTKEY | (SCB->AIRCR & (0x700)) | (1<<NVIC_SYSRESETREQ)); /* Keep priority group unchanged */\r
- __DSB(); /* Ensure completion of memory access */ \r
- while(1); /* wait until reset */\r
-}\r
-\r
-\r
-/* ################################## Debug Output function ############################################ */\r
-\r
-\r
-/**\r
- * @brief Outputs a character via the ITM channel 0\r
- *\r
- * @param uint32_t character to output\r
- * @return uint32_t input character\r
- *\r
- * The function outputs a character via the ITM channel 0. \r
- * The function returns when no debugger is connected that has booked the output. \r
- * It is blocking when a debugger is connected, but the previous character send is not transmitted. \r
- */\r
-static __INLINE uint32_t ITM_SendChar (uint32_t ch)\r
-{\r
- if (ch == '\n') ITM_SendChar('\r');\r
- \r
- if ((CoreDebug->DEMCR & CoreDebug_DEMCR_TRCENA) &&\r
- (ITM->TCR & ITM_TCR_ITMENA) &&\r
- (ITM->TER & (1UL << 0)) ) \r
- {\r
- while (ITM->PORT[0].u32 == 0);\r
- ITM->PORT[0].u8 = (uint8_t) ch;\r
- } \r
- return (ch);\r
-}\r
-\r
-#ifdef __cplusplus\r
-}\r
-#endif\r
-\r
-#endif /* __CM3_CORE_H__ */\r
-\r
-/*lint -restore */\r
+++ /dev/null
-//*****************************************************************************\r
-// +--+ \r
-// | ++----+ \r
-// +-++ | \r
-// | | \r
-// +-+--+ | \r
-// | +--+--+ \r
-// +----+ Copyright (c) 2009 Code Red Technologies Ltd. \r
-//\r
-// Microcontroller Startup code for use with Red Suite\r
-//\r
-// Software License Agreement\r
-// \r
-// The software is owned by Code Red Technologies and/or its suppliers, and is \r
-// protected under applicable copyright laws. All rights are reserved. Any \r
-// use in violation of the foregoing restrictions may subject the user to criminal \r
-// sanctions under applicable laws, as well as to civil liability for the breach \r
-// of the terms and conditions of this license.\r
-// \r
-// THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
-// OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
-// MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
-// USE OF THIS SOFTWARE FOR COMMERCIAL DEVELOPMENT AND/OR EDUCATION IS SUBJECT\r
-// TO A CURRENT END USER LICENSE AGREEMENT (COMMERCIAL OR EDUCATIONAL) WITH\r
-// CODE RED TECHNOLOGIES LTD. \r
-//\r
-//*****************************************************************************\r
-#define WEAK __attribute__ ((weak))\r
-#define ALIAS(f) __attribute__ ((weak, alias (#f)))\r
-\r
-//*****************************************************************************\r
-//\r
-// Forward declaration of the default handlers.\r
-//\r
-//*****************************************************************************\r
-void Reset_Handler(void);\r
-void ResetISR(void) ALIAS(Reset_Handler);\r
-static void NMI_Handler(void);\r
-static void HardFault_Handler(void);\r
-static void MemManage_Handler(void) __attribute__((naked));\r
-static void BusFault_Handler(void) __attribute__((naked));\r
-static void UsageFault_Handler(void) __attribute__((naked));\r
-static void DebugMon_Handler(void);\r
-\r
-//*****************************************************************************\r
-//\r
-// Forward declaration of the specific IRQ handlers. These are aliased\r
-// to the IntDefaultHandler, which is a 'forever' loop. When the application\r
-// defines a handler (with the same name), this will automatically take \r
-// precedence over these weak definitions\r
-//\r
-//*****************************************************************************\r
-void WDT_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void TIMER0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void TIMER1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void TIMER2_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void TIMER3_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void UART0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void UART1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void UART2_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void UART3_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void PWM1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void I2C0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void I2C1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void I2C2_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void SPI_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void SSP0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void SSP1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void PLL0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void RTC_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void EINT0_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void EINT1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void EINT2_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void EINT3_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void ADC_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void BOD_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void USB_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void CAN_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void DMA_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void I2S_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void ENET_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void RIT_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void MCPWM_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void QEI_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-void PLL1_IRQHandler(void) ALIAS(IntDefaultHandler);\r
-\r
-extern void xPortSysTickHandler(void);\r
-extern void xPortPendSVHandler(void);\r
-extern void vPortSVCHandler( void );\r
-\r
-\r
-//*****************************************************************************\r
-//\r
-// The entry point for the C++ library startup\r
-//\r
-//*****************************************************************************\r
-extern WEAK void __libc_init_array(void);\r
-\r
-//*****************************************************************************\r
-//\r
-// The entry point for the application.\r
-// __main() is the entry point for redlib based applications\r
-// main() is the entry point for newlib based applications\r
-//\r
-//*****************************************************************************\r
-extern WEAK void __main(void);\r
-extern WEAK void main(void);\r
-//*****************************************************************************\r
-//\r
-// External declaration for the pointer to the stack top from the Linker Script\r
-//\r
-//*****************************************************************************\r
-extern void _vStackTop;\r
-\r
-//*****************************************************************************\r
-//\r
-// The vector table.\r
-// This relies on the linker script to place at correct location in memory.\r
-//\r
-//*****************************************************************************\r
-__attribute__ ((section(".isr_vector")))\r
-void (* const g_pfnVectors[])(void) =\r
-{\r
- // Core Level - CM3\r
- (void *)&_vStackTop, // The initial stack pointer\r
- Reset_Handler, // The reset handler\r
- NMI_Handler, // The NMI handler\r
- HardFault_Handler, // The hard fault handler\r
- MemManage_Handler, // The MPU fault handler\r
- BusFault_Handler, // The bus fault handler\r
- UsageFault_Handler, // The usage fault handler\r
- 0, // Reserved\r
- 0, // Reserved\r
- 0, // Reserved\r
- 0, // Reserved\r
- vPortSVCHandler, // SVCall handler\r
- DebugMon_Handler, // Debug monitor handler\r
- 0, // Reserved\r
- xPortPendSVHandler, // The PendSV handler\r
- xPortSysTickHandler, // The SysTick handler\r
-\r
- // Chip Level - LPC17\r
- WDT_IRQHandler, // 16, 0x40 - WDT\r
- TIMER0_IRQHandler, // 17, 0x44 - TIMER0\r
- TIMER1_IRQHandler, // 18, 0x48 - TIMER1\r
- TIMER2_IRQHandler, // 19, 0x4c - TIMER2\r
- TIMER3_IRQHandler, // 20, 0x50 - TIMER3\r
- UART0_IRQHandler, // 21, 0x54 - UART0\r
- UART1_IRQHandler, // 22, 0x58 - UART1\r
- UART2_IRQHandler, // 23, 0x5c - UART2\r
- UART3_IRQHandler, // 24, 0x60 - UART3\r
- PWM1_IRQHandler, // 25, 0x64 - PWM1\r
- I2C0_IRQHandler, // 26, 0x68 - I2C0\r
- I2C1_IRQHandler, // 27, 0x6c - I2C1\r
- I2C2_IRQHandler, // 28, 0x70 - I2C2\r
- SPI_IRQHandler, // 29, 0x74 - SPI\r
- SSP0_IRQHandler, // 30, 0x78 - SSP0\r
- SSP1_IRQHandler, // 31, 0x7c - SSP1\r
- PLL0_IRQHandler, // 32, 0x80 - PLL0 (Main PLL)\r
- RTC_IRQHandler, // 33, 0x84 - RTC\r
- EINT0_IRQHandler, // 34, 0x88 - EINT0\r
- EINT1_IRQHandler, // 35, 0x8c - EINT1\r
- EINT2_IRQHandler, // 36, 0x90 - EINT2\r
- EINT3_IRQHandler, // 37, 0x94 - EINT3\r
- ADC_IRQHandler, // 38, 0x98 - ADC\r
- BOD_IRQHandler, // 39, 0x9c - BOD\r
- USB_IRQHandler, // 40, 0xA0 - USB\r
- CAN_IRQHandler, // 41, 0xa4 - CAN\r
- DMA_IRQHandler, // 42, 0xa8 - GP DMA\r
- I2S_IRQHandler, // 43, 0xac - I2S\r
- ENET_IRQHandler, // Ethernet.\r
- RIT_IRQHandler, // 45, 0xb4 - RITINT\r
- MCPWM_IRQHandler, // 46, 0xb8 - Motor Control PWM\r
- QEI_IRQHandler, // 47, 0xbc - Quadrature Encoder\r
- PLL1_IRQHandler, // 48, 0xc0 - PLL1 (USB PLL)\r
-};\r
-\r
-//*****************************************************************************\r
-//\r
-// The following are constructs created by the linker, indicating where the\r
-// the "data" and "bss" segments reside in memory. The initializers for the\r
-// for the "data" segment resides immediately following the "text" segment.\r
-//\r
-//*****************************************************************************\r
-extern unsigned long _etext;\r
-extern unsigned long _data;\r
-extern unsigned long _edata;\r
-extern unsigned long _bss;\r
-extern unsigned long _ebss;\r
-extern unsigned long __privileged_data_start__;\r
-extern unsigned long __privileged_data_end__;\r
-\r
-//*****************************************************************************\r
-// Reset entry point for your code.\r
-// Sets up a simple runtime environment and initializes the C/C++\r
-// library.\r
-//\r
-//*****************************************************************************\r
-void Reset_Handler(void)\r
-{\r
- unsigned long *pulSrc, *pulDest;\r
-\r
- //\r
- // Copy the data segment initializers from flash to SRAM.\r
- //\r
- pulSrc = &_etext;\r
- for(pulDest = &_data; pulDest < &_edata; )\r
- {\r
- *pulDest++ = *pulSrc++;\r
- }\r
-\r
- //\r
- // Zero fill the bss segment. This is done with inline assembly since this\r
- // will clear the value of pulDest if it is not kept in a register.\r
- //\r
- __asm(" ldr r0, =_bss\n"\r
- " ldr r1, =_ebss\n"\r
- " mov r2, #0\n"\r
- " .thumb_func\n"\r
- "zero_loop_bss:\n"\r
- " cmp r0, r1\n"\r
- " it lt\n"\r
- " strlt r2, [r0], #4\n"\r
- " blt zero_loop_bss");\r
- \r
- \r
- //\r
- // Call C++ library initilisation, if present\r
- //\r
- if (__libc_init_array)\r
- __libc_init_array() ;\r
-\r
- //\r
- // Call the application's entry point.\r
- // __main() is the entry point for redlib based applications (which calls main())\r
- // main() is the entry point for newlib based applications\r
- //\r
- if (__main)\r
- __main() ;\r
- else\r
- main() ;\r
-\r
- //\r
- // main() shouldn't return, but if it does, we'll just enter an infinite loop \r
- //\r
- while (1) {\r
- ;\r
- }\r
-}\r
-\r
-//*****************************************************************************\r
-//\r
-// This is the code that gets called when the processor receives a NMI. This\r
-// simply enters an infinite loop, preserving the system state for examination\r
-// by a debugger.\r
-//\r
-//*****************************************************************************\r
-static void NMI_Handler(void)\r
-{\r
- while(1)\r
- {\r
- }\r
-}\r
-\r
-static void HardFault_Handler(void)\r
-{\r
- for( ;; );\r
-}\r
-\r
-void pop_registers_from_fault_stack(unsigned int * hardfault_args)\r
-{\r
-unsigned int stacked_r0;\r
-unsigned int stacked_r1;\r
-unsigned int stacked_r2;\r
-unsigned int stacked_r3;\r
-unsigned int stacked_r12;\r
-unsigned int stacked_lr;\r
-unsigned int stacked_pc;\r
-unsigned int stacked_psr;\r
-\r
- stacked_r0 = ((unsigned long) hardfault_args[0]);\r
- stacked_r1 = ((unsigned long) hardfault_args[1]);\r
- stacked_r2 = ((unsigned long) hardfault_args[2]);\r
- stacked_r3 = ((unsigned long) hardfault_args[3]);\r
-\r
- stacked_r12 = ((unsigned long) hardfault_args[4]);\r
- stacked_lr = ((unsigned long) hardfault_args[5]);\r
- stacked_pc = ((unsigned long) hardfault_args[6]);\r
- stacked_psr = ((unsigned long) hardfault_args[7]);\r
-\r
- /* Inspect stacked_pc to locate the offending instruction. */\r
- for( ;; );\r
-}\r
-\r
-static void MemManage_Handler(void)\r
-{\r
- __asm volatile\r
- (\r
- " tst lr, #4 \n"\r
- " ite eq \n"\r
- " mrseq r0, msp \n"\r
- " mrsne r0, psp \n"\r
- " ldr r1, [r0, #24] \n"\r
- " ldr r2, handler2_address_const \n"\r
- " bx r2 \n"\r
- " handler2_address_const: .word pop_registers_from_fault_stack \n"\r
- );\r
-}\r
-\r
-static void BusFault_Handler(void)\r
-{\r
- __asm volatile\r
- (\r
- " tst lr, #4 \n"\r
- " ite eq \n"\r
- " mrseq r0, msp \n"\r
- " mrsne r0, psp \n"\r
- " ldr r1, [r0, #24] \n"\r
- " ldr r2, handler3_address_const \n"\r
- " bx r2 \n"\r
- " handler3_address_const: .word pop_registers_from_fault_stack \n"\r
- );\r
-}\r
-\r
-static void UsageFault_Handler(void)\r
-{\r
- __asm volatile\r
- (\r
- " tst lr, #4 \n"\r
- " ite eq \n"\r
- " mrseq r0, msp \n"\r
- " mrsne r0, psp \n"\r
- " ldr r1, [r0, #24] \n"\r
- " ldr r2, handler4_address_const \n"\r
- " bx r2 \n"\r
- " handler4_address_const: .word pop_registers_from_fault_stack \n"\r
- );\r
-}\r
-\r
-static void DebugMon_Handler(void)\r
-{\r
- while(1)\r
- {\r
- }\r
-}\r
-\r
-//*****************************************************************************\r
-//\r
-// Processor ends up here if an unexpected interrupt occurs or a handler\r
-// is not present in the application code.\r
-//\r
-//*****************************************************************************\r
-static void IntDefaultHandler(void)\r
-{\r
- //\r
- // Go into an infinite loop.\r
- //\r
- while(1)\r
- {\r
- }\r
-}\r
+++ /dev/null
-/*\r
- FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
- All rights reserved\r
-\r
- VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
-\r
- This file is part of the FreeRTOS distribution.\r
-\r
- FreeRTOS is free software; you can redistribute it and/or modify it under\r
- the terms of the GNU General Public License (version 2) as published by the\r
- Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
-\r
- ***************************************************************************\r
- >>! NOTE: The modification to the GPL is included to allow you to !<<\r
- >>! distribute a combined work that includes FreeRTOS without being !<<\r
- >>! obliged to provide the source code for proprietary components !<<\r
- >>! outside of the FreeRTOS kernel. !<<\r
- ***************************************************************************\r
-\r
- FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
- FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
- link: http://www.freertos.org/a00114.html\r
-\r
- ***************************************************************************\r
- * *\r
- * FreeRTOS provides completely free yet professionally developed, *\r
- * robust, strictly quality controlled, supported, and cross *\r
- * platform software that is more than just the market leader, it *\r
- * is the industry's de facto standard. *\r
- * *\r
- * Help yourself get started quickly while simultaneously helping *\r
- * to support the FreeRTOS project by purchasing a FreeRTOS *\r
- * tutorial book, reference manual, or both: *\r
- * http://www.FreeRTOS.org/Documentation *\r
- * *\r
- ***************************************************************************\r
-\r
- http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
- the FAQ page "My application does not run, what could be wrong?". Have you\r
- defined configASSERT()?\r
-\r
- http://www.FreeRTOS.org/support - In return for receiving this top quality\r
- embedded software for free we request you assist our global community by\r
- participating in the support forum.\r
-\r
- http://www.FreeRTOS.org/training - Investing in training allows your team to\r
- be as productive as possible as early as possible. Now you can receive\r
- FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
- Ltd, and the world's leading authority on the world's leading RTOS.\r
-\r
- http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
- including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
- compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
-\r
- http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
- Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
-\r
- http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
- Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
- licenses offer ticketed support, indemnification and commercial middleware.\r
-\r
- http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
- engineered and independently SIL3 certified version for use in safety and\r
- mission critical applications that require provable dependability.\r
-\r
- 1 tab == 4 spaces!\r
-*/\r
-\r
-#error "The batch file Demo\CORTEX_LPC1768_GCC_RedSuite\CreateProjectDirectoryStructure.bat must be executed before the first build. After executing the batch file hit F5 to refrech the Eclipse project, then delete this line."\r
-\r
-\r
-/*\r
- * This file demonstrates the use of FreeRTOS-MPU. It creates tasks in both\r
- * User mode and Privileged mode, and using both the original xTaskCreate() and\r
- * the new xTaskCreateRestricted() API functions. The purpose of each created\r
- * task is documented in the comments above the task function prototype (in\r
- * this file), with the task behaviour demonstrated and documented within the\r
- * task function itself. In addition a queue is used to demonstrate passing\r
- * data between protected/restricted tasks as well as passing data between an\r
- * interrupt and a protected/restricted task.\r
- */\r
-\r
-\r
-\r
-/* Library includes. */\r
-#include <string.h>\r
-\r
-/* Scheduler includes. */\r
-#include "FreeRTOS.h"\r
-#include "task.h"\r
-#include "queue.h"\r
-#include "semphr.h"\r
-\r
-/* Red Suite includes. */\r
-#include "lcd_driver.h"\r
-#include "lcd.h"\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Misc constants. */\r
-#define mainDONT_BLOCK ( 0 )\r
-\r
-/* Definitions for the messages that can be sent to the check task. */\r
-#define mainREG_TEST_1_STILL_EXECUTING ( 0 )\r
-#define mainREG_TEST_2_STILL_EXECUTING ( 1 )\r
-#define mainPRINT_SYSTEM_STATUS ( 2 )\r
-\r
-/* GCC specifics. */\r
-#define mainALIGN_TO( x ) __attribute__((aligned(x)))\r
-\r
-/* Hardware specifics. The start and end address are chosen to ensure the\r
-required GPIO are covered while also ensuring the necessary alignment is\r
-achieved. */\r
-#define mainGPIO_START_ADDRESS ( ( unsigned long * ) 0x2009c000 )\r
-#define mainGPIO_END_ADDRESS ( mainGPIO_START_ADDRESS + ( 64 * 1024 ) )\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Prototypes for functions that implement tasks. -----------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/*\r
- * Prototype for the reg test tasks. Amongst other things, these fill the CPU\r
- * registers with known values before checking that the registers still contain\r
- * the expected values. Each of the two tasks use different values so an error\r
- * in the context switch mechanism can be caught. Both reg test tasks execute\r
- * at the idle priority so will get preempted regularly. Each task repeatedly\r
- * sends a message on a queue so long as it remains functioning correctly. If\r
- * an error is detected within the task the task is simply deleted.\r
- */\r
-static void prvRegTest1Task( void *pvParameters );\r
-static void prvRegTest2Task( void *pvParameters );\r
-\r
-/*\r
- * Prototype for the check task. The check task demonstrates various features\r
- * of the MPU before entering a loop where it waits for messages to arrive on a\r
- * queue.\r
- *\r
- * Two types of messages can be processes:\r
- *\r
- * 1) "I'm Alive" messages sent from the reg test tasks, indicating that the\r
- * task is still operational.\r
- *\r
- * 2) "Print Status commands" sent periodically by the tick hook function (and\r
- * therefore from within an interrupt) which command the check task to write\r
- * either pass or fail to the terminal, depending on the status of the reg\r
- * test tasks.\r
- */\r
-static void prvCheckTask( void *pvParameters );\r
-\r
-/*\r
- * Prototype for a task created in User mode using the original vTaskCreate()\r
- * API function. The task demonstrates the characteristics of such a task,\r
- * before simply deleting itself.\r
- */\r
-static void prvOldStyleUserModeTask( void *pvParameters );\r
-\r
-/*\r
- * Prototype for a task created in Privileged mode using the original\r
- * vTaskCreate() API function. The task demonstrates the characteristics of\r
- * such a task, before simply deleting itself.\r
- */\r
-static void prvOldStylePrivilegedModeTask( void *pvParameters );\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Prototypes for other misc functions. --------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/*\r
- * Just configures any clocks and IO necessary.\r
- */\r
-static void prvSetupHardware( void );\r
-\r
-/*\r
- * Simply deletes the calling task. The function is provided only because it\r
- * is simpler to call from asm code than the normal vTaskDelete() API function.\r
- * It has the noinline attribute because it is called from asm code.\r
- */\r
-static void prvDeleteMe( void ) __attribute__((noinline));\r
-\r
-/*\r
- * Used by both reg test tasks to send messages to the check task. The message\r
- * just lets the check task know that the task is still functioning correctly.\r
- * If a reg test task detects an error it will delete itself, and in so doing\r
- * prevent itself from sending any more 'I'm Alive' messages to the check task.\r
- */\r
-static void prvSendImAlive( QueueHandle_t xHandle, unsigned long ulTaskNumber );\r
-\r
-/*\r
- * The check task is created with access to three memory regions (plus its\r
- * stack). Each memory region is configured with different parameters and\r
- * prvTestMemoryRegions() demonstrates what can and cannot be accessed for each\r
- * region. prvTestMemoryRegions() also demonstrates a task that was created\r
- * as a privileged task settings its own privilege level down to that of a user\r
- * task.\r
- */\r
-static void prvTestMemoryRegions( void );\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-/* The handle of the queue used to communicate between tasks and between tasks\r
-and interrupts. Note that this is a file scope variable that falls outside of\r
-any MPU region. As such other techniques have to be used to allow the tasks\r
-to gain access to the queue. See the comments in the tasks themselves for\r
-further information. */\r
-static QueueHandle_t xFileScopeCheckQueue = NULL;\r
-\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Data used by the 'check' task. ---------------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Define the constants used to allocate the check task stack. Note that the\r
-stack size is defined in words, not bytes. */\r
-#define mainCHECK_TASK_STACK_SIZE_WORDS 128\r
-#define mainCHECK_TASK_STACK_ALIGNMENT ( mainCHECK_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
-\r
-/* Declare the stack that will be used by the check task. The kernel will\r
- automatically create an MPU region for the stack. The stack alignment must\r
- match its size, so if 128 words are reserved for the stack then it must be\r
- aligned to ( 128 * 4 ) bytes. */\r
-static portSTACK_TYPE xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainCHECK_TASK_STACK_ALIGNMENT );\r
-\r
-/* Declare three arrays - an MPU region will be created for each array\r
-using the TaskParameters_t structure below. THIS IS JUST TO DEMONSTRATE THE\r
-MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
-of monitoring the reg test tasks and printing out status information.\r
-\r
-Note that the arrays allocate slightly more RAM than is actually assigned to\r
-the MPU region. This is to permit writes off the end of the array to be\r
-detected even when the arrays are placed in adjacent memory locations (with no\r
-gaps between them). The align size must be a power of two. */\r
-#define mainREAD_WRITE_ARRAY_SIZE 130\r
-#define mainREAD_WRITE_ALIGN_SIZE 128\r
-char cReadWriteArray[ mainREAD_WRITE_ARRAY_SIZE ] mainALIGN_TO( mainREAD_WRITE_ALIGN_SIZE );\r
-\r
-#define mainREAD_ONLY_ARRAY_SIZE 260\r
-#define mainREAD_ONLY_ALIGN_SIZE 256\r
-char cReadOnlyArray[ mainREAD_ONLY_ARRAY_SIZE ] mainALIGN_TO( mainREAD_ONLY_ALIGN_SIZE );\r
-\r
-#define mainPRIVILEGED_ONLY_ACCESS_ARRAY_SIZE 130\r
-#define mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE 128\r
-char cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] mainALIGN_TO( mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE );\r
-\r
-/* Fill in a TaskParameters_t structure to define the check task - this is the\r
-structure passed to the xTaskCreateRestricted() function. */\r
-static const TaskParameters_t xCheckTaskParameters =\r
-{\r
- prvCheckTask, /* pvTaskCode - the function that implements the task. */\r
- "Check", /* pcName */\r
- mainCHECK_TASK_STACK_SIZE_WORDS, /* usStackDepth - defined in words, not bytes. */\r
- ( void * ) 0x12121212, /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
- ( tskIDLE_PRIORITY + 1 ) | portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system. The task is created in privileged mode to demonstrate accessing the privileged only data. */\r
- xCheckTaskStack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
-\r
- /* xRegions - In this case the xRegions array is used to create MPU regions\r
- for all three of the arrays declared directly above. Each MPU region is\r
- created with different parameters. Again, THIS IS JUST TO DEMONSTRATE THE\r
- MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
- of monitoring the reg test tasks and printing out status information.*/\r
- {\r
- /* Base address Length Parameters */\r
- { cReadWriteArray, mainREAD_WRITE_ALIGN_SIZE, portMPU_REGION_READ_WRITE },\r
- { cReadOnlyArray, mainREAD_ONLY_ALIGN_SIZE, portMPU_REGION_READ_ONLY },\r
- { cPrivilegedOnlyAccessArray, mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE, portMPU_REGION_PRIVILEGED_READ_WRITE }\r
- }\r
-};\r
-\r
-/* Three MPU regions are defined for use by the 'check' task when the task is\r
-created. These are only used to demonstrate the MPU features and are not\r
-actually necessary for the check task to fulfill its primary purpose. Instead\r
-the MPU regions are replaced with those defined by xAltRegions prior to the\r
-check task receiving any data on the queue or printing any messages to the\r
-debug console. The MPU region defined below covers the GPIO peripherals used\r
-to write to the LCD. */\r
-static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =\r
-{\r
- /* Base address Length Parameters */\r
- { mainGPIO_START_ADDRESS, ( 64 * 1024 ), portMPU_REGION_READ_WRITE },\r
- { 0, 0, 0 },\r
- { 0, 0, 0 }\r
-};\r
-\r
-\r
-\r
-/*-----------------------------------------------------------*/\r
-/* Data used by the 'reg test' tasks. -----------------------*/\r
-/*-----------------------------------------------------------*/\r
-\r
-/* Define the constants used to allocate the reg test task stacks. Note that\r
-that stack size is defined in words, not bytes. */\r
-#define mainREG_TEST_STACK_SIZE_WORDS 128\r
-#define mainREG_TEST_STACK_ALIGNMENT ( mainREG_TEST_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
-\r
-/* Declare the stacks that will be used by the reg test tasks. The kernel will\r
-automatically create an MPU region for the stack. The stack alignment must\r
-match its size, so if 128 words are reserved for the stack then it must be\r
-aligned to ( 128 * 4 ) bytes. */\r
-static portSTACK_TYPE xRegTest1Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
-static portSTACK_TYPE xRegTest2Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
-\r
-/* Fill in a TaskParameters_t structure per reg test task to define the tasks. */\r
-static const TaskParameters_t xRegTest1Parameters =\r
-{\r
- prvRegTest1Task, /* pvTaskCode - the function that implements the task. */\r
- "RegTest1", /* pcName */\r
- mainREG_TEST_STACK_SIZE_WORDS, /* usStackDepth */\r
- ( void * ) 0x12345678, /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
- tskIDLE_PRIORITY | portPRIVILEGE_BIT, /* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */\r
- xRegTest1Stack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
- { /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
- /* Base address Length Parameters */\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 }\r
- }\r
-};\r
-/*-----------------------------------------------------------*/\r
-\r
-static TaskParameters_t xRegTest2Parameters =\r
-{\r
- prvRegTest2Task, /* pvTaskCode - the function that implements the task. */\r
- "RegTest2", /* pcName */\r
- mainREG_TEST_STACK_SIZE_WORDS, /* usStackDepth */\r
- ( void * ) NULL, /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
- tskIDLE_PRIORITY, /* uxPriority */\r
- xRegTest2Stack, /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
- { /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
- /* Base address Length Parameters */\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 },\r
- { 0x00, 0x00, 0x00 }\r
- }\r
-};\r
-\r
-/*-----------------------------------------------------------*/\r
-\r
-int main( void )\r
-{\r
- prvSetupHardware();\r
-\r
- /* Create the queue used to pass "I'm alive" messages to the check task. */\r
- xFileScopeCheckQueue = xQueueCreate( 1, sizeof( unsigned long ) );\r
-\r
- /* One check task uses the task parameter to receive the queue handle.\r
- This allows the file scope variable to be accessed from within the task.\r
- The pvParameters member of xRegTest2Parameters can only be set after the\r
- queue has been created so is set here. */\r
- xRegTest2Parameters.pvParameters = xFileScopeCheckQueue;\r
-\r
- /* Create the three test tasks. Handles to the created tasks are not\r
- required, hence the second parameter is NULL. */\r
- xTaskCreateRestricted( &xRegTest1Parameters, NULL );\r
- xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
- xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
-\r
- /* Create the tasks that are created using the original xTaskCreate() API\r
- function. */\r
- xTaskCreate( prvOldStyleUserModeTask, /* The function that implements the task. */\r
- "Task1", /* Text name for the task. */\r
- 100, /* Stack depth in words. */\r
- NULL, /* Task parameters. */\r
- 3, /* Priority and mode (user in this case). */\r
- NULL /* Handle. */\r
- );\r
-\r
- xTaskCreate( prvOldStylePrivilegedModeTask, /* The function that implements the task. */\r
- "Task2", /* Text name for the task. */\r
- 100, /* Stack depth in words. */\r
- NULL, /* Task parameters. */\r
- ( 3 | portPRIVILEGE_BIT ), /* Priority and mode. */\r
- NULL /* Handle. */\r
- );\r
-\r
- /* Start the scheduler. */\r
- vTaskStartScheduler();\r
-\r
- /* Will only get here if there was insufficient memory to create the idle\r
- task. */\r
- for( ;; );\r
- return 0;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvCheckTask( void *pvParameters )\r
-{\r
-/* This task is created in privileged mode so can access the file scope\r
-queue variable. Take a stack copy of this before the task is set into user\r
-mode. Once that task is in user mode the file scope queue variable will no\r
-longer be accessible but the stack copy will. */\r
-QueueHandle_t xQueue = xFileScopeCheckQueue;\r
-long lMessage;\r
-unsigned long ulStillAliveCounts[ 2 ] = { 0 };\r
-char *pcStatusMessage = "PASS\r\n";\r
-unsigned char x = 5, y = 10;\r
-\r
- /* Just to remove compiler warning. */\r
- ( void ) pvParameters;\r
-\r
- /* Demonstrate how the various memory regions can and can't be accessed.\r
- The task privilege is set down to user mode within this function. */\r
- prvTestMemoryRegions();\r
-\r
- /* Change the memory regions allocated to this task to those initially\r
- set up for demonstration purposes to those actually required by the task. */\r
- vTaskAllocateMPURegions( NULL, xAltRegions );\r
-\r
- /* This loop performs the main function of the task, which is blocking\r
- on a message queue then processing each message as it arrives. */\r
- for( ;; )\r
- {\r
- /* Wait for the next message to arrive. */\r
- xQueueReceive( xQueue, &lMessage, portMAX_DELAY );\r
-\r
- switch( lMessage )\r
- {\r
- case mainREG_TEST_1_STILL_EXECUTING :\r
- /* Message from task 1, so task 1 must still be executing. */\r
- ( ulStillAliveCounts[ 0 ] )++;\r
- break;\r
-\r
- case mainREG_TEST_2_STILL_EXECUTING :\r
- /* Message from task 2, so task 2 must still be executing. */\r
- ( ulStillAliveCounts[ 1 ] )++;\r
- break;\r
-\r
- case mainPRINT_SYSTEM_STATUS :\r
- /* Message from tick hook, time to print out the system\r
- status. If messages has stopped arriving from either reg\r
- test task then the status must be set to fail. */\r
- if( ( ulStillAliveCounts[ 0 ] == 0 ) || ( ulStillAliveCounts[ 1 ] == 0 ) )\r
- {\r
- /* One or both of the test tasks are no longer sending\r
- 'still alive' messages. */\r
- pcStatusMessage = "FAIL\r\n";\r
- }\r
-\r
- /* Print a pass/fail message to the LCD - moving the\r
- message each time to provide feedback that the output\r
- is still being produced. LCD_PrintString() accesses const\r
- data stored in flash, which all tasks are at liberty to do,\r
- and GPIO for which an MPU region has been set up for it. */\r
- LCD_ClearScreen();\r
- LCD_PrintString( x>>1, y>>1, pcStatusMessage, 6, COLOR_RED );\r
- x += 7;\r
- y += 9;\r
-\r
- /* Reset the count of 'still alive' messages. */\r
- memset( ulStillAliveCounts, 0x00, sizeof( ulStillAliveCounts ) );\r
- break;\r
-\r
- default :\r
- /* Something unexpected happened. Delete this task so the\r
- error is apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- break;\r
- }\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvTestMemoryRegions( void )\r
-{\r
-long l;\r
-char cTemp;\r
-\r
- /* The check task (from which this function is called) is created in the\r
- Privileged mode. The privileged array can be both read from and written\r
- to while this task is privileged. */\r
- cPrivilegedOnlyAccessArray[ 0 ] = 'a';\r
- if( cPrivilegedOnlyAccessArray[ 0 ] != 'a' )\r
- {\r
- /* Something unexpected happened. Delete this task so the error is\r
- apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- }\r
-\r
- /* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
- protection fault because the task is still executing in a privileged mode.\r
- Uncomment the following to test. */\r
- /* cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a'; */\r
-\r
- /* Now set the task into user mode. */\r
- portSWITCH_TO_USER_MODE();\r
-\r
- /* Accessing the privileged only array will now cause a fault. Uncomment\r
- the following line to test. */\r
- /* cPrivilegedOnlyAccessArray[ 0 ] = 'a'; */\r
-\r
- /* The read/write array can still be successfully read and written. */\r
- for( l = 0; l < mainREAD_WRITE_ALIGN_SIZE; l++ )\r
- {\r
- cReadWriteArray[ l ] = 'a';\r
- if( cReadWriteArray[ l ] != 'a' )\r
- {\r
- /* Something unexpected happened. Delete this task so the error is\r
- apparent (no output will be displayed). */\r
- prvDeleteMe();\r
- }\r
- }\r
-\r
- /* But attempting to read or write off the end of the RAM allocated to this\r
- task will cause a fault. Uncomment either of the following two lines to\r
- test. */\r
- /* cReadWriteArray[ 0 ] = cReadWriteArray[ -1 ]; */\r
- /* cReadWriteArray[ mainREAD_WRITE_ALIGN_SIZE ] = 0x00; */\r
-\r
- /* The read only array can be successfully read... */\r
- for( l = 0; l < mainREAD_ONLY_ALIGN_SIZE; l++ )\r
- {\r
- cTemp = cReadOnlyArray[ l ];\r
- }\r
-\r
- /* ...but cannot be written. Uncomment the following line to test. */\r
- /* cReadOnlyArray[ 0 ] = 'a'; */\r
-\r
- /* Writing to the first and last locations in the stack array should not\r
- cause a protection fault. Note that doing this will cause the kernel to\r
- detect a stack overflow if configCHECK_FOR_STACK_OVERFLOW is greater than\r
- 1. */\r
- xCheckTaskStack[ 0 ] = 0;\r
- xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS - 1 ] = 0;\r
-\r
- /* Writing off either end of the stack array should cause a protection\r
- fault, uncomment either of the following two lines to test. */\r
- /* xCheckTaskStack[ -1 ] = 0; */\r
- /* xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] = 0; */\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvRegTest1Task( void *pvParameters )\r
-{\r
-/* This task is created in privileged mode so can access the file scope\r
-queue variable. Take a stack copy of this before the task is set into user\r
-mode. Once this task is in user mode the file scope queue variable will no\r
-longer be accessible but the stack copy will. */\r
-QueueHandle_t xQueue = xFileScopeCheckQueue;\r
-\r
- /* Now the queue handle has been obtained the task can switch to user\r
- mode. This is just one method of passing a handle into a protected\r
- task, the other reg test task uses the task parameter instead. */\r
- portSWITCH_TO_USER_MODE();\r
-\r
- /* First check that the parameter value is as expected. */\r
- if( pvParameters != ( void * ) 0x12345678 )\r
- {\r
- /* Error detected. Delete the task so it stops communicating with\r
- the check task. */\r
- prvDeleteMe();\r
- }\r
-\r
-\r
- for( ;; )\r
- {\r
- /* This task tests the kernel context switch mechanism by reading and\r
- writing directly to registers - which requires the test to be written\r
- in assembly code. */\r
- __asm volatile\r
- (\r
- " MOV R4, #104 \n" /* Set registers to a known value. R0 to R1 are done in the loop below. */\r
- " MOV R5, #105 \n"\r
- " MOV R6, #106 \n"\r
- " MOV R8, #108 \n"\r
- " MOV R9, #109 \n"\r
- " MOV R10, #110 \n"\r
- " MOV R11, #111 \n"\r
- "reg1loop: \n"\r
- " MOV R0, #100 \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
- " MOV R1, #101 \n"\r
- " MOV R2, #102 \n"\r
- " MOV R3, #103 \n"\r
- " MOV R12, #112 \n"\r
- " SVC #1 \n" /* Yield just to increase test coverage. */\r
- " CMP R0, #100 \n" /* Check all the registers still contain their expected values. */\r
- " BNE prvDeleteMe \n" /* Value was not as expected, delete the task so it stops communicating with the check task. */\r
- " CMP R1, #101 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R2, #102 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R3, #103 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R4, #104 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R5, #105 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R6, #106 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R8, #108 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R9, #109 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R10, #110 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R11, #111 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R12, #112 \n"\r
- " BNE prvDeleteMe \n"\r
- :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
- );\r
-\r
- /* Send mainREG_TEST_1_STILL_EXECUTING to the check task to indicate that this\r
- task is still functioning. */\r
- prvSendImAlive( xQueue, mainREG_TEST_1_STILL_EXECUTING );\r
-\r
- /* Go back to check all the register values again. */\r
- __asm volatile( " B reg1loop " );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvRegTest2Task( void *pvParameters )\r
-{\r
-/* The queue handle is passed in as the task parameter. This is one method of\r
-passing data into a protected task, the other reg test task uses a different\r
-method. */\r
-QueueHandle_t xQueue = ( QueueHandle_t ) pvParameters;\r
-\r
- for( ;; )\r
- {\r
- /* This task tests the kernel context switch mechanism by reading and\r
- writing directly to registers - which requires the test to be written\r
- in assembly code. */\r
- __asm volatile\r
- (\r
- " MOV R4, #4 \n" /* Set registers to a known value. R0 to R1 are done in the loop below. */\r
- " MOV R5, #5 \n"\r
- " MOV R6, #6 \n"\r
- " MOV R8, #8 \n" /* Frame pointer is omitted as it must not be changed. */\r
- " MOV R9, #9 \n"\r
- " MOV R10, 10 \n"\r
- " MOV R11, #11 \n"\r
- "reg2loop: \n"\r
- " MOV R0, #13 \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
- " MOV R1, #1 \n"\r
- " MOV R2, #2 \n"\r
- " MOV R3, #3 \n"\r
- " MOV R12, #12 \n"\r
- " CMP R0, #13 \n" /* Check all the registers still contain their expected values. */\r
- " BNE prvDeleteMe \n" /* Value was not as expected, delete the task so it stops communicating with the check task */\r
- " CMP R1, #1 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R2, #2 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R3, #3 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R4, #4 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R5, #5 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R6, #6 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R8, #8 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R9, #9 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R10, #10 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R11, #11 \n"\r
- " BNE prvDeleteMe \n"\r
- " CMP R12, #12 \n"\r
- " BNE prvDeleteMe \n"\r
- :::"r0", "r1", "r2", "r3", "r4", "r5", "r6", "r8", "r9", "r10", "r11", "r12"\r
- );\r
-\r
- /* Send mainREG_TEST_2_STILL_EXECUTING to the check task to indicate that this\r
- task is still functioning. */\r
- prvSendImAlive( xQueue, mainREG_TEST_2_STILL_EXECUTING );\r
-\r
- /* Go back to check all the register values again. */\r
- __asm volatile( " B reg2loop " );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationIdleHook( void )\r
-{\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-\r
- /* The idle task, and therefore this function, run in Supervisor mode and\r
- can therefore access all memory. Try reading from corners of flash and\r
- RAM to ensure a memory fault does not occur.\r
-\r
- Start with the edges of the privileged data area. */\r
- pul = __privileged_data_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Next the standard SRAM area. */\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* And the standard Flash area - the start of which is marked for\r
- privileged access only. */\r
- pul = __FLASH_segment_start__;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Reading off the end of Flash or SRAM space should cause a fault.\r
- Uncomment one of the following two pairs of lines to test. */\r
-\r
- /* pul = __FLASH_segment_end__ + 4;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __SRAM_segment_end__ + 1;\r
- ulReadData = *pul; */\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvOldStyleUserModeTask( void *pvParameters )\r
-{\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_functions_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-\r
-/* The following lines are commented out to prevent the unused variable\r
-compiler warnings when the tests that use the variable are also commented out.\r
-extern unsigned long __privileged_functions_start__[];\r
-const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; */\r
-\r
- ( void ) pvParameters;\r
-\r
- /* This task is created in User mode using the original xTaskCreate() API\r
- function. It should have access to all Flash and RAM except that marked\r
- as Privileged access only. Reading from the start and end of the non-\r
- privileged RAM should not cause a problem (the privileged RAM is the first\r
- block at the bottom of the RAM memory). */\r
- pul = __privileged_data_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Likewise reading from the start and end of the non-privileged Flash\r
- should not be a problem (the privileged Flash is the first block at the\r
- bottom of the Flash memory). */\r
- pul = __privileged_functions_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Standard peripherals are accessible. */\r
- ulReadData = *pulStandardPeripheralRegister;\r
-\r
- /* System peripherals are not accessible. Uncomment the following line\r
- to test. Also uncomment the declaration of pulSystemPeripheralRegister\r
- at the top of this function. */\r
- /* ulReadData = *pulSystemPeripheralRegister; */\r
-\r
- /* Reading from anywhere inside the privileged Flash or RAM should cause a\r
- fault. This can be tested by uncommenting any of the following pairs of\r
- lines. Also uncomment the declaration of __privileged_functions_start__\r
- at the top of this function. */\r
-\r
- /* pul = __privileged_functions_start__;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_functions_end__ - 1;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_data_start__;\r
- ulReadData = *pul; */\r
-\r
- /* pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul; */\r
-\r
- /* Must not just run off the end of a task function, so delete this task.\r
- Note that because this task was created using xTaskCreate() the stack was\r
- allocated dynamically and I have not included any code to free it again. */\r
- vTaskDelete( NULL );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvOldStylePrivilegedModeTask( void *pvParameters )\r
-{\r
-extern unsigned long __privileged_data_start__[];\r
-extern unsigned long __privileged_data_end__[];\r
-extern unsigned long __SRAM_segment_end__[];\r
-extern unsigned long __privileged_functions_start__[];\r
-extern unsigned long __privileged_functions_end__[];\r
-extern unsigned long __FLASH_segment_start__[];\r
-extern unsigned long __FLASH_segment_end__[];\r
-volatile unsigned long *pul;\r
-volatile unsigned long ulReadData;\r
-const volatile unsigned long *pulSystemPeripheralRegister = ( volatile unsigned long * ) 0xe000e014; /* Systick */\r
-const volatile unsigned long *pulStandardPeripheralRegister = ( volatile unsigned long * ) 0x400FC0C4; /* PCONP */\r
-\r
- ( void ) pvParameters;\r
-\r
- /* This task is created in Privileged mode using the original xTaskCreate()\r
- API function. It should have access to all Flash and RAM including that\r
- marked as Privileged access only. So reading from the start and end of the\r
- non-privileged RAM should not cause a problem (the privileged RAM is the\r
- first block at the bottom of the RAM memory). */\r
- pul = __privileged_data_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __SRAM_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Likewise reading from the start and end of the non-privileged Flash\r
- should not be a problem (the privileged Flash is the first block at the\r
- bottom of the Flash memory). */\r
- pul = __privileged_functions_end__ + 1;\r
- ulReadData = *pul;\r
- pul = __FLASH_segment_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Reading from anywhere inside the privileged Flash or RAM should also\r
- not be a problem. */\r
- pul = __privileged_functions_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_functions_end__ - 1;\r
- ulReadData = *pul;\r
- pul = __privileged_data_start__;\r
- ulReadData = *pul;\r
- pul = __privileged_data_end__ - 1;\r
- ulReadData = *pul;\r
-\r
- /* Finally, accessing both System and normal peripherals should both be\r
- possible. */\r
- ulReadData = *pulSystemPeripheralRegister;\r
- ulReadData = *pulStandardPeripheralRegister;\r
-\r
- /* Must not just run off the end of a task function, so delete this task.\r
- Note that because this task was created using xTaskCreate() the stack was\r
- allocated dynamically and I have not included any code to free it again. */\r
- vTaskDelete( NULL );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvDeleteMe( void )\r
-{\r
- vTaskDelete( NULL );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-static void prvSendImAlive( QueueHandle_t xHandle, unsigned long ulTaskNumber )\r
-{\r
- if( xHandle != NULL )\r
- {\r
- xQueueSend( xHandle, &ulTaskNumber, mainDONT_BLOCK );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void prvSetupHardware( void )\r
-{\r
- /* Disable peripherals power. */\r
- SC->PCONP = 0;\r
-\r
- /* Enable GPIO power. */\r
- SC->PCONP = PCONP_PCGPIO;\r
-\r
- /* Disable TPIU. */\r
- PINCON->PINSEL10 = 0;\r
-\r
- if ( SC->PLL0STAT & ( 1 << 25 ) )\r
- {\r
- /* Enable PLL, disconnected. */\r
- SC->PLL0CON = 1;\r
- SC->PLL0FEED = PLLFEED_FEED1;\r
- SC->PLL0FEED = PLLFEED_FEED2;\r
- }\r
-\r
- /* Disable PLL, disconnected. */\r
- SC->PLL0CON = 0;\r
- SC->PLL0FEED = PLLFEED_FEED1;\r
- SC->PLL0FEED = PLLFEED_FEED2;\r
-\r
- /* Enable main OSC. */\r
- SC->SCS |= 0x20;\r
- while( !( SC->SCS & 0x40 ) );\r
-\r
- /* select main OSC, 12MHz, as the PLL clock source. */\r
- SC->CLKSRCSEL = 0x1;\r
-\r
- SC->PLL0CFG = 0x20031;\r
- SC->PLL0FEED = PLLFEED_FEED1;\r
- SC->PLL0FEED = PLLFEED_FEED2;\r
-\r
- /* Enable PLL, disconnected. */\r
- SC->PLL0CON = 1;\r
- SC->PLL0FEED = PLLFEED_FEED1;\r
- SC->PLL0FEED = PLLFEED_FEED2;\r
-\r
- /* Set clock divider. */\r
- SC->CCLKCFG = 0x03;\r
-\r
- /* Configure flash accelerator. */\r
- SC->FLASHCFG = 0x403a;\r
-\r
- /* Check lock bit status. */\r
- while( ( ( SC->PLL0STAT & ( 1 << 26 ) ) == 0 ) );\r
-\r
- /* Enable and connect. */\r
- SC->PLL0CON = 3;\r
- SC->PLL0FEED = PLLFEED_FEED1;\r
- SC->PLL0FEED = PLLFEED_FEED2;\r
- while( ( ( SC->PLL0STAT & ( 1 << 25 ) ) == 0 ) );\r
-\r
-\r
-\r
-\r
- /* Configure the clock for the USB. */\r
-\r
- if( SC->PLL1STAT & ( 1 << 9 ) )\r
- {\r
- /* Enable PLL, disconnected. */\r
- SC->PLL1CON = 1;\r
- SC->PLL1FEED = PLLFEED_FEED1;\r
- SC->PLL1FEED = PLLFEED_FEED2;\r
- }\r
-\r
- /* Disable PLL, disconnected. */\r
- SC->PLL1CON = 0;\r
- SC->PLL1FEED = PLLFEED_FEED1;\r
- SC->PLL1FEED = PLLFEED_FEED2;\r
-\r
- SC->PLL1CFG = 0x23;\r
- SC->PLL1FEED = PLLFEED_FEED1;\r
- SC->PLL1FEED = PLLFEED_FEED2;\r
-\r
- /* Enable PLL, disconnected. */\r
- SC->PLL1CON = 1;\r
- SC->PLL1FEED = PLLFEED_FEED1;\r
- SC->PLL1FEED = PLLFEED_FEED2;\r
- while( ( ( SC->PLL1STAT & ( 1 << 10 ) ) == 0 ) );\r
-\r
- /* Enable and connect. */\r
- SC->PLL1CON = 3;\r
- SC->PLL1FEED = PLLFEED_FEED1;\r
- SC->PLL1FEED = PLLFEED_FEED2;\r
- while( ( ( SC->PLL1STAT & ( 1 << 9 ) ) == 0 ) );\r
-\r
- /* Setup the peripheral bus to be the same as the PLL output (64 MHz). */\r
- SC->PCLKSEL0 = 0x05555555;\r
-\r
- /* Prepare the LCD. */\r
- LCDdriver_initialisation();\r
- LCD_PrintString( 5, 10, "FreeRTOS.org", 14, COLOR_GREEN);\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationTickHook( void )\r
-{\r
-static unsigned long ulCallCount;\r
-const unsigned long ulCallsBetweenSends = 5000 / portTICK_PERIOD_MS;\r
-const unsigned long ulMessage = mainPRINT_SYSTEM_STATUS;\r
-portBASE_TYPE xDummy;\r
-\r
- /* If configUSE_TICK_HOOK is set to 1 then this function will get called\r
- from each RTOS tick. It is called from the tick interrupt and therefore\r
- will be executing in the privileged state. */\r
-\r
- ulCallCount++;\r
-\r
- /* Is it time to print out the pass/fail message again? */\r
- if( ulCallCount >= ulCallsBetweenSends )\r
- {\r
- ulCallCount = 0;\r
-\r
- /* Send a message to the check task to command it to check that all\r
- the tasks are still running then print out the status.\r
-\r
- This is running in an ISR so has to use the "FromISR" version of\r
- xQueueSend(). Because it is in an ISR it is running with privileges\r
- so can access xFileScopeCheckQueue directly. */\r
- xQueueSendFromISR( xFileScopeCheckQueue, &ulMessage, &xDummy );\r
- }\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
-{\r
- /* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this\r
- function will automatically get called if a task overflows its stack. */\r
- ( void ) pxTask;\r
- ( void ) pcTaskName;\r
- for( ;; );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void vApplicationMallocFailedHook( void )\r
-{\r
- /* If configUSE_MALLOC_FAILED_HOOK is set to 1 then this function will\r
- be called automatically if a call to pvPortMalloc() fails. pvPortMalloc()\r
- is called automatically when a task, queue or semaphore is created. */\r
- for( ;; );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-\r
+++ /dev/null
-/*\r
- Copyright 2001, 2002 Georges Menie (www.menie.org)\r
- stdarg version contributed by Christian Ettinger\r
-\r
- This program is free software; you can redistribute it and/or modify\r
- it under the terms of the GNU Lesser General Public License as published by\r
- the Free Software Foundation; either version 2 of the License, or\r
- (at your option) any later version.\r
-\r
- This program is distributed in the hope that it will be useful,\r
- but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
- GNU Lesser General Public License for more details.\r
-\r
- You should have received a copy of the GNU Lesser General Public License\r
- along with this program; if not, write to the Free Software\r
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\r
-*/\r
-\r
-/*\r
- putchar is the only external dependency for this file,\r
- if you have a working putchar, leave it commented out.\r
- If not, uncomment the define below and\r
- replace outbyte(c) by your own function call.\r
-\r
-*/\r
-\r
-#define putchar(c) c\r
-\r
-#include <stdarg.h>\r
-\r
-static void printchar(char **str, int c)\r
-{\r
- //extern int putchar(int c);\r
- \r
- if (str) {\r
- **str = (char)c;\r
- ++(*str);\r
- }\r
- else\r
- { \r
- (void)putchar(c);\r
- }\r
-}\r
-\r
-#define PAD_RIGHT 1\r
-#define PAD_ZERO 2\r
-\r
-static int prints(char **out, const char *string, int width, int pad)\r
-{\r
- register int pc = 0, padchar = ' ';\r
-\r
- if (width > 0) {\r
- register int len = 0;\r
- register const char *ptr;\r
- for (ptr = string; *ptr; ++ptr) ++len;\r
- if (len >= width) width = 0;\r
- else width -= len;\r
- if (pad & PAD_ZERO) padchar = '0';\r
- }\r
- if (!(pad & PAD_RIGHT)) {\r
- for ( ; width > 0; --width) {\r
- printchar (out, padchar);\r
- ++pc;\r
- }\r
- }\r
- for ( ; *string ; ++string) {\r
- printchar (out, *string);\r
- ++pc;\r
- }\r
- for ( ; width > 0; --width) {\r
- printchar (out, padchar);\r
- ++pc;\r
- }\r
-\r
- return pc;\r
-}\r
-\r
-/* the following should be enough for 32 bit int */\r
-#define PRINT_BUF_LEN 12\r
-\r
-static int printi(char **out, int i, int b, int sg, int width, int pad, int letbase)\r
-{\r
- char print_buf[PRINT_BUF_LEN];\r
- register char *s;\r
- register int t, neg = 0, pc = 0;\r
- register unsigned int u = (unsigned int)i;\r
-\r
- if (i == 0) {\r
- print_buf[0] = '0';\r
- print_buf[1] = '\0';\r
- return prints (out, print_buf, width, pad);\r
- }\r
-\r
- if (sg && b == 10 && i < 0) {\r
- neg = 1;\r
- u = (unsigned int)-i;\r
- }\r
-\r
- s = print_buf + PRINT_BUF_LEN-1;\r
- *s = '\0';\r
-\r
- while (u) {\r
- t = (unsigned int)u % b;\r
- if( t >= 10 )\r
- t += letbase - '0' - 10;\r
- *--s = (char)(t + '0');\r
- u /= b;\r
- }\r
-\r
- if (neg) {\r
- if( width && (pad & PAD_ZERO) ) {\r
- printchar (out, '-');\r
- ++pc;\r
- --width;\r
- }\r
- else {\r
- *--s = '-';\r
- }\r
- }\r
-\r
- return pc + prints (out, s, width, pad);\r
-}\r
-\r
-static int print( char **out, const char *format, va_list args )\r
-{\r
- register int width, pad;\r
- register int pc = 0;\r
- char scr[2];\r
-\r
- for (; *format != 0; ++format) {\r
- if (*format == '%') {\r
- ++format;\r
- width = pad = 0;\r
- if (*format == '\0') break;\r
- if (*format == '%') goto out;\r
- if (*format == '-') {\r
- ++format;\r
- pad = PAD_RIGHT;\r
- }\r
- while (*format == '0') {\r
- ++format;\r
- pad |= PAD_ZERO;\r
- }\r
- for ( ; *format >= '0' && *format <= '9'; ++format) {\r
- width *= 10;\r
- width += *format - '0';\r
- }\r
- if( *format == 's' ) {\r
- register char *s = (char *)va_arg( args, int );\r
- pc += prints (out, s?s:"(null)", width, pad);\r
- continue;\r
- }\r
- if( *format == 'd' ) {\r
- pc += printi (out, va_arg( args, int ), 10, 1, width, pad, 'a');\r
- continue;\r
- }\r
- if( *format == 'x' ) {\r
- pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'a');\r
- continue;\r
- }\r
- if( *format == 'X' ) {\r
- pc += printi (out, va_arg( args, int ), 16, 0, width, pad, 'A');\r
- continue;\r
- }\r
- if( *format == 'u' ) {\r
- pc += printi (out, va_arg( args, int ), 10, 0, width, pad, 'a');\r
- continue;\r
- }\r
- if( *format == 'c' ) {\r
- /* char are converted to int then pushed on the stack */\r
- scr[0] = (char)va_arg( args, int );\r
- scr[1] = '\0';\r
- pc += prints (out, scr, width, pad);\r
- continue;\r
- }\r
- }\r
- else {\r
- out:\r
- printchar (out, *format);\r
- ++pc;\r
- }\r
- }\r
- if (out) **out = '\0';\r
- va_end( args );\r
- return pc;\r
-}\r
-\r
-int printf(const char *format, ...)\r
-{\r
- va_list args;\r
- \r
- va_start( args, format );\r
- return print( 0, format, args );\r
-}\r
-\r
-int sprintf(char *out, const char *format, ...)\r
-{\r
- va_list args;\r
- \r
- va_start( args, format );\r
- return print( &out, format, args );\r
-}\r
-\r
-\r
-int snprintf( char *buf, unsigned int count, const char *format, ... )\r
-{\r
- va_list args;\r
- \r
- ( void ) count;\r
- \r
- va_start( args, format );\r
- return print( &buf, format, args );\r
-}\r
-\r
-\r
-#ifdef TEST_PRINTF\r
-int main(void)\r
-{\r
- char *ptr = "Hello world!";\r
- char *np = 0;\r
- int i = 5;\r
- unsigned int bs = sizeof(int)*8;\r
- int mi;\r
- char buf[80];\r
-\r
- mi = (1 << (bs-1)) + 1;\r
- printf("%s\n", ptr);\r
- printf("printf test\n");\r
- printf("%s is null pointer\n", np);\r
- printf("%d = 5\n", i);\r
- printf("%d = - max int\n", mi);\r
- printf("char %c = 'a'\n", 'a');\r
- printf("hex %x = ff\n", 0xff);\r
- printf("hex %02x = 00\n", 0);\r
- printf("signed %d = unsigned %u = hex %x\n", -3, -3, -3);\r
- printf("%d %s(s)%", 0, "message");\r
- printf("\n");\r
- printf("%d %s(s) with %%\n", 0, "message");\r
- sprintf(buf, "justif: \"%-10s\"\n", "left"); printf("%s", buf);\r
- sprintf(buf, "justif: \"%10s\"\n", "right"); printf("%s", buf);\r
- sprintf(buf, " 3: %04d zero padded\n", 3); printf("%s", buf);\r
- sprintf(buf, " 3: %-4d left justif.\n", 3); printf("%s", buf);\r
- sprintf(buf, " 3: %4d right justif.\n", 3); printf("%s", buf);\r
- sprintf(buf, "-3: %04d zero padded\n", -3); printf("%s", buf);\r
- sprintf(buf, "-3: %-4d left justif.\n", -3); printf("%s", buf);\r
- sprintf(buf, "-3: %4d right justif.\n", -3); printf("%s", buf);\r
-\r
- return 0;\r
-}\r
-\r
-/*\r
- * if you compile this file with\r
- * gcc -Wall $(YOUR_C_OPTIONS) -DTEST_PRINTF -c printf.c\r
- * you will get a normal warning:\r
- * printf.c:214: warning: spurious trailing `%' in format\r
- * this line is testing an invalid % at the end of the format string.\r
- *\r
- * this should display (on 32bit int machine) :\r
- *\r
- * Hello world!\r
- * printf test\r
- * (null) is null pointer\r
- * 5 = 5\r
- * -2147483647 = - max int\r
- * char a = 'a'\r
- * hex ff = ff\r
- * hex 00 = 00\r
- * signed -3 = unsigned 4294967293 = hex fffffffd\r
- * 0 message(s)\r
- * 0 message(s) with %\r
- * justif: "left "\r
- * justif: " right"\r
- * 3: 0003 zero padded\r
- * 3: 3 left justif.\r
- * 3: 3 right justif.\r
- * -3: -003 zero padded\r
- * -3: -3 left justif.\r
- * -3: -3 right justif.\r
- */\r
-\r
-#endif\r
-\r
-\r
-/* To keep linker happy. */\r
-int write( int i, char* c, int n)\r
-{\r
- (void)i;\r
- (void)n;\r
- (void)c;\r
- return 0;\r
-}\r
-\r
+++ /dev/null
-/*\r
- * GENERATED FILE - DO NOT EDIT\r
- * (C) Code Red Technologies Ltd, 2008-9 \r
- * Generated C linker script file for LPC1768 \r
- * (created from nxp_lpc13_c.ld (v2.0.11 (200907061347)) on Thu Jul 09 12:44:31 BST 2009)\r
-*/\r
-\r
-GROUP(libgcc.a libc.a)
-\r
-MEMORY\r
-{\r
- FLASH (rx) : ORIGIN = 0x0 LENGTH = 0x80000\r
- SRAM (rwx) : ORIGIN = 0x10000000, LENGTH = 0x8000\r
- AHBRAM0 : ORIGIN = 0x2007c000, LENGTH = 0x4000\r
- AHBRAM1 : ORIGIN = 0x20080000, LENGTH = 0x4000\r
-}\r
-\r
-_vRamTop = ORIGIN( SRAM ) + LENGTH( SRAM );\r
-\r
-/* Variables used by FreeRTOS-MPU. */\r
-_Privileged_Functions_Region_Size = 16K;\r
-_Privileged_Data_Region_Size = 256;\r
-\r
-__FLASH_segment_start__ = ORIGIN( FLASH );\r
-__FLASH_segment_end__ = __FLASH_segment_start__ + LENGTH( FLASH );\r
-\r
-__privileged_functions_start__ = ORIGIN( FLASH );\r
-__privileged_functions_end__ = __privileged_functions_start__ + _Privileged_Functions_Region_Size;\r
-\r
-__SRAM_segment_start__ = ORIGIN( SRAM );\r
-__SRAM_segment_end__ = __SRAM_segment_start__ + LENGTH( SRAM );\r
-\r
-__privileged_data_start__ = ORIGIN( SRAM );\r
-__privileged_data_end__ = ORIGIN( SRAM ) + _Privileged_Data_Region_Size; \r
-\r
-ENTRY(ResetISR)\r
-\r
-SECTIONS\r
-{\r
- /* Privileged section at the start of the flash - vectors must be first\r
- whatever. */\r
- privileged_functions :\r
- {\r
- KEEP(*(.isr_vector))\r
- *(privileged_functions)\r
- } > FLASH\r
- \r
- .text :\r
- {\r
- /* Non privileged code kept out of the first 16K or flash. */\r
- . = __privileged_functions_start__ + _Privileged_Functions_Region_Size;\r
- \r
- *(.text*)\r
- *(.rodata*)\r
-\r
- } > FLASH\r
-\r
-\r
- /* for exception handling/unwind - some Newlib functions (in common with C++ and STDC++) use this. */\r
- \r
- .ARM.extab : \r
- {\r
- *(.ARM.extab* .gnu.linkonce.armextab.*)\r
- } > FLASH\r
-\r
- __exidx_start = .;\r
- .ARM.exidx :\r
- {\r
- *(.ARM.exidx* .gnu.linkonce.armexidx.*)\r
- } > FLASH\r
- __exidx_end = .;\r
-\r
- _etext = .;\r
- \r
- /* zero initialized data */ \r
- privileged_data :\r
- {\r
- _bss = .;\r
- *(privileged_data)\r
- /* Non kernel data is kept out of the first 256 bytes of SRAM. */\r
- } > SRAM \r
-\r
- . = ORIGIN( SRAM ) + _Privileged_Data_Region_Size;\r
-\r
- .bss :\r
- {\r
- *(.bss*)\r
- *(COMMON)\r
- _ebss = .;\r
- } > SRAM\r
- \r
- .data : AT (__exidx_end)\r
- {\r
- _data = .; \r
- *(vtable)\r
- *(.data*)\r
- _edata = .;\r
- } > SRAM\r
-\r
-\r
- /* Where we put the heap with cr_clib */\r
- .cr_heap :\r
- {\r
- end = .;\r
- _pvHeapStart = .;\r
- } > SRAM\r
-\r
-/*\r
- Note: (ref: M0000066)\r
- Moving the stack down by 16 is to work around a GDB bug.\r
- This space can be reclaimed for Production Builds.\r
-*/ \r
- _vStackTop = _vRamTop - 16;\r
- \r
- .ETHRAM :\r
- {\r
- } > AHBRAM0\r
- \r
- .USBRAM :\r
- {\r
- } > AHBRAM1\r
-}\r
+++ /dev/null
-/* Don't need anything here. */
-
-#include <stdlib.h>
-#include <sys/stat.h>
-
-int _read_r (struct _reent *r, int file, char * ptr, int len)
-{
- ( void ) r;
- ( void ) file;
- ( void ) ptr;
- ( void ) len;
- return -1;
-}
-
-/***************************************************************************/
-
-int _lseek_r (struct _reent *r, int file, int ptr, int dir)
-{
- ( void ) r;
- ( void ) file;
- ( void ) ptr;
- ( void ) dir;
-
- return 0;
-}
-
-/***************************************************************************/
-
-int _write_r (struct _reent *r, int file, char * ptr, int len)
-{
- ( void ) r;
- ( void ) file;
- ( void ) ptr;
- ( void ) len;
-
- return 0;
-}
-
-/***************************************************************************/
-
-int _close_r (struct _reent *r, int file)
-{
- ( void ) r;
- ( void ) file;
-
- return 0;
-}
-
-/***************************************************************************/
-
-caddr_t _sbrk_r (struct _reent *r, int incr)
-{
- ( void ) r;
- ( void ) incr;
-
- return 0;
-}
-
-/***************************************************************************/
-
-int _fstat_r (struct _reent *r, int file, struct stat * st)
-{
- ( void ) r;
- ( void ) file;
- ( void ) st;
-
- return 0;
-}
-
-/***************************************************************************/
-
-int _isatty_r(struct _reent *r, int fd)
-{
- ( void ) r;
- ( void ) fd;
-
- return 0;
-}
-
-
-
-
+++ /dev/null
-/******************************************************************************\r
- * @file: system_LPC17xx.h\r
- * @purpose: CMSIS Cortex-M3 Device Peripheral Access Layer Header File\r
- * for the NXP LPC17xx Device Series \r
- * @version: V1.0\r
- * @date: 25. Nov. 2008\r
- *----------------------------------------------------------------------------\r
- *\r
- * Copyright (C) 2008 ARM Limited. All rights reserved.\r
- *\r
- * ARM Limited (ARM) is supplying this software for use with Cortex-M3 \r
- * processor based microcontrollers. This file can be freely distributed \r
- * within development tools that are supporting such ARM based processors. \r
- *\r
- * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
- * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
- * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
- * ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
- * CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
- *\r
- ******************************************************************************/\r
-\r
-\r
-#ifndef __SYSTEM_LPC17xx_H\r
-#define __SYSTEM_LPC17xx_H\r
-\r
-extern uint32_t SystemFrequency; /*!< System Clock Frequency (Core Clock) */\r
-\r
-\r
-/**\r
- * Initialize the system\r
- *\r
- * @param none\r
- * @return none\r
- *\r
- * @brief Setup the microcontroller system.\r
- * Initialize the System and update the SystemFrequency variable.\r
- */\r
-extern void SystemInit (void);\r
-#endif\r
\r
#define configUSE_PREEMPTION 1\r
#define configTICK_RATE_HZ ( 1000 )\r
-#define configUSE_PORT_OPTIMISED_TASK_SELECTION 0\r
+#define configUSE_PORT_OPTIMISED_TASK_SELECTION 1\r
#define configUSE_QUEUE_SETS 1\r
#define configUSE_IDLE_HOOK 1\r
#define configUSE_TICK_HOOK 1\r
/* __BVIC_PRIO_BITS will be specified when CMSIS is being used. */\r
#define configPRIO_BITS __NVIC_PRIO_BITS\r
#else\r
- #define configPRIO_BITS 3 /* 7 priority levels */\r
+ #define configPRIO_BITS 4 /* 15 priority levels */\r
#endif\r
\r
/* The lowest interrupt priority that can be used in a call to a "set priority"\r
function. */\r
-#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 0x7\r
+#define configLIBRARY_LOWEST_INTERRUPT_PRIORITY 0xf\r
\r
/* The highest interrupt priority that can be used by any interrupt service\r
routine that makes calls to interrupt safe FreeRTOS API functions. DO NOT CALL\r
\r
/* Normal assert() semantics without relying on the provision of an assert.h\r
header file. */\r
-#define configASSERT( x ) if( ( x ) == 0UL ) { __asm volatile( "cpsid i" ); for( ;; ); }\r
+#define configASSERT( x ) if( ( x ) == 0UL ) { taskENTER_CRITICAL(); for( ;; ); }\r
\r
/* LED not used at present, so just increment a variable to keep a count of the\r
number of times the LED would otherwise have been toggled. */\r
<MDIClientArea>
<RegID>0</RegID>
<MDITabState>
- <Len>276</Len>
- <Data>01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000001000000000000000100000050433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C44656D6F5C434F525445585F4D50555F53696D756C61746F725F4B65696C5F4743435C6D61696E2E6300000000066D61696E2E6300000000C5D4F200FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000110100005E0000009006000034030000</Data>
+ <Len>857</Len>
+ <Data>0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000600000002000000010000004C433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C536F757263655C706F727461626C655C436F6D6D6F6E5C6D70755F77726170706572732E63000000000E6D70755F77726170706572732E6300000000F7B88600FFFFFFFF5A433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C44656D6F5C434F525445585F4D50555F53696D756C61746F725F4B65696C5F4743435C4672656552544F53436F6E6669672E6800000000104672656552544F53436F6E6669672E68000000009CC1B600FFFFFFFF50433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C44656D6F5C434F525445585F4D50555F53696D756C61746F725F4B65696C5F4743435C6D61696E2E6300000000066D61696E2E6300000000BCA8E100FFFFFFFF4D433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C536F757263655C706F727461626C655C4743435C41524D5F434D335F4D50555C706F72742E630000000006706F72742E6300000000F0A0A100FFFFFFFF67433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C44656D6F5C434F525445585F4D50555F53696D756C61746F725F4B65696C5F4743435C4743435F53706563696669635C737461727475705F41524D434D342E530000000010737461727475705F41524D434D342E5300000000BECEA100FFFFFFFF52433A5C455C4465765C4672656552544F535C576F726B696E67436F70795C4672656552544F535C536F757263655C706F727461626C655C4743435C41524D5F434D335F4D50555C706F72746D6163726F2E68000000000B706F72746D6163726F2E6800000000FFDC7800FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000110100005E0000008007000050030000</Data>
</MDITabState>
</MDIClientArea>
<ViewEx>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>03000000620000000A01000008030000</Data>
+ <Data>03000000620000000A01000024030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>03000000620000000A01000008030000</Data>
+ <Data>03000000620000000A01000024030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>03000000620000000A01000008030000</Data>
+ <Data>03000000620000000A01000024030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>03000000620000000A01000008030000</Data>
+ <Data>03000000620000000A01000024030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000003C0300008D060000BF030000</Data>
+ <Data>03000000580300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000003C0300008D060000BF030000</Data>
+ <Data>03000000580300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>03000000620000000A01000008030000</Data>
+ <Data>03000000620000000A01000024030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000003C0300008D060000BF030000</Data>
+ <Data>03000000580300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000003C0300008D060000BF030000</Data>
+ <Data>03000000580300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>00000000D803000090060000EB030000</Data>
+ <Data>000000006E0400008007000081040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
</Window>
<DockMan>
<Len>2619</Len>
- <Data>000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFD6000000DB000000E4040000DF000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000D60000005E000000E4040000EE000000D60000004B000000E4040000DB0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF0E0400004B000000120400002B020000000000000200000004000000010000000000000000000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000120400005E000000E40400003E020000120400004B000000E40400002B0200000000000040410046170000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF0D0100004B000000110100002103000001000000020000100400000001000000D2FEFFFF57050000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000000000005E0000000D01000034030000000000004B0000000D010000210300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000017020000E40400001B02000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB09000001800080000000000000000000002E020000E4040000D2020000000000001B020000E4040000BF02000000000000404100460E0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF720200001B02000076020000BF02000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF00000000210300009006000025030000010000000100001004000000010000008DFDFFFF0F010000FFFFFFFF04000000C5000000C7000000B40100007794000001800080000001000000000000003803000090060000EB030000000000002503000090060000D80300000000000040820056040000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0742726F77736572010000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
+ <Data>000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFD6000000DB000000E4040000DF000000000000000100000004000000010000000000000000000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E650020000000000000D60000005E000000E4040000EE000000D60000004B000000E4040000DB0000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF0E0400004B000000120400002B020000000000000200000004000000010000000000000000000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000120400005E000000E40400003E020000120400004B000000E40400002B0200000000000040410046170000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF0D0100004B000000110100003D03000001000000020000100400000001000000D2FEFFFF57050000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000000000005E0000000D01000050030000000000004B0000000D0100003D0300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF0000000017020000E40400001B02000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB09000001800080000000000000000000002E020000E4040000D2020000000000001B020000E4040000BF02000000000000404100460E0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF720200001B02000076020000BF02000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF000000003D03000080070000410300000100000001000010040000000100000099FCFFFFB1000000FFFFFFFF04000000C5000000C7000000B40100007794000001800080000001000000000000005403000080070000810400000000000041030000800700006E0400000000000040820056040000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0742726F77736572010000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
</DockMan>
<ToolBar>
<RegID>59392</RegID>
<Name>File</Name>
<Buttons>
- <Len>2430</Len>
- <Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000004000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000846524F4D5F495352960000000000000014000846524F4D5F49535200055969656C640848616E646C65722810756C5461736B4E6F7469667954616B6515785461736B4E6F746966795374617465436C6561721E70727645786572636973655461736B4E6F74696669636174696F6E41504917707276457865726369736553656D6170686F72654150490C636F6E6669674153534552541E494E434C5544455F7854696D657250656E6446756E6374696F6E43616C6C0E47657443757272656E745461736B0E785461736B47657448616E646C65147851756575654765744D75746578486F6C646572184D50555F7851756575654765744D75746578486F6C646572084765744D7574657813757853656D6170686F7265476574436F756E74177853656D6170686F7265476976655265637572736976651E7853656D6170686F72654372656174655265637572736976654D7574657809554C4F4E475F4D4158064C494D4954530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C6572030000</Data>
+ <Len>2234</Len>
+ <Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000C636F6E66696741535345525496000000000000000B000C636F6E6669674153534552540008546F44656C65746511707276526169736550726976696C6567650870727652616973650B706F727452455345545F501476506F7274526573657450726976696C6567656413706F727452455345545F50524956494C4547451378506F7274526169736550726976696C656765237374617469632042617365547970655F7420707276526169736550726976696C65676510706F72744E5649435F5356435F5052490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020000001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C6572030000</Data>
</Buttons>
<OriginalItems>
<Len>1423</Len>
</ToolBar>
<ControlBarsSummary>
<Bars>0</Bars>
- <ScreenCX>1680</ScreenCX>
- <ScreenCY>1050</ScreenCY>
+ <ScreenCX>1920</ScreenCX>
+ <ScreenCY>1200</ScreenCY>
</ControlBarsSummary>
</ViewEx>
<ViewEx>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000006200000065010000DD020000</Data>
+ <Data>03000000620000006501000073030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000006200000065010000DD020000</Data>
+ <Data>03000000620000006501000073030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000006200000065010000DD020000</Data>
+ <Data>03000000620000006501000073030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000006200000065010000DD020000</Data>
+ <Data>03000000620000006501000073030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>00000000FA02000048030000D8030000</Data>
+ <Data>0000000090030000C00300006E040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>030000006200000065010000DD020000</Data>
+ <Data>03000000620000006501000073030000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>4F030000110300008D060000BF030000</Data>
+ <Data>C7030000A70300007D07000055040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
<RecentRowIndex>0</RecentRowIndex>
<RectRecentDocked>
<Len>16</Len>
- <Data>00000000D803000090060000EB030000</Data>
+ <Data>000000006E0400008007000081040000</Data>
</RectRecentDocked>
<RectRecentFloat>
<Len>16</Len>
</Window>
<DockMan>
<Len>2694</Len>
- <Data>000000000B000000000000000020000000000000FFFFFFFFFFFFFFFF6C010000F500000090060000F900000000000000010000000400000001000000C2FEFFFFB4000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E6500200000000000006C0100005E00000090060000080100006C0100004B00000090060000F50000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFFA40400004B000000A804000085020000000000000200000004000000010000000000000000000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000A80400005E0000009805000098020000A80400004B00000098050000850200000000000040410046170000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF680100004B0000006C010000F60200000100000002000010040000000100000012FFFFFF87060000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000000000005E0000006801000009030000000000004B00000068010000F60200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF04000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF00000000F602000090060000FA0200000100000001000010040000000100000008FEFFFF2701000000000000000000000000000001000000000000000000000001000000000000000000000001000000FFFFFFFFC003000094020000C40300006E04000000000000020000000400000000000000000000000000000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB090000018000800000010000004C0300000D03000090060000EB0300004C030000FA02000090060000D803000000000000404100560E0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF050000000000000002000000000000000100000002000000FFFFFFFF48030000FA0200004C030000D80300000100000002000010040000000000000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000850200009805000089020000000000000100000004000000010000000000000000000000FFFFFFFF04000000C5000000C7000000B40100007794000001800080000000000000000000009C02000098050000420300000000000089020000980500002F0300000000000040820046040000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
+ <Data>000000000B000000000000000020000000000000FFFFFFFFFFFFFFFF6C010000F500000090060000F900000000000000010000000400000001000000C2FEFFFFB4000000FFFFFFFF06000000CB00000057010000CC000000F08B00005A01000079070000FFFF02000B004354616262656450616E6500200000000000006C0100005E00000090060000080100006C0100004B00000090060000F50000000000000040280046060000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFFA40400004B000000A804000085020000000000000200000004000000010000000000000000000000FFFFFFFF17000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000001800040000000000000A80400005E0000009805000098020000A80400004B00000098050000850200000000000040410046170000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFF680100004B0000006C0100008C0300000100000002000010040000000100000012FFFFFF87060000FFFFFFFF05000000ED0300006D000000C3000000C40000007394000001800010000001000000000000005E000000680100009F030000000000004B000000680100008C0300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73000000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF04000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF000000008C03000080070000900300000100000001000010040000000100000008FEFFFF2701000000000000000000000000000001000000000000000000000001000000000000000000000001000000FFFFFFFFC003000094020000C40300006E04000000000000020000000400000000000000000000000000000001000000C6000000FFFFFFFF0E0000008F070000930700009407000095070000960700009007000091070000B5010000B8010000B9050000BA050000BB050000BC050000CB09000001800080000001000000C4030000A30300008007000081040000C403000090030000800700006E04000000000000404100560E0000001343616C6C20537461636B202B204C6F63616C73010000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF050000000000000002000000000000000100000002000000FFFFFFFFC003000090030000C40300006E0400000100000002000010040000000000000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF00000000850200009805000089020000000000000100000004000000010000000000000000000000FFFFFFFF04000000C5000000C7000000B40100007794000001800080000000000000000000009C02000098050000420300000000000089020000980500002F0300000000000040820046040000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000</Data>
</DockMan>
<ToolBar>
<RegID>59392</RegID>
<Name>File</Name>
<Buttons>
- <Len>2430</Len>
- <Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000000460000000000000000000000000000000001000000010000000180FE880000000000004500000000000000000000000000000000010000000100000001800B810000000000001300000000000000000000000000000000010000000100000001800C810000000000001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000846524F4D5F495352960000000000000014000846524F4D5F49535200055969656C640848616E646C65722810756C5461736B4E6F7469667954616B6515785461736B4E6F746966795374617465436C6561721E70727645786572636973655461736B4E6F74696669636174696F6E41504917707276457865726369736553656D6170686F72654150490C636F6E6669674153534552541E494E434C5544455F7854696D657250656E6446756E6374696F6E43616C6C0E47657443757272656E745461736B0E785461736B47657448616E646C65147851756575654765744D75746578486F6C646572184D50555F7851756575654765744D75746578486F6C646572084765744D7574657813757853656D6170686F7265476574436F756E74177853656D6170686F7265476976655265637572736976651E7853656D6170686F72654372656174655265637572736976654D7574657809554C4F4E475F4D4158064C494D4954530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020003001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000400160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C6572030000</Data>
+ <Len>2234</Len>
+ <Data>00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000C636F6E66696741535345525496000000000000000B000C636F6E6669674153534552540008546F44656C65746511707276526169736550726976696C6567650870727652616973650B706F727452455345545F501476506F7274526573657450726976696C6567656413706F727452455345545F50524956494C4547451378506F7274526169736550726976696C656765237374617469632042617365547970655F7420707276526169736550726976696C65676510706F72744E5649435F5356435F5052490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000020001001500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E4C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002880DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002880DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002880E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002880E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000288018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000028800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002880D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002880E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C6572030000</Data>
</Buttons>
<OriginalItems>
<Len>1423</Len>
</ToolBar>
<ControlBarsSummary>
<Bars>0</Bars>
- <ScreenCX>1680</ScreenCX>
- <ScreenCY>1050</ScreenCY>
+ <ScreenCX>1920</ScreenCX>
+ <ScreenCY>1200</ScreenCY>
</ControlBarsSummary>
</ViewEx>
</WinLayoutEx>
<ActiveMDIGroup>0</ActiveMDIGroup>
<MDIGroup>
<Size>100</Size>
- <ActiveTab>0</ActiveTab>
+ <ActiveTab>2</ActiveTab>
+ <Doc>
+ <Name>..\..\..\Source\portable\Common\mpu_wrappers.c</Name>
+ <ColumnNumber>2</ColumnNumber>
+ <TopLine>1071</TopLine>
+ <CurrentLine>1136</CurrentLine>
+ <Folding>1</Folding>
+ <ContractedFolders></ContractedFolders>
+ <PaneID>0</PaneID>
+ </Doc>
+ <Doc>
+ <Name>..\FreeRTOSConfig.h</Name>
+ <ColumnNumber>68</ColumnNumber>
+ <TopLine>147</TopLine>
+ <CurrentLine>194</CurrentLine>
+ <Folding>1</Folding>
+ <ContractedFolders></ContractedFolders>
+ <PaneID>0</PaneID>
+ </Doc>
<Doc>
<Name>..\main.c</Name>
<ColumnNumber>0</ColumnNumber>
- <TopLine>70</TopLine>
- <CurrentLine>847</CurrentLine>
+ <TopLine>510</TopLine>
+ <CurrentLine>382</CurrentLine>
+ <Folding>1</Folding>
+ <ContractedFolders></ContractedFolders>
+ <PaneID>0</PaneID>
+ </Doc>
+ <Doc>
+ <Name>..\..\..\Source\portable\GCC\ARM_CM3_MPU\port.c</Name>
+ <ColumnNumber>23</ColumnNumber>
+ <TopLine>382</TopLine>
+ <CurrentLine>424</CurrentLine>
+ <Folding>1</Folding>
+ <ContractedFolders></ContractedFolders>
+ <PaneID>0</PaneID>
+ </Doc>
+ <Doc>
+ <Name>.\startup_ARMCM4.S</Name>
+ <ColumnNumber>0</ColumnNumber>
+ <TopLine>125</TopLine>
+ <CurrentLine>139</CurrentLine>
+ <Folding>1</Folding>
+ <ContractedFolders></ContractedFolders>
+ <PaneID>0</PaneID>
+ </Doc>
+ <Doc>
+ <Name>C:\E\Dev\FreeRTOS\WorkingCopy\FreeRTOS\Source\portable\GCC\ARM_CM3_MPU\portmacro.h</Name>
+ <ColumnNumber>49</ColumnNumber>
+ <TopLine>241</TopLine>
+ <CurrentLine>253</CurrentLine>
<Folding>1</Folding>
<ContractedFolders></ContractedFolders>
<PaneID>0</PaneID>
<Bp>
<Number>0</Number>
<Type>0</Type>
- <LineNumber>1170</LineNumber>
+ <LineNumber>1169</LineNumber>
<EnabledFlag>1</EnabledFlag>
- <Address>37552</Address>
+ <Address>38532</Address>
<ByteObject>0</ByteObject>
<HtxType>0</HtxType>
<ManyObjects>0</ManyObjects>
<BreakIfRCount>1</BreakIfRCount>
<Filename>C:\E\Dev\FreeRTOS\WorkingCopy\FreeRTOS\Demo\CORTEX_MPU_Simulator_Keil_GCC\main.c</Filename>
<ExecCommand></ExecCommand>
- <Expression>\\RTOSDemo\../main.c\1170</Expression>
- </Bp>
- <Bp>
- <Number>1</Number>
- <Type>0</Type>
- <LineNumber>1162</LineNumber>
- <EnabledFlag>1</EnabledFlag>
- <Address>0</Address>
- <ByteObject>0</ByteObject>
- <HtxType>0</HtxType>
- <ManyObjects>0</ManyObjects>
- <SizeOfObject>0</SizeOfObject>
- <BreakByAccess>0</BreakByAccess>
- <BreakIfRCount>0</BreakIfRCount>
- <Filename>C:\E\Dev\FreeRTOS\WorkingCopy\FreeRTOS\Demo\CORTEX_MPU_Simulator_Keil_GCC\main.c</Filename>
- <ExecCommand></ExecCommand>
- <Expression></Expression>
+ <Expression>\\RTOSDemo\../main.c\1169</Expression>
</Bp>
</Breakpoint>
<WatchWindow1>
<Group>
<GroupName>main_and_config</GroupName>
- <tvExp>1</tvExp>
+ <tvExp>0</tvExp>
<tvExpOptDlg>0</tvExpOptDlg>
<cbSel>0</cbSel>
<RteFlg>0</RteFlg>
<RteFlg>0</RteFlg>
<bShared>0</bShared>
</File>
+ <File>
+ <GroupNumber>3</GroupNumber>
+ <FileNumber>11</FileNumber>
+ <FileType>1</FileType>
+ <tvExp>0</tvExp>
+ <tvExpOptDlg>0</tvExpOptDlg>
+ <bDave2>0</bDave2>
+ <PathWithFileName>..\..\..\Source\portable\Common\mpu_wrappers.c</PathWithFileName>
+ <FilenameWithoutPath>mpu_wrappers.c</FilenameWithoutPath>
+ <RteFlg>0</RteFlg>
+ <bShared>0</bShared>
+ </File>
</Group>
</ProjectOpt>
<FileType>1</FileType>
<FilePath>..\..\..\Source\portable\GCC\ARM_CM3_MPU\port.c</FilePath>
</File>
+ <File>
+ <FileName>mpu_wrappers.c</FileName>
+ <FileType>1</FileType>
+ <FilePath>..\..\..\Source\portable\Common\mpu_wrappers.c</FilePath>
+ </File>
</Files>
</Group>
</Groups>
xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
\r
- /* Create a task that does nothing but get deleted. This is done for code\r
- coverage test purposes only. The task's handle is saved in xTaskToDelete\r
- so it can get deleted in the idle task hook. */\r
+ /* Create a task that does nothing but ensure some of the MPU API functions\r
+ can be called correctly, then get deleted. This is done for code coverage\r
+ test purposes only. The task's handle is saved in xTaskToDelete so it can \r
+ get deleted in the idle task hook. */\r
xTaskCreateRestricted( &xTaskToDeleteParameters, &xTaskToDelete );\r
\r
/* Create the tasks that are created using the original xTaskCreate() API\r
/* Remove compiler warnings about unused parameters. */\r
( void ) pvParameters;\r
\r
+ /* Check the enter and exit critical macros are working correctly. If the\r
+ SVC priority is below configMAX_SYSCALL_INTERRUPT_PRIORITY then this will\r
+ fault. */\r
+ taskENTER_CRITICAL();\r
+ taskEXIT_CRITICAL();\r
+\r
/* Exercise the API of various RTOS objects. */\r
prvExerciseEventGroupAPI();\r
prvExerciseSemaphoreAPI();\r
--- /dev/null
+/*\r
+ FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
+ All rights reserved\r
+\r
+ VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
+\r
+ This file is part of the FreeRTOS distribution.\r
+\r
+ FreeRTOS is free software; you can redistribute it and/or modify it under\r
+ the terms of the GNU General Public License (version 2) as published by the\r
+ Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
+\r
+ ***************************************************************************\r
+ >>! NOTE: The modification to the GPL is included to allow you to !<<\r
+ >>! distribute a combined work that includes FreeRTOS without being !<<\r
+ >>! obliged to provide the source code for proprietary components !<<\r
+ >>! outside of the FreeRTOS kernel. !<<\r
+ ***************************************************************************\r
+\r
+ FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
+ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
+ FOR A PARTICULAR PURPOSE. Full license text is available on the following\r
+ link: http://www.freertos.org/a00114.html\r
+\r
+ ***************************************************************************\r
+ * *\r
+ * FreeRTOS provides completely free yet professionally developed, *\r
+ * robust, strictly quality controlled, supported, and cross *\r
+ * platform software that is more than just the market leader, it *\r
+ * is the industry's de facto standard. *\r
+ * *\r
+ * Help yourself get started quickly while simultaneously helping *\r
+ * to support the FreeRTOS project by purchasing a FreeRTOS *\r
+ * tutorial book, reference manual, or both: *\r
+ * http://www.FreeRTOS.org/Documentation *\r
+ * *\r
+ ***************************************************************************\r
+\r
+ http://www.FreeRTOS.org/FAQHelp.html - Having a problem? Start by reading\r
+ the FAQ page "My application does not run, what could be wrong?". Have you\r
+ defined configASSERT()?\r
+\r
+ http://www.FreeRTOS.org/support - In return for receiving this top quality\r
+ embedded software for free we request you assist our global community by\r
+ participating in the support forum.\r
+\r
+ http://www.FreeRTOS.org/training - Investing in training allows your team to\r
+ be as productive as possible as early as possible. Now you can receive\r
+ FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
+ Ltd, and the world's leading authority on the world's leading RTOS.\r
+\r
+ http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
+ including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
+ compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
+\r
+ http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
+ Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
+\r
+ http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
+ Integrity Systems ltd. to sell under the OpenRTOS brand. Low cost OpenRTOS\r
+ licenses offer ticketed support, indemnification and commercial middleware.\r
+\r
+ http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
+ engineered and independently SIL3 certified version for use in safety and\r
+ mission critical applications that require provable dependability.\r
+\r
+ 1 tab == 4 spaces!\r
+*/\r
+\r
+/*\r
+ * Implementation of the wrapper functions used to raise the processor privilege\r
+ * before calling a standard FreeRTOS API function.\r
+ */\r
+\r
+/* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining\r
+all the API functions to use the MPU wrappers. That should only be done when\r
+task.h is included from an application file. */\r
+#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
+\r
+/* Scheduler includes. */\r
+#include "FreeRTOS.h"\r
+#include "task.h"\r
+#include "queue.h"\r
+#include "timers.h"\r
+#include "event_groups.h"\r
+#include "mpu_prototypes.h"\r
+\r
+#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
+\r
+/*\r
+ * Checks to see if being called from the context of an unprivileged task, and\r
+ * if so raises the privilege level and returns false - otherwise does nothing\r
+ * other than return true.\r
+ */\r
+extern BaseType_t xPortRaisePrivilege( void );\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask )\r
+{\r
+BaseType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskCreateRestricted( pxTaskDefinition, pxCreatedTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+ BaseType_t MPU_xTaskCreate( TaskFunction_t pvTaskCode, const char * const pcName, uint16_t usStackDepth, void *pvParameters, UBaseType_t uxPriority, TaskHandle_t *pxCreatedTask )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskCreate( pvTaskCode, pcName, usStackDepth, pvParameters, uxPriority, pxCreatedTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
+ TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer )\r
+ {\r
+ TaskHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskCreateStatic( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, puxStackBuffer, pxTaskBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif /* configSUPPORT_STATIC_ALLOCATION */\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const xRegions )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskAllocateMPURegions( xTask, xRegions );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskDelete == 1 )\r
+ void MPU_vTaskDelete( TaskHandle_t pxTaskToDelete )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskDelete( pxTaskToDelete );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskDelayUntil == 1 )\r
+ void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, TickType_t xTimeIncrement )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_xTaskAbortDelay == 1 )\r
+ BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskAbortDelay( xTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskDelay == 1 )\r
+ void MPU_vTaskDelay( TickType_t xTicksToDelay )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskDelay( xTicksToDelay );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_uxTaskPriorityGet == 1 )\r
+ UBaseType_t MPU_uxTaskPriorityGet( TaskHandle_t pxTask )\r
+ {\r
+ UBaseType_t uxReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ uxReturn = uxTaskPriorityGet( pxTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskPrioritySet == 1 )\r
+ void MPU_vTaskPrioritySet( TaskHandle_t pxTask, UBaseType_t uxNewPriority )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskPrioritySet( pxTask, uxNewPriority );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_eTaskGetState == 1 )\r
+ eTaskState MPU_eTaskGetState( TaskHandle_t pxTask )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+ eTaskState eReturn;\r
+\r
+ eReturn = eTaskGetState( pxTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return eReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TRACE_FACILITY == 1 )\r
+ void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskGetInfo( xTask, pxTaskStatus, xGetFreeStackSpace, eState );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )\r
+ TaskHandle_t MPU_xTaskGetIdleTaskHandle( void )\r
+ {\r
+ TaskHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetIdleTaskHandle();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskSuspend == 1 )\r
+ void MPU_vTaskSuspend( TaskHandle_t pxTaskToSuspend )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskSuspend( pxTaskToSuspend );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_vTaskSuspend == 1 )\r
+ void MPU_vTaskResume( TaskHandle_t pxTaskToResume )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskResume( pxTaskToResume );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vTaskSuspendAll( void )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskSuspendAll();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xTaskResumeAll( void )\r
+{\r
+BaseType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskResumeAll();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+TickType_t MPU_xTaskGetTickCount( void )\r
+{\r
+TickType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetTickCount();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+UBaseType_t MPU_uxTaskGetNumberOfTasks( void )\r
+{\r
+UBaseType_t uxReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ uxReturn = uxTaskGetNumberOfTasks();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery )\r
+{\r
+char *pcReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ pcReturn = pcTaskGetName( xTaskToQuery );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return pcReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_xTaskGetHandle == 1 )\r
+ TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery )\r
+ {\r
+ TaskHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetHandle( pcNameToQuery );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_TRACE_FACILITY == 1 )\r
+ void MPU_vTaskList( char *pcWriteBuffer )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskList( pcWriteBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configGENERATE_RUN_TIME_STATS == 1 )\r
+ void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskGetRunTimeStats( pcWriteBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
+ void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxTagValue )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskSetApplicationTaskTag( xTask, pxTagValue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
+ TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask )\r
+ {\r
+ TaskHookFunction_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetApplicationTaskTag( xTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )\r
+ void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskSetThreadLocalStoragePointer( xTaskToSet, xIndex, pvValue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )\r
+ void *MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex )\r
+ {\r
+ void *pvReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ pvReturn = pvTaskGetThreadLocalStoragePointer( xTaskToQuery, xIndex );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return pvReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
+ BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskCallApplicationTaskHook( xTask, pvParameter );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_TRACE_FACILITY == 1 )\r
+ UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t *pxTaskStatusArray, UBaseType_t uxArraySize, uint32_t *pulTotalRunTime )\r
+ {\r
+ UBaseType_t uxReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ uxReturn = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, pulTotalRunTime );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 )\r
+ UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask )\r
+ {\r
+ UBaseType_t uxReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ uxReturn = uxTaskGetStackHighWaterMark( xTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_xTaskGetCurrentTaskHandle == 1 )\r
+ TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void )\r
+ {\r
+ TaskHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetCurrentTaskHandle();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( INCLUDE_xTaskGetSchedulerState == 1 )\r
+ BaseType_t MPU_xTaskGetSchedulerState( void )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGetSchedulerState();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTaskSetTimeOutState( pxTimeOut );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait )\r
+{\r
+BaseType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskCheckForTimeOut( pxTimeOut, pxTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
+ BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskGenericNotify( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
+ BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskNotifyWait( ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
+ uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait )\r
+ {\r
+ uint32_t ulReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ ulReturn = ulTaskNotifyTake( xClearCountOnExit, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return ulReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
+ BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTaskNotifyStateClear( xTask );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+ QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, UBaseType_t uxItemSize, uint8_t ucQueueType )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
+ QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, ucQueueType );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xQueueGenericReset( QueueHandle_t pxQueue, BaseType_t xNewQueue )\r
+{\r
+BaseType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueGenericReset( pxQueue, xNewQueue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, BaseType_t xCopyPosition )\r
+{\r
+BaseType_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t pxQueue )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+UBaseType_t uxReturn;\r
+\r
+ uxReturn = uxQueueMessagesWaiting( pxQueue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+UBaseType_t uxReturn;\r
+\r
+ uxReturn = uxQueueSpacesAvailable( xQueue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return uxReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xQueueGenericReceive( QueueHandle_t pxQueue, void * const pvBuffer, TickType_t xTicksToWait, BaseType_t xJustPeeking )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+BaseType_t xReturn;\r
+\r
+ xReturn = xQueueGenericReceive( pxQueue, pvBuffer, xTicksToWait, xJustPeeking );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+BaseType_t MPU_xQueuePeekFromISR( QueueHandle_t pxQueue, void * const pvBuffer )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+BaseType_t xReturn;\r
+\r
+ xReturn = xQueuePeekFromISR( pxQueue, pvBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+void* MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+void * xReturn;\r
+\r
+ xReturn = ( void * ) xQueueGetMutexHolder( xSemaphore );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
+ QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueCreateMutex( ucQueueType );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
+ QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
+ QueueHandle_t MPU_xQueueCreateCountingSemaphore( UBaseType_t uxCountValue, UBaseType_t uxInitialCount )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueCreateCountingSemaphore( uxCountValue, uxInitialCount );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
+\r
+ QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue )\r
+ {\r
+ QueueHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueCreateCountingSemaphoreStatic( uxMaxCount, uxInitialCount, pxStaticQueue );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_MUTEXES == 1 )\r
+ BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xBlockTime )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueTakeMutexRecursive( xMutex, xBlockTime );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_MUTEXES == 1 )\r
+ BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t xMutex )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueGiveMutexRecursive( xMutex );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_QUEUE_SETS == 1 )\r
+ QueueSetHandle_t MPU_xQueueCreateSet( UBaseType_t uxEventQueueLength )\r
+ {\r
+ QueueSetHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueCreateSet( uxEventQueueLength );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_QUEUE_SETS == 1 )\r
+ QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t xBlockTimeTicks )\r
+ {\r
+ QueueSetMemberHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueSelectFromSet( xQueueSet, xBlockTimeTicks );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_QUEUE_SETS == 1 )\r
+ BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueAddToSet( xQueueOrSemaphore, xQueueSet );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if ( configUSE_QUEUE_SETS == 1 )\r
+ BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xQueueRemoveFromSet( xQueueOrSemaphore, xQueueSet );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if configQUEUE_REGISTRY_SIZE > 0\r
+ void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vQueueAddToRegistry( xQueue, pcName );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if configQUEUE_REGISTRY_SIZE > 0\r
+ void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vQueueUnregisterQueue( xQueue );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if configQUEUE_REGISTRY_SIZE > 0\r
+ const char *MPU_pcQueueGetName( QueueHandle_t xQueue )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+ const char *pcReturn;\r
+\r
+ pcReturn = pcQueueGetName( xQueue );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ return pcReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vQueueDelete( QueueHandle_t xQueue )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vQueueDelete( xQueue );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+\r
+ void *MPU_pvPortMalloc( size_t xSize )\r
+ {\r
+ void *pvReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ pvReturn = pvPortMalloc( xSize );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return pvReturn;\r
+ }\r
+\r
+#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+\r
+ void MPU_vPortFree( void *pv )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vPortFree( pv );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+\r
+#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vPortInitialiseBlocks( void )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vPortInitialiseBlocks();\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+size_t MPU_xPortGetFreeHeapSize( void )\r
+{\r
+size_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xPortGetFreeHeapSize();\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_TIMERS == 1 ) )\r
+ TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction )\r
+ {\r
+ TimerHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerCreate( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_TIMERS == 1 ) )\r
+ TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer )\r
+ {\r
+ TimerHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerCreateStatic( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxTimerBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ void *MPU_pvTimerGetTimerID( const TimerHandle_t xTimer )\r
+ {\r
+ void * pvReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ pvReturn = pvTimerGetTimerID( xTimer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return pvReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID )\r
+ {\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vTimerSetTimerID( xTimer, pvNewID );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerIsTimerActive( xTimer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void )\r
+ {\r
+ TaskHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerGetTimerDaemonTaskHandle();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )\r
+ BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerPendFunctionCall( xFunctionToPend, pvParameter1, ulParameter2, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ const char * MPU_pcTimerGetName( TimerHandle_t xTimer )\r
+ {\r
+ const char * pcReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ pcReturn = pcTimerGetName( xTimer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return pcReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer )\r
+ {\r
+ TickType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerGetPeriod( xTimer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer )\r
+ {\r
+ TickType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerGetExpiryTime( xTimer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configUSE_TIMERS == 1 )\r
+ BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait )\r
+ {\r
+ BaseType_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xTimerGenericCommand( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+ EventGroupHandle_t MPU_xEventGroupCreate( void )\r
+ {\r
+ EventGroupHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupCreate();\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
+ EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer )\r
+ {\r
+ EventGroupHandle_t xReturn;\r
+ BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupCreateStatic( pxEventGroupBuffer );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+ }\r
+#endif\r
+/*-----------------------------------------------------------*/\r
+\r
+EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait )\r
+{\r
+EventBits_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear )\r
+{\r
+EventBits_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupClearBits( xEventGroup, uxBitsToClear );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet )\r
+{\r
+EventBits_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupSetBits( xEventGroup, uxBitsToSet );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait )\r
+{\r
+EventBits_t xReturn;\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ xReturn = xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+\r
+ return xReturn;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ vEventGroupDelete( xEventGroup );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+\r
+\r
+\r
+\r
+/* Functions that the application writer wants to execute in privileged mode\r
+can be defined in application_defined_privileged_functions.h. The functions\r
+must take the same format as those above whereby the privilege state on exit\r
+equals the privilege state on entry. For example:\r
+\r
+void MPU_FunctionName( [parameters ] )\r
+{\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
+\r
+ FunctionName( [parameters ] );\r
+\r
+ vPortResetPrivilege( xRunningPrivileged );\r
+}\r
+*/\r
+\r
+#if configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS == 1\r
+ #include "application_defined_privileged_functions.h"\r
+#endif\r
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
\r
/* Constants required to access and manipulate the NVIC. */\r
-#define portNVIC_SYSTICK_CTRL ( ( volatile uint32_t * ) 0xe000e010 )\r
-#define portNVIC_SYSTICK_LOAD ( ( volatile uint32_t * ) 0xe000e014 )\r
-#define portNVIC_SYSPRI2 ( ( volatile uint32_t * ) 0xe000ed20 )\r
-#define portNVIC_SYSPRI1 ( ( volatile uint32_t * ) 0xe000ed1c )\r
-#define portNVIC_SYS_CTRL_STATE ( ( volatile uint32_t * ) 0xe000ed24 )\r
+#define portNVIC_SYSTICK_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000e010 ) )\r
+#define portNVIC_SYSTICK_LOAD_REG ( * ( ( volatile uint32_t * ) 0xe000e014 ) )\r
+#define portNVIC_SYSPRI2_REG ( * ( ( volatile uint32_t * ) 0xe000ed20 ) )\r
+#define portNVIC_SYSPRI1_REG ( * ( ( volatile uint32_t * ) 0xe000ed1c ) )\r
+#define portNVIC_SYS_CTRL_STATE_REG ( * ( ( volatile uint32_t * ) 0xe000ed24 ) )\r
#define portNVIC_MEM_FAULT_ENABLE ( 1UL << 16UL )\r
\r
/* Constants required to access and manipulate the MPU. */\r
-#define portMPU_TYPE ( ( volatile uint32_t * ) 0xe000ed90 )\r
-#define portMPU_REGION_BASE_ADDRESS ( ( volatile uint32_t * ) 0xe000ed9C )\r
-#define portMPU_REGION_ATTRIBUTE ( ( volatile uint32_t * ) 0xe000edA0 )\r
-#define portMPU_CTRL ( ( volatile uint32_t * ) 0xe000ed94 )\r
+#define portMPU_TYPE_REG ( * ( ( volatile uint32_t * ) 0xe000ed90 ) )\r
+#define portMPU_REGION_BASE_ADDRESS_REG ( * ( ( volatile uint32_t * ) 0xe000ed9C ) )\r
+#define portMPU_REGION_ATTRIBUTE_REG ( * ( ( volatile uint32_t * ) 0xe000edA0 ) )\r
+#define portMPU_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000ed94 ) )\r
#define portEXPECTED_MPU_TYPE_VALUE ( 8UL << 8UL ) /* 8 regions, unified. */\r
#define portMPU_ENABLE ( 0x01UL )\r
#define portMPU_BACKGROUND_ENABLE ( 1UL << 2UL )\r
#define portNVIC_SYSTICK_ENABLE ( 0x00000001UL )\r
#define portNVIC_PENDSV_PRI ( ( ( uint32_t ) configKERNEL_INTERRUPT_PRIORITY ) << 16UL )\r
#define portNVIC_SYSTICK_PRI ( ( ( uint32_t ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL )\r
-#define portNVIC_SVC_PRI ( ( ( uint32_t ) configKERNEL_INTERRUPT_PRIORITY ) << 24UL )\r
+#define portNVIC_SVC_PRI ( ( ( uint32_t ) configMAX_SYSCALL_INTERRUPT_PRIORITY - 1UL ) << 24UL )\r
\r
/* Constants required to set up the initial stack. */\r
#define portINITIAL_XPSR ( 0x01000000 )\r
#define portINITIAL_CONTROL_IF_UNPRIVILEGED ( 0x03 )\r
#define portINITIAL_CONTROL_IF_PRIVILEGED ( 0x02 )\r
\r
+/* Constants required to check the validity of an interrupt priority. */\r
+#define portFIRST_USER_INTERRUPT_NUMBER ( 16 )\r
+#define portNVIC_IP_REGISTERS_OFFSET_16 ( 0xE000E3F0 )\r
+#define portAIRCR_REG ( * ( ( volatile uint32_t * ) 0xE000ED0C ) )\r
+#define portMAX_8_BIT_VALUE ( ( uint8_t ) 0xff )\r
+#define portTOP_BIT_OF_BYTE ( ( uint8_t ) 0x80 )\r
+#define portMAX_PRIGROUP_BITS ( ( uint8_t ) 7 )\r
+#define portPRIORITY_GROUP_MASK ( 0x07UL << 8UL )\r
+#define portPRIGROUP_SHIFT ( 8UL )\r
+\r
/* Offsets in the stack to the parameters when inside the SVC handler. */\r
#define portOFFSET_TO_PC ( 6 )\r
\r
-/* Set the privilege level to user mode if xRunningPrivileged is false. */\r
-#define portRESET_PRIVILEGE( xRunningPrivileged ) if( xRunningPrivileged != pdTRUE ) __asm volatile ( " mrs r0, control \n orr r0, #1 \n msr control, r0" :::"r0" )\r
-\r
/* For strict compliance with the Cortex-M spec the task start address should\r
have bit-0 clear, as it is loaded into the PC on exit from an ISR. */\r
#define portSTART_ADDRESS_MASK ( ( StackType_t ) 0xfffffffeUL )\r
* if so raises the privilege level and returns false - otherwise does nothing\r
* other than return true.\r
*/\r
-static BaseType_t prvRaisePrivilege( void ) __attribute__(( naked ));\r
+BaseType_t xPortRaisePrivilege( void ) __attribute__(( naked ));\r
\r
/*\r
* Standard FreeRTOS exception handlers.\r
*/\r
static void prvSVCHandler( uint32_t *pulRegisters ) __attribute__(( noinline )) PRIVILEGED_FUNCTION;\r
\r
+/*\r
+ * Used by the portASSERT_IF_INTERRUPT_PRIORITY_INVALID() macro to ensure\r
+ * FreeRTOS API functions are not called from interrupts that have been assigned\r
+ * a priority above configMAX_SYSCALL_INTERRUPT_PRIORITY.\r
+ */\r
+#if ( configASSERT_DEFINED == 1 )\r
+ static uint8_t ucMaxSysCallPriority = 0;\r
+ static uint32_t ulMaxPRIGROUPValue = 0;\r
+ static const volatile uint8_t * const pcInterruptPriorityRegisters = ( const volatile uint8_t * const ) portNVIC_IP_REGISTERS_OFFSET_16;\r
+#endif /* configASSERT_DEFINED */\r
+\r
/*-----------------------------------------------------------*/\r
\r
/*\r
ucSVCNumber = ( ( uint8_t * ) pulParam[ portOFFSET_TO_PC ] )[ -2 ];\r
switch( ucSVCNumber )\r
{\r
- case portSVC_START_SCHEDULER : *(portNVIC_SYSPRI1) |= portNVIC_SVC_PRI;\r
+ case portSVC_START_SCHEDULER : portNVIC_SYSPRI1_REG |= portNVIC_SVC_PRI;\r
prvRestoreContextOfFirstTask();\r
break;\r
\r
- case portSVC_YIELD : *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET;\r
+ case portSVC_YIELD : portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;\r
/* Barriers are normally not required\r
but do ensure the code is completely\r
within the specified behaviour for the\r
http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */\r
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY ) );\r
\r
- /* Make PendSV and SysTick the same priority as the kernel. */\r
- *(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;\r
- *(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;\r
+ #if( configASSERT_DEFINED == 1 )\r
+ {\r
+ volatile uint32_t ulOriginalPriority;\r
+ volatile uint8_t * const pucFirstUserPriorityRegister = ( volatile uint8_t * const ) ( portNVIC_IP_REGISTERS_OFFSET_16 + portFIRST_USER_INTERRUPT_NUMBER );\r
+ volatile uint8_t ucMaxPriorityValue;\r
+\r
+ /* Determine the maximum priority from which ISR safe FreeRTOS API\r
+ functions can be called. ISR safe functions are those that end in\r
+ "FromISR". FreeRTOS maintains separate thread and ISR API functions to\r
+ ensure interrupt entry is as fast and simple as possible.\r
+\r
+ Save the interrupt priority value that is about to be clobbered. */\r
+ ulOriginalPriority = *pucFirstUserPriorityRegister;\r
+\r
+ /* Determine the number of priority bits available. First write to all\r
+ possible bits. */\r
+ *pucFirstUserPriorityRegister = portMAX_8_BIT_VALUE;\r
+\r
+ /* Read the value back to see how many bits stuck. */\r
+ ucMaxPriorityValue = *pucFirstUserPriorityRegister;\r
+\r
+ /* Use the same mask on the maximum system call priority. */\r
+ ucMaxSysCallPriority = configMAX_SYSCALL_INTERRUPT_PRIORITY & ucMaxPriorityValue;\r
+\r
+ /* Calculate the maximum acceptable priority group value for the number\r
+ of bits read back. */\r
+ ulMaxPRIGROUPValue = portMAX_PRIGROUP_BITS;\r
+ while( ( ucMaxPriorityValue & portTOP_BIT_OF_BYTE ) == portTOP_BIT_OF_BYTE )\r
+ {\r
+ ulMaxPRIGROUPValue--;\r
+ ucMaxPriorityValue <<= ( uint8_t ) 0x01;\r
+ }\r
+\r
+ /* Shift the priority group value back to its position within the AIRCR\r
+ register. */\r
+ ulMaxPRIGROUPValue <<= portPRIGROUP_SHIFT;\r
+ ulMaxPRIGROUPValue &= portPRIORITY_GROUP_MASK;\r
+\r
+ /* Restore the clobbered interrupt priority register to its original\r
+ value. */\r
+ *pucFirstUserPriorityRegister = ulOriginalPriority;\r
+ }\r
+ #endif /* conifgASSERT_DEFINED */\r
+\r
+ /* Make PendSV and SysTick the same priority as the kernel, and the SVC\r
+ handler higher priority so it can be used to exit a critical section (where\r
+ lower priorities are masked). */\r
+ portNVIC_SYSPRI2_REG |= portNVIC_PENDSV_PRI;\r
+ portNVIC_SYSPRI2_REG |= portNVIC_SYSTICK_PRI;\r
\r
/* Configure the regions in the MPU that are common to all tasks. */\r
prvSetupMPU();\r
\r
void vPortEnterCritical( void )\r
{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
\r
portDISABLE_INTERRUPTS();\r
uxCriticalNesting++;\r
\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
}\r
/*-----------------------------------------------------------*/\r
\r
void vPortExitCritical( void )\r
{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
+BaseType_t xRunningPrivileged = xPortRaisePrivilege();\r
\r
configASSERT( uxCriticalNesting );\r
uxCriticalNesting--;\r
{\r
portENABLE_INTERRUPTS();\r
}\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
+ vPortResetPrivilege( xRunningPrivileged );\r
}\r
/*-----------------------------------------------------------*/\r
\r
if( xTaskIncrementTick() != pdFALSE )\r
{\r
/* Pend a context switch. */\r
- *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET;\r
+ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT;\r
}\r
}\r
portCLEAR_INTERRUPT_MASK_FROM_ISR( ulDummy );\r
static void prvSetupTimerInterrupt( void )\r
{\r
/* Configure SysTick to interrupt at the requested rate. */\r
- *(portNVIC_SYSTICK_LOAD) = ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL;\r
- *(portNVIC_SYSTICK_CTRL) = portNVIC_SYSTICK_CLK | portNVIC_SYSTICK_INT | portNVIC_SYSTICK_ENABLE;\r
+ portNVIC_SYSTICK_LOAD_REG = ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL;\r
+ portNVIC_SYSTICK_CTRL_REG = portNVIC_SYSTICK_CLK | portNVIC_SYSTICK_INT | portNVIC_SYSTICK_ENABLE;\r
}\r
/*-----------------------------------------------------------*/\r
\r
extern uint32_t __privileged_data_end__[];\r
\r
/* Check the expected MPU is present. */\r
- if( *portMPU_TYPE == portEXPECTED_MPU_TYPE_VALUE )\r
+ if( portMPU_TYPE_REG == portEXPECTED_MPU_TYPE_VALUE )\r
{\r
/* First setup the entire flash for unprivileged read only access. */\r
- *portMPU_REGION_BASE_ADDRESS = ( ( uint32_t ) __FLASH_segment_start__ ) | /* Base address. */\r
- ( portMPU_REGION_VALID ) |\r
- ( portUNPRIVILEGED_FLASH_REGION );\r
+ portMPU_REGION_BASE_ADDRESS_REG = ( ( uint32_t ) __FLASH_segment_start__ ) | /* Base address. */\r
+ ( portMPU_REGION_VALID ) |\r
+ ( portUNPRIVILEGED_FLASH_REGION );\r
\r
- *portMPU_REGION_ATTRIBUTE = ( portMPU_REGION_READ_ONLY ) |\r
+ portMPU_REGION_ATTRIBUTE_REG = ( portMPU_REGION_READ_ONLY ) |\r
( portMPU_REGION_CACHEABLE_BUFFERABLE ) |\r
( prvGetMPURegionSizeSetting( ( uint32_t ) __FLASH_segment_end__ - ( uint32_t ) __FLASH_segment_start__ ) ) |\r
( portMPU_REGION_ENABLE );\r
/* Setup the first 16K for privileged only access (even though less\r
than 10K is actually being used). This is where the kernel code is\r
placed. */\r
- *portMPU_REGION_BASE_ADDRESS = ( ( uint32_t ) __FLASH_segment_start__ ) | /* Base address. */\r
- ( portMPU_REGION_VALID ) |\r
- ( portPRIVILEGED_FLASH_REGION );\r
+ portMPU_REGION_BASE_ADDRESS_REG = ( ( uint32_t ) __FLASH_segment_start__ ) | /* Base address. */\r
+ ( portMPU_REGION_VALID ) |\r
+ ( portPRIVILEGED_FLASH_REGION );\r
\r
- *portMPU_REGION_ATTRIBUTE = ( portMPU_REGION_PRIVILEGED_READ_ONLY ) |\r
+ portMPU_REGION_ATTRIBUTE_REG = ( portMPU_REGION_PRIVILEGED_READ_ONLY ) |\r
( portMPU_REGION_CACHEABLE_BUFFERABLE ) |\r
( prvGetMPURegionSizeSetting( ( uint32_t ) __privileged_functions_end__ - ( uint32_t ) __FLASH_segment_start__ ) ) |\r
( portMPU_REGION_ENABLE );\r
\r
/* Setup the privileged data RAM region. This is where the kernel data\r
is placed. */\r
- *portMPU_REGION_BASE_ADDRESS = ( ( uint32_t ) __privileged_data_start__ ) | /* Base address. */\r
- ( portMPU_REGION_VALID ) |\r
- ( portPRIVILEGED_RAM_REGION );\r
+ portMPU_REGION_BASE_ADDRESS_REG = ( ( uint32_t ) __privileged_data_start__ ) | /* Base address. */\r
+ ( portMPU_REGION_VALID ) |\r
+ ( portPRIVILEGED_RAM_REGION );\r
\r
- *portMPU_REGION_ATTRIBUTE = ( portMPU_REGION_PRIVILEGED_READ_WRITE ) |\r
+ portMPU_REGION_ATTRIBUTE_REG = ( portMPU_REGION_PRIVILEGED_READ_WRITE ) |\r
( portMPU_REGION_CACHEABLE_BUFFERABLE ) |\r
prvGetMPURegionSizeSetting( ( uint32_t ) __privileged_data_end__ - ( uint32_t ) __privileged_data_start__ ) |\r
( portMPU_REGION_ENABLE );\r
\r
/* By default allow everything to access the general peripherals. The\r
system peripherals and registers are protected. */\r
- *portMPU_REGION_BASE_ADDRESS = ( portPERIPHERALS_START_ADDRESS ) |\r
- ( portMPU_REGION_VALID ) |\r
- ( portGENERAL_PERIPHERALS_REGION );\r
+ portMPU_REGION_BASE_ADDRESS_REG = ( portPERIPHERALS_START_ADDRESS ) |\r
+ ( portMPU_REGION_VALID ) |\r
+ ( portGENERAL_PERIPHERALS_REGION );\r
\r
- *portMPU_REGION_ATTRIBUTE = ( portMPU_REGION_READ_WRITE | portMPU_REGION_EXECUTE_NEVER ) |\r
+ portMPU_REGION_ATTRIBUTE_REG = ( portMPU_REGION_READ_WRITE | portMPU_REGION_EXECUTE_NEVER ) |\r
( prvGetMPURegionSizeSetting( portPERIPHERALS_END_ADDRESS - portPERIPHERALS_START_ADDRESS ) ) |\r
( portMPU_REGION_ENABLE );\r
\r
/* Enable the memory fault exception. */\r
- *portNVIC_SYS_CTRL_STATE |= portNVIC_MEM_FAULT_ENABLE;\r
+ portNVIC_SYS_CTRL_STATE_REG |= portNVIC_MEM_FAULT_ENABLE;\r
\r
/* Enable the MPU with the background region configured. */\r
- *portMPU_CTRL |= ( portMPU_ENABLE | portMPU_BACKGROUND_ENABLE );\r
+ portMPU_CTRL_REG |= ( portMPU_ENABLE | portMPU_BACKGROUND_ENABLE );\r
}\r
}\r
/*-----------------------------------------------------------*/\r
}\r
/*-----------------------------------------------------------*/\r
\r
-static BaseType_t prvRaisePrivilege( void )\r
+BaseType_t xPortRaisePrivilege( void )\r
{\r
__asm volatile\r
(\r
}\r
/*-----------------------------------------------------------*/\r
\r
-BaseType_t MPU_xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask )\r
-{\r
-BaseType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskCreateRestricted( pxTaskDefinition, pxCreatedTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
- BaseType_t MPU_xTaskCreate( TaskFunction_t pvTaskCode, const char * const pcName, uint16_t usStackDepth, void *pvParameters, UBaseType_t uxPriority, TaskHandle_t *pxCreatedTask )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskCreate( pvTaskCode, pcName, usStackDepth, pvParameters, uxPriority, pxCreatedTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
- TaskHandle_t MPU_xTaskCreateStatic( TaskFunction_t pxTaskCode, const char * const pcName, const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer )\r
- {\r
- TaskHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskCreateStatic( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, puxStackBuffer, pxTaskBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif /* configSUPPORT_STATIC_ALLOCATION */\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const xRegions )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskAllocateMPURegions( xTask, xRegions );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskDelete == 1 )\r
- void MPU_vTaskDelete( TaskHandle_t pxTaskToDelete )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskDelete( pxTaskToDelete );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskDelayUntil == 1 )\r
- void MPU_vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, TickType_t xTimeIncrement )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskDelayUntil( pxPreviousWakeTime, xTimeIncrement );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_xTaskAbortDelay == 1 )\r
- BaseType_t MPU_xTaskAbortDelay( TaskHandle_t xTask )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskAbortDelay( xTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskDelay == 1 )\r
- void MPU_vTaskDelay( TickType_t xTicksToDelay )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskDelay( xTicksToDelay );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_uxTaskPriorityGet == 1 )\r
- UBaseType_t MPU_uxTaskPriorityGet( TaskHandle_t pxTask )\r
- {\r
- UBaseType_t uxReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- uxReturn = uxTaskPriorityGet( pxTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskPrioritySet == 1 )\r
- void MPU_vTaskPrioritySet( TaskHandle_t pxTask, UBaseType_t uxNewPriority )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskPrioritySet( pxTask, uxNewPriority );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_eTaskGetState == 1 )\r
- eTaskState MPU_eTaskGetState( TaskHandle_t pxTask )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
- eTaskState eReturn;\r
-\r
- eReturn = eTaskGetState( pxTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return eReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TRACE_FACILITY == 1 )\r
- void MPU_vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskGetInfo( xTask, pxTaskStatus, xGetFreeStackSpace, eState );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )\r
- TaskHandle_t MPU_xTaskGetIdleTaskHandle( void )\r
- {\r
- TaskHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetIdleTaskHandle();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskSuspend == 1 )\r
- void MPU_vTaskSuspend( TaskHandle_t pxTaskToSuspend )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskSuspend( pxTaskToSuspend );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_vTaskSuspend == 1 )\r
- void MPU_vTaskResume( TaskHandle_t pxTaskToResume )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskResume( pxTaskToResume );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vTaskSuspendAll( void )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskSuspendAll();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xTaskResumeAll( void )\r
-{\r
-BaseType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskResumeAll();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-TickType_t MPU_xTaskGetTickCount( void )\r
-{\r
-TickType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetTickCount();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-UBaseType_t MPU_uxTaskGetNumberOfTasks( void )\r
-{\r
-UBaseType_t uxReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- uxReturn = uxTaskGetNumberOfTasks();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-char * MPU_pcTaskGetName( TaskHandle_t xTaskToQuery )\r
-{\r
-char *pcReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- pcReturn = pcTaskGetName( xTaskToQuery );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return pcReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_xTaskGetHandle == 1 )\r
- TaskHandle_t MPU_xTaskGetHandle( const char *pcNameToQuery )\r
- {\r
- TaskHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetHandle( pcNameToQuery );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_TRACE_FACILITY == 1 )\r
- void MPU_vTaskList( char *pcWriteBuffer )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskList( pcWriteBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configGENERATE_RUN_TIME_STATS == 1 )\r
- void MPU_vTaskGetRunTimeStats( char *pcWriteBuffer )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskGetRunTimeStats( pcWriteBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
- void MPU_vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxTagValue )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskSetApplicationTaskTag( xTask, pxTagValue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
- TaskHookFunction_t MPU_xTaskGetApplicationTaskTag( TaskHandle_t xTask )\r
- {\r
- TaskHookFunction_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetApplicationTaskTag( xTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )\r
- void MPU_vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskSetThreadLocalStoragePointer( xTaskToSet, xIndex, pvValue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )\r
- void *MPU_pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex )\r
- {\r
- void *pvReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- pvReturn = pvTaskGetThreadLocalStoragePointer( xTaskToQuery, xIndex );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return pvReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_APPLICATION_TASK_TAG == 1 )\r
- BaseType_t MPU_xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskCallApplicationTaskHook( xTask, pvParameter );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_TRACE_FACILITY == 1 )\r
- UBaseType_t MPU_uxTaskGetSystemState( TaskStatus_t *pxTaskStatusArray, UBaseType_t uxArraySize, uint32_t *pulTotalRunTime )\r
- {\r
- UBaseType_t uxReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- uxReturn = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, pulTotalRunTime );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 )\r
- UBaseType_t MPU_uxTaskGetStackHighWaterMark( TaskHandle_t xTask )\r
- {\r
- UBaseType_t uxReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- uxReturn = uxTaskGetStackHighWaterMark( xTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_xTaskGetCurrentTaskHandle == 1 )\r
- TaskHandle_t MPU_xTaskGetCurrentTaskHandle( void )\r
- {\r
- TaskHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetCurrentTaskHandle();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( INCLUDE_xTaskGetSchedulerState == 1 )\r
- BaseType_t MPU_xTaskGetSchedulerState( void )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGetSchedulerState();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTaskSetTimeOutState( pxTimeOut );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait )\r
-{\r
-BaseType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskCheckForTimeOut( pxTimeOut, pxTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
- BaseType_t MPU_xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskGenericNotify( xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
- BaseType_t MPU_xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskNotifyWait( ulBitsToClearOnEntry, ulBitsToClearOnExit, pulNotificationValue, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
- uint32_t MPU_ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait )\r
- {\r
- uint32_t ulReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- ulReturn = ulTaskNotifyTake( xClearCountOnExit, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return ulReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TASK_NOTIFICATIONS == 1 )\r
- BaseType_t MPU_xTaskNotifyStateClear( TaskHandle_t xTask )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTaskNotifyStateClear( xTask );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
- \r
-#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
- QueueHandle_t MPU_xQueueGenericCreate( UBaseType_t uxQueueLength, UBaseType_t uxItemSize, uint8_t ucQueueType )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueGenericCreate( uxQueueLength, uxItemSize, ucQueueType );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
- QueueHandle_t MPU_xQueueGenericCreateStatic( const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize, uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue, const uint8_t ucQueueType )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueGenericCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxStaticQueue, ucQueueType );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xQueueGenericReset( QueueHandle_t pxQueue, BaseType_t xNewQueue )\r
-{\r
-BaseType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueGenericReset( pxQueue, xNewQueue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xQueueGenericSend( QueueHandle_t xQueue, const void * const pvItemToQueue, TickType_t xTicksToWait, BaseType_t xCopyPosition )\r
-{\r
-BaseType_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueGenericSend( xQueue, pvItemToQueue, xTicksToWait, xCopyPosition );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-UBaseType_t MPU_uxQueueMessagesWaiting( const QueueHandle_t pxQueue )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-UBaseType_t uxReturn;\r
-\r
- uxReturn = uxQueueMessagesWaiting( pxQueue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-UBaseType_t MPU_uxQueueSpacesAvailable( const QueueHandle_t xQueue )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-UBaseType_t uxReturn;\r
-\r
- uxReturn = uxQueueSpacesAvailable( xQueue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return uxReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xQueueGenericReceive( QueueHandle_t pxQueue, void * const pvBuffer, TickType_t xTicksToWait, BaseType_t xJustPeeking )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-BaseType_t xReturn;\r
-\r
- xReturn = xQueueGenericReceive( pxQueue, pvBuffer, xTicksToWait, xJustPeeking );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-BaseType_t MPU_xQueuePeekFromISR( QueueHandle_t pxQueue, void * const pvBuffer )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-BaseType_t xReturn;\r
-\r
- xReturn = xQueuePeekFromISR( pxQueue, pvBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void* MPU_xQueueGetMutexHolder( QueueHandle_t xSemaphore )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-void * xReturn;\r
-\r
- xReturn = ( void * ) xQueueGetMutexHolder( xSemaphore );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
- QueueHandle_t MPU_xQueueCreateMutex( const uint8_t ucQueueType )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueCreateMutex( ucQueueType );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configUSE_MUTEXES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
- QueueHandle_t MPU_xQueueCreateMutexStatic( const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueCreateMutexStatic( ucQueueType, pxStaticQueue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )\r
- QueueHandle_t MPU_xQueueCreateCountingSemaphore( UBaseType_t uxCountValue, UBaseType_t uxInitialCount )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueCreateCountingSemaphore( uxCountValue, uxInitialCount );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configUSE_COUNTING_SEMAPHORES == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )\r
-\r
- QueueHandle_t MPU_xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount, StaticQueue_t *pxStaticQueue )\r
- {\r
- QueueHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueCreateCountingSemaphoreStatic( uxMaxCount, uxInitialCount, pxStaticQueue );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_MUTEXES == 1 )\r
- BaseType_t MPU_xQueueTakeMutexRecursive( QueueHandle_t xMutex, TickType_t xBlockTime )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueTakeMutexRecursive( xMutex, xBlockTime );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_MUTEXES == 1 )\r
- BaseType_t MPU_xQueueGiveMutexRecursive( QueueHandle_t xMutex )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueGiveMutexRecursive( xMutex );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_QUEUE_SETS == 1 )\r
- QueueSetHandle_t MPU_xQueueCreateSet( UBaseType_t uxEventQueueLength )\r
- {\r
- QueueSetHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueCreateSet( uxEventQueueLength );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_QUEUE_SETS == 1 )\r
- QueueSetMemberHandle_t MPU_xQueueSelectFromSet( QueueSetHandle_t xQueueSet, TickType_t xBlockTimeTicks )\r
- {\r
- QueueSetMemberHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueSelectFromSet( xQueueSet, xBlockTimeTicks );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_QUEUE_SETS == 1 )\r
- BaseType_t MPU_xQueueAddToSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueAddToSet( xQueueOrSemaphore, xQueueSet );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if ( configUSE_QUEUE_SETS == 1 )\r
- BaseType_t MPU_xQueueRemoveFromSet( QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xQueueRemoveFromSet( xQueueOrSemaphore, xQueueSet );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if configQUEUE_REGISTRY_SIZE > 0\r
- void MPU_vQueueAddToRegistry( QueueHandle_t xQueue, const char *pcName )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vQueueAddToRegistry( xQueue, pcName );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if configQUEUE_REGISTRY_SIZE > 0\r
- void MPU_vQueueUnregisterQueue( QueueHandle_t xQueue )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vQueueUnregisterQueue( xQueue );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if configQUEUE_REGISTRY_SIZE > 0\r
- const char *MPU_pcQueueGetName( QueueHandle_t xQueue )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
- const char *pcReturn;\r
-\r
- pcReturn = pcQueueGetName( xQueue );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- return pcReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vQueueDelete( QueueHandle_t xQueue )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vQueueDelete( xQueue );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
-\r
- void *MPU_pvPortMalloc( size_t xSize )\r
- {\r
- void *pvReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- pvReturn = pvPortMalloc( xSize );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return pvReturn;\r
- }\r
-\r
-#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
+#if( configASSERT_DEFINED == 1 )\r
\r
- void MPU_vPortFree( void *pv )\r
+ void vPortValidateInterruptPriority( void )\r
{\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vPortFree( pv );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-\r
-#endif /* configSUPPORT_DYNAMIC_ALLOCATION */\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vPortInitialiseBlocks( void )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vPortInitialiseBlocks();\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-size_t MPU_xPortGetFreeHeapSize( void )\r
-{\r
-size_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xPortGetFreeHeapSize();\r
+ uint32_t ulCurrentInterrupt;\r
+ uint8_t ucCurrentPriority;\r
\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
+ /* Obtain the number of the currently executing interrupt. */\r
+ __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) );\r
\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configUSE_TIMERS == 1 ) )\r
- TimerHandle_t MPU_xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction )\r
- {\r
- TimerHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerCreate( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( configSUPPORT_STATIC_ALLOCATION == 1 ) && ( configUSE_TIMERS == 1 ) )\r
- TimerHandle_t MPU_xTimerCreateStatic( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction, StaticTimer_t *pxTimerBuffer )\r
- {\r
- TimerHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerCreateStatic( pcTimerName, xTimerPeriodInTicks, uxAutoReload, pvTimerID, pxCallbackFunction, pxTimerBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- void *MPU_pvTimerGetTimerID( const TimerHandle_t xTimer )\r
- {\r
- void * pvReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- pvReturn = pvTimerGetTimerID( xTimer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return pvReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- void MPU_vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID )\r
- {\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vTimerSetTimerID( xTimer, pvNewID );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- BaseType_t MPU_xTimerIsTimerActive( TimerHandle_t xTimer )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerIsTimerActive( xTimer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- TaskHandle_t MPU_xTimerGetTimerDaemonTaskHandle( void )\r
- {\r
- TaskHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerGetTimerDaemonTaskHandle();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 1 ) )\r
- BaseType_t MPU_xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerPendFunctionCall( xFunctionToPend, pvParameter1, ulParameter2, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- const char * MPU_pcTimerGetName( TimerHandle_t xTimer )\r
- {\r
- const char * pcReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- pcReturn = pcTimerGetName( xTimer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return pcReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- TickType_t MPU_xTimerGetPeriod( TimerHandle_t xTimer )\r
- {\r
- TickType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerGetPeriod( xTimer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- TickType_t MPU_xTimerGetExpiryTime( TimerHandle_t xTimer )\r
- {\r
- TickType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerGetExpiryTime( xTimer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configUSE_TIMERS == 1 )\r
- BaseType_t MPU_xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait )\r
- {\r
- BaseType_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xTimerGenericCommand( xTimer, xCommandID, xOptionalValue, pxHigherPriorityTaskWoken, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )\r
- EventGroupHandle_t MPU_xEventGroupCreate( void )\r
- {\r
- EventGroupHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xEventGroupCreate();\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
- }\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-#if( configSUPPORT_STATIC_ALLOCATION == 1 )\r
- EventGroupHandle_t MPU_xEventGroupCreateStatic( StaticEventGroup_t *pxEventGroupBuffer )\r
- {\r
- EventGroupHandle_t xReturn;\r
- BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
+ /* Is the interrupt number a user defined interrupt? */\r
+ if( ulCurrentInterrupt >= portFIRST_USER_INTERRUPT_NUMBER )\r
+ {\r
+ /* Look up the interrupt's priority. */\r
+ ucCurrentPriority = pcInterruptPriorityRegisters[ ulCurrentInterrupt ];\r
+\r
+ /* The following assertion will fail if a service routine (ISR) for\r
+ an interrupt that has been assigned a priority above\r
+ configMAX_SYSCALL_INTERRUPT_PRIORITY calls an ISR safe FreeRTOS API\r
+ function. ISR safe FreeRTOS API functions must *only* be called\r
+ from interrupts that have been assigned a priority at or below\r
+ configMAX_SYSCALL_INTERRUPT_PRIORITY.\r
+\r
+ Numerically low interrupt priority numbers represent logically high\r
+ interrupt priorities, therefore the priority of the interrupt must\r
+ be set to a value equal to or numerically *higher* than\r
+ configMAX_SYSCALL_INTERRUPT_PRIORITY.\r
+\r
+ Interrupts that use the FreeRTOS API must not be left at their\r
+ default priority of zero as that is the highest possible priority,\r
+ which is guaranteed to be above configMAX_SYSCALL_INTERRUPT_PRIORITY,\r
+ and therefore also guaranteed to be invalid.\r
+\r
+ FreeRTOS maintains separate thread and ISR API functions to ensure\r
+ interrupt entry is as fast and simple as possible.\r
+\r
+ The following links provide detailed information:\r
+ http://www.freertos.org/RTOS-Cortex-M3-M4.html\r
+ http://www.freertos.org/FAQHelp.html */\r
+ configASSERT( ucCurrentPriority >= ucMaxSysCallPriority );\r
+ }\r
\r
- xReturn = xEventGroupCreateStatic( pxEventGroupBuffer );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
+ /* Priority grouping: The interrupt controller (NVIC) allows the bits\r
+ that define each interrupt's priority to be split between bits that\r
+ define the interrupt's pre-emption priority bits and bits that define\r
+ the interrupt's sub-priority. For simplicity all bits must be defined\r
+ to be pre-emption priority bits. The following assertion will fail if\r
+ this is not the case (if some bits represent a sub-priority).\r
\r
- return xReturn;\r
+ If the application only uses CMSIS libraries for interrupt\r
+ configuration then the correct setting can be achieved on all Cortex-M\r
+ devices by calling NVIC_SetPriorityGrouping( 0 ); before starting the\r
+ scheduler. Note however that some vendor specific peripheral libraries\r
+ assume a non-zero priority group setting, in which cases using a value\r
+ of zero will result in unpredicable behaviour. */\r
+ configASSERT( ( portAIRCR_REG & portPRIORITY_GROUP_MASK ) <= ulMaxPRIGROUPValue );\r
}\r
-#endif\r
-/*-----------------------------------------------------------*/\r
-\r
-EventBits_t MPU_xEventGroupWaitBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToWaitFor, const BaseType_t xClearOnExit, const BaseType_t xWaitForAllBits, TickType_t xTicksToWait )\r
-{\r
-EventBits_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xEventGroupWaitBits( xEventGroup, uxBitsToWaitFor, xClearOnExit, xWaitForAllBits, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-EventBits_t MPU_xEventGroupClearBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToClear )\r
-{\r
-EventBits_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xEventGroupClearBits( xEventGroup, uxBitsToClear );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-EventBits_t MPU_xEventGroupSetBits( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet )\r
-{\r
-EventBits_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xEventGroupSetBits( xEventGroup, uxBitsToSet );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
-}\r
+#endif /* configASSERT_DEFINED */\r
/*-----------------------------------------------------------*/\r
\r
-EventBits_t MPU_xEventGroupSync( EventGroupHandle_t xEventGroup, const EventBits_t uxBitsToSet, const EventBits_t uxBitsToWaitFor, TickType_t xTicksToWait )\r
-{\r
-EventBits_t xReturn;\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- xReturn = xEventGroupSync( xEventGroup, uxBitsToSet, uxBitsToWaitFor, xTicksToWait );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-\r
- return xReturn;\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-void MPU_vEventGroupDelete( EventGroupHandle_t xEventGroup )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- vEventGroupDelete( xEventGroup );\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-/*-----------------------------------------------------------*/\r
-\r
-\r
-\r
-\r
-\r
-/* Functions that the application writer wants to execute in privileged mode\r
-can be defined in application_defined_privileged_functions.h. The functions\r
-must take the same format as those above whereby the privilege state on exit\r
-equals the privilege state on entry. For example:\r
-\r
-void MPU_FunctionName( [parameters ] )\r
-{\r
-BaseType_t xRunningPrivileged = prvRaisePrivilege();\r
-\r
- FunctionName( [parameters ] );\r
-\r
- portRESET_PRIVILEGE( xRunningPrivileged );\r
-}\r
-*/\r
-\r
-#if configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS == 1\r
- #include "application_defined_privileged_functions.h"\r
-#endif\r
\r
/* Scheduler utilities. */\r
\r
#define portYIELD() __asm volatile ( " SVC %0 \n" :: "i" (portSVC_YIELD) )\r
-#define portYIELD_WITHIN_API() *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET\r
+#define portYIELD_WITHIN_API() \\r
+{ \\r
+ /* Set a PendSV to request a context switch. */ \\r
+ portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET_BIT; \\r
+ \\r
+ /* Barriers are normally not required but do ensure the code is completely \\r
+ within the specified behaviour for the architecture. */ \\r
+ __asm volatile( "dsb" ); \\r
+ __asm volatile( "isb" ); \\r
+}\r
\r
-#define portNVIC_INT_CTRL ( ( volatile uint32_t *) 0xe000ed04 )\r
-#define portNVIC_PENDSVSET 0x10000000\r
-#define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired ) *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET\r
+#define portNVIC_INT_CTRL_REG ( * ( ( volatile uint32_t * ) 0xe000ed04 ) )\r
+#define portNVIC_PENDSVSET_BIT ( 1UL << 28UL )\r
+#define portEND_SWITCHING_ISR( xSwitchRequired ) if( xSwitchRequired ) portNVIC_INT_CTRL_REG = portNVIC_PENDSVSET\r
#define portYIELD_FROM_ISR( x ) portEND_SWITCHING_ISR( x )\r
/*-----------------------------------------------------------*/\r
\r
-\r
/* Critical section management. */\r
-\r
-/*\r
- * Set basepri to portMAX_SYSCALL_INTERRUPT_PRIORITY without effecting other\r
- * registers. r0 is clobbered.\r
- */\r
-#define portSET_INTERRUPT_MASK() \\r
- __asm volatile \\r
- ( \\r
- " mov r0, %0 \n" \\r
- " msr basepri, r0 \n" \\r
- ::"i"(configMAX_SYSCALL_INTERRUPT_PRIORITY):"r0" \\r
- )\r
-\r
-/*\r
- * Set basepri back to 0 without effective other registers.\r
- * r0 is clobbered. FAQ: Setting BASEPRI to 0 is not a bug. Please see\r
- * http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html before disagreeing.\r
- */\r
-#define portCLEAR_INTERRUPT_MASK() \\r
- __asm volatile \\r
- ( \\r
- " mov r0, #0 \n" \\r
- " msr basepri, r0 \n" \\r
- :::"r0" \\r
- )\r
-\r
-/* FAQ: Setting BASEPRI to 0 is not a bug. Please see\r
-http://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html before disagreeing. */\r
-#define portSET_INTERRUPT_MASK_FROM_ISR() 0;portSET_INTERRUPT_MASK()\r
-#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) portCLEAR_INTERRUPT_MASK();(void)x\r
-\r
extern void vPortEnterCritical( void );\r
extern void vPortExitCritical( void );\r
+#define portSET_INTERRUPT_MASK_FROM_ISR() ulPortRaiseBASEPRI()\r
+#define portCLEAR_INTERRUPT_MASK_FROM_ISR(x) vPortSetBASEPRI(x)\r
+#define portDISABLE_INTERRUPTS() vPortRaiseBASEPRI()\r
+#define portENABLE_INTERRUPTS() vPortSetBASEPRI(0)\r
+#define portENTER_CRITICAL() vPortEnterCritical()\r
+#define portEXIT_CRITICAL() vPortExitCritical()\r
\r
-#define portDISABLE_INTERRUPTS() portSET_INTERRUPT_MASK()\r
-#define portENABLE_INTERRUPTS() portCLEAR_INTERRUPT_MASK()\r
-#define portENTER_CRITICAL() vPortEnterCritical()\r
-#define portEXIT_CRITICAL() vPortExitCritical()\r
/*-----------------------------------------------------------*/\r
\r
-/* Task function macros as described on the FreeRTOS.org WEB site. */\r
+/* Task function macros as described on the FreeRTOS.org WEB site. These are\r
+not necessary for to use this port. They are defined so the common demo files\r
+(which build with all the ports) will build. */\r
#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
+/*-----------------------------------------------------------*/\r
+\r
+/* Architecture specific optimisations. */\r
+#ifndef configUSE_PORT_OPTIMISED_TASK_SELECTION\r
+ #define configUSE_PORT_OPTIMISED_TASK_SELECTION 1\r
+#endif\r
+\r
+#if configUSE_PORT_OPTIMISED_TASK_SELECTION == 1\r
\r
+ /* Generic helper function. */\r
+ __attribute__( ( always_inline ) ) static inline uint8_t ucPortCountLeadingZeros( uint32_t ulBitmap )\r
+ {\r
+ uint8_t ucReturn;\r
+\r
+ __asm volatile ( "clz %0, %1" : "=r" ( ucReturn ) : "r" ( ulBitmap ) );\r
+ return ucReturn;\r
+ }\r
+\r
+ /* Check the configuration. */\r
+ #if( configMAX_PRIORITIES > 32 )\r
+ #error configUSE_PORT_OPTIMISED_TASK_SELECTION can only be set to 1 when configMAX_PRIORITIES is less than or equal to 32. It is very rare that a system requires more than 10 to 15 difference priorities as tasks that share a priority will time slice.\r
+ #endif\r
+\r
+ /* Store/clear the ready priorities in a bit map. */\r
+ #define portRECORD_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) |= ( 1UL << ( uxPriority ) )\r
+ #define portRESET_READY_PRIORITY( uxPriority, uxReadyPriorities ) ( uxReadyPriorities ) &= ~( 1UL << ( uxPriority ) )\r
+\r
+ /*-----------------------------------------------------------*/\r
+\r
+ #define portGET_HIGHEST_PRIORITY( uxTopPriority, uxReadyPriorities ) uxTopPriority = ( 31UL - ( uint32_t ) ucPortCountLeadingZeros( ( uxReadyPriorities ) ) )\r
+\r
+#endif /* configUSE_PORT_OPTIMISED_TASK_SELECTION */\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+#ifdef configASSERT\r
+ void vPortValidateInterruptPriority( void );\r
+ #define portASSERT_IF_INTERRUPT_PRIORITY_INVALID() vPortValidateInterruptPriority()\r
+#endif\r
+\r
+/* portNOP() is not required by this port. */\r
#define portNOP()\r
\r
+#define portINLINE __inline\r
+\r
+#ifndef portFORCE_INLINE\r
+ #define portFORCE_INLINE inline __attribute__(( always_inline))\r
+#endif\r
+\r
+/* Set the privilege level to user mode if xRunningPrivileged is false. */\r
+portFORCE_INLINE static void vPortResetPrivilege( BaseType_t xRunningPrivileged )\r
+{\r
+ if( xRunningPrivileged != pdTRUE ) \r
+ {\r
+ __asm volatile ( " mrs r0, control \n" \\r
+ " orr r0, #1 \n" \\r
+ " msr control, r0 \n" \\r
+ :::"r0" );\r
+ }\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+portFORCE_INLINE static BaseType_t xPortIsInsideInterrupt( void )\r
+{\r
+uint32_t ulCurrentInterrupt;\r
+BaseType_t xReturn;\r
+\r
+ /* Obtain the number of the currently executing interrupt. */\r
+ __asm volatile( "mrs %0, ipsr" : "=r"( ulCurrentInterrupt ) );\r
+\r
+ if( ulCurrentInterrupt == 0 )\r
+ {\r
+ xReturn = pdFALSE;\r
+ }\r
+ else\r
+ {\r
+ xReturn = pdTRUE;\r
+ }\r
+\r
+ return xReturn;\r
+}\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+portFORCE_INLINE static void vPortRaiseBASEPRI( void )\r
+{\r
+uint32_t ulNewBASEPRI;\r
+\r
+ __asm volatile\r
+ (\r
+ " mov %0, %1 \n" \\r
+ " msr basepri, %0 \n" \\r
+ " isb \n" \\r
+ " dsb \n" \\r
+ :"=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY )\r
+ );\r
+}\r
+\r
+/*-----------------------------------------------------------*/\r
+\r
+portFORCE_INLINE static uint32_t ulPortRaiseBASEPRI( void )\r
+{\r
+uint32_t ulOriginalBASEPRI, ulNewBASEPRI;\r
+\r
+ __asm volatile\r
+ (\r
+ " mrs %0, basepri \n" \\r
+ " mov %1, %2 \n" \\r
+ " msr basepri, %1 \n" \\r
+ " isb \n" \\r
+ " dsb \n" \\r
+ :"=r" (ulOriginalBASEPRI), "=r" (ulNewBASEPRI) : "i" ( configMAX_SYSCALL_INTERRUPT_PRIORITY )\r
+ );\r
+\r
+ /* This return will not be reached but is necessary to prevent compiler\r
+ warnings. */\r
+ return ulOriginalBASEPRI;\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
+portFORCE_INLINE static void vPortSetBASEPRI( uint32_t ulNewMaskValue )\r
+{\r
+ __asm volatile\r
+ (\r
+ " msr basepri, %0 " :: "r" ( ulNewMaskValue )\r
+ );\r
+}\r
+/*-----------------------------------------------------------*/\r
+\r
\r
#ifdef __cplusplus\r
}\r