├── Application ├── task.c └── task.h ├── Hardware ├── delay.c ├── delay.h ├── led.c ├── led.h ├── usart.c └── usart.h ├── JLinkLog.txt ├── JLinkSettings.ini ├── Libraries ├── CMSIS │ ├── core_cm3.c │ ├── core_cm3.h │ ├── stm32f10x.h │ ├── system_stm32f10x.c │ └── system_stm32f10x.h ├── StdPeriph_Driver │ ├── misc.c │ ├── misc.h │ ├── stm32f10x_adc.c │ ├── stm32f10x_adc.h │ ├── stm32f10x_bkp.c │ ├── stm32f10x_bkp.h │ ├── stm32f10x_can.c │ ├── stm32f10x_can.h │ ├── stm32f10x_cec.c │ ├── stm32f10x_cec.h │ ├── stm32f10x_crc.c │ ├── stm32f10x_crc.h │ ├── stm32f10x_dac.c │ ├── stm32f10x_dac.h │ ├── stm32f10x_dbgmcu.c │ ├── stm32f10x_dbgmcu.h │ ├── stm32f10x_dma.c │ ├── stm32f10x_dma.h │ ├── stm32f10x_exti.c │ ├── stm32f10x_exti.h │ ├── stm32f10x_flash.c │ ├── stm32f10x_flash.h │ ├── stm32f10x_fsmc.c │ ├── stm32f10x_fsmc.h │ ├── stm32f10x_gpio.c │ ├── stm32f10x_gpio.h │ ├── stm32f10x_i2c.c │ ├── stm32f10x_i2c.h │ ├── stm32f10x_iwdg.c │ ├── stm32f10x_iwdg.h │ ├── stm32f10x_pwr.c │ ├── stm32f10x_pwr.h │ ├── stm32f10x_rcc.c │ ├── stm32f10x_rcc.h │ ├── stm32f10x_rtc.c │ ├── stm32f10x_rtc.h │ ├── stm32f10x_sdio.c │ ├── stm32f10x_sdio.h │ ├── stm32f10x_spi.c │ ├── stm32f10x_spi.h │ ├── stm32f10x_tim.c │ ├── stm32f10x_tim.h │ ├── stm32f10x_usart.c │ ├── stm32f10x_usart.h │ ├── stm32f10x_wwdg.c │ └── stm32f10x_wwdg.h └── startup │ └── startup_stm32f10x_hd.s ├── Main ├── app_cfg.h ├── bsp.c ├── bsp.h ├── console.c ├── console.h ├── includes.h ├── main.c ├── stm32f10x_conf.h ├── stm32f10x_it.c └── stm32f10x_it.h ├── Out ├── ExtDll.iex ├── Project.axf ├── Project.htm ├── Project.lnp ├── Project.map ├── Project.plg ├── Project.sct ├── Project.tra ├── Project_sct.Bak ├── bsp.__i ├── bsp.crf ├── bsp.d ├── bsp.o ├── console.__i ├── console.crf ├── console.d ├── console.o ├── core_cm3.crf ├── core_cm3.d ├── core_cm3.o ├── cpu_a.d ├── cpu_a.lst ├── cpu_a.o ├── cpu_c.crf ├── cpu_c.d ├── cpu_c.o ├── cpu_core.crf ├── cpu_core.d ├── cpu_core.o ├── delay.crf ├── delay.d ├── delay.o ├── led.__i ├── led.crf ├── led.d ├── led.o ├── lib_ascii.crf ├── lib_ascii.d ├── lib_ascii.o ├── lib_math.crf ├── lib_math.d ├── lib_math.o ├── lib_mem.crf ├── lib_mem.d ├── lib_mem.o ├── lib_str.crf ├── lib_str.d ├── lib_str.o ├── main.__i ├── main.crf ├── main.d ├── main.o ├── misc.crf ├── misc.d ├── misc.o ├── os_app_hooks.__i ├── os_app_hooks.crf ├── os_app_hooks.d ├── os_app_hooks.o ├── os_cfg_app.crf ├── os_cfg_app.d ├── os_cfg_app.o ├── os_core.crf ├── os_core.d ├── os_core.o ├── os_cpu_a.d ├── os_cpu_a.lst ├── os_cpu_a.o ├── os_cpu_c.crf ├── os_cpu_c.d ├── os_cpu_c.o ├── os_dbg.crf ├── os_dbg.d ├── os_dbg.o ├── os_flag.crf ├── os_flag.d ├── os_flag.o ├── os_int.crf ├── os_int.d ├── os_int.o ├── os_mem.crf ├── os_mem.d ├── os_mem.o ├── os_msg.crf ├── os_msg.d ├── os_msg.o ├── os_mutex.crf ├── os_mutex.d ├── os_mutex.o ├── os_pend_multi.crf ├── os_pend_multi.d ├── os_pend_multi.o ├── os_prio.crf ├── os_prio.d ├── os_prio.o ├── os_q.crf ├── os_q.d ├── os_q.o ├── os_sem.crf ├── os_sem.d ├── os_sem.o ├── os_stat.crf ├── os_stat.d ├── os_stat.o ├── os_task.crf ├── os_task.d ├── os_task.o ├── os_tick.crf ├── os_tick.d ├── os_tick.o ├── os_time.crf ├── os_time.d ├── os_time.o ├── os_tmr.crf ├── os_tmr.d ├── os_tmr.o ├── os_var.crf ├── os_var.d ├── os_var.o ├── startup_stm32f10x_hd.d ├── startup_stm32f10x_hd.lst ├── startup_stm32f10x_hd.o ├── stm32f10x_adc.crf ├── stm32f10x_adc.d ├── stm32f10x_adc.o ├── stm32f10x_bkp.crf ├── stm32f10x_bkp.d ├── stm32f10x_bkp.o ├── stm32f10x_can.crf ├── stm32f10x_can.d ├── stm32f10x_can.o ├── stm32f10x_cec.crf ├── stm32f10x_cec.d ├── stm32f10x_cec.o ├── stm32f10x_crc.crf ├── stm32f10x_crc.d ├── stm32f10x_crc.o ├── stm32f10x_dac.crf ├── stm32f10x_dac.d ├── stm32f10x_dac.o ├── stm32f10x_dbgmcu.crf ├── stm32f10x_dbgmcu.d ├── stm32f10x_dbgmcu.o ├── stm32f10x_dma.crf ├── stm32f10x_dma.d ├── stm32f10x_dma.o ├── stm32f10x_exti.crf ├── stm32f10x_exti.d ├── stm32f10x_exti.o ├── stm32f10x_flash.crf ├── stm32f10x_flash.d ├── stm32f10x_flash.o ├── stm32f10x_fsmc.crf ├── stm32f10x_fsmc.d ├── stm32f10x_fsmc.o ├── stm32f10x_gpio.crf ├── stm32f10x_gpio.d ├── stm32f10x_gpio.o ├── stm32f10x_i2c.crf ├── stm32f10x_i2c.d ├── stm32f10x_i2c.o ├── stm32f10x_it.__i ├── stm32f10x_it.crf ├── stm32f10x_it.d ├── stm32f10x_it.o ├── stm32f10x_iwdg.crf ├── stm32f10x_iwdg.d ├── stm32f10x_iwdg.o ├── stm32f10x_pwr.crf ├── stm32f10x_pwr.d ├── stm32f10x_pwr.o ├── stm32f10x_rcc.crf ├── stm32f10x_rcc.d ├── stm32f10x_rcc.o ├── stm32f10x_rtc.crf ├── stm32f10x_rtc.d ├── stm32f10x_rtc.o ├── stm32f10x_sdio.crf ├── stm32f10x_sdio.d ├── stm32f10x_sdio.o ├── stm32f10x_spi.crf ├── stm32f10x_spi.d ├── stm32f10x_spi.o ├── stm32f10x_tim.crf ├── stm32f10x_tim.d ├── stm32f10x_tim.o ├── stm32f10x_usart.crf ├── stm32f10x_usart.d ├── stm32f10x_usart.o ├── stm32f10x_wwdg.crf ├── stm32f10x_wwdg.d ├── stm32f10x_wwdg.o ├── system_stm32f10x.crf ├── system_stm32f10x.d ├── system_stm32f10x.o ├── task.__i ├── task.crf ├── task.d ├── task.o ├── usart.__i ├── usart.crf ├── usart.d └── usart.o ├── Project.uvgui.James ├── Project.uvgui_James.bak ├── Project.uvopt ├── Project.uvproj ├── Project_Target 1.dep ├── Project_uvopt.bak ├── Project_uvproj.bak ├── readme.txt ├── uCOS ├── CPU │ ├── cpu.h │ ├── cpu_a.asm │ ├── cpu_c.c │ ├── cpu_cfg.h │ ├── cpu_core.c │ ├── cpu_core.h │ └── cpu_def.h ├── Cfg │ ├── os_app_hooks.c │ ├── os_app_hooks.h │ ├── os_cfg.h │ └── os_cfg_app.h ├── LIB │ ├── lib_ascii.c │ ├── lib_ascii.h │ ├── lib_cfg.h │ ├── lib_def.h │ ├── lib_math.c │ ├── lib_math.h │ ├── lib_mem.c │ ├── lib_mem.h │ ├── lib_mem_a.asm │ ├── lib_str.c │ └── lib_str.h ├── Ports │ ├── os_cpu.h │ ├── os_cpu_a.asm │ └── os_cpu_c.c └── Source │ ├── os.h │ ├── os_cfg_app.c │ ├── os_core.c │ ├── os_dbg.c │ ├── os_flag.c │ ├── os_int.c │ ├── os_mem.c │ ├── os_msg.c │ ├── os_mutex.c │ ├── os_pend_multi.c │ ├── os_prio.c │ ├── os_q.c │ ├── os_sem.c │ ├── os_stat.c │ ├── os_task.c │ ├── os_tick.c │ ├── os_time.c │ ├── os_tmr.c │ ├── os_type.h │ └── os_var.c └── 删除.cmd /Application/task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Application/task.c -------------------------------------------------------------------------------- /Application/task.h: -------------------------------------------------------------------------------- 1 | #ifndef __TASK_H 2 | #define __TASK_H 3 | 4 | #include "stm32f10x.h" 5 | 6 | void AppTaskStart (void *p_arg); 7 | 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /Hardware/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Hardware/delay.c -------------------------------------------------------------------------------- /Hardware/delay.h: -------------------------------------------------------------------------------- 1 | #ifndef __DELAY_H 2 | #define __DELAY_H 3 | #include "stm32f10x.h" 4 | 5 | 6 | void delay_us(u32 us); 7 | void delay_ms(u32 ms); 8 | 9 | #endif 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Hardware/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Hardware/led.c -------------------------------------------------------------------------------- /Hardware/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Hardware/led.h -------------------------------------------------------------------------------- /Hardware/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Hardware/usart.c -------------------------------------------------------------------------------- /Hardware/usart.h: -------------------------------------------------------------------------------- 1 | #ifndef __USART_H 2 | #define __USART_H 3 | 4 | #include "stm32f10x.h" 5 | #include 6 | 7 | #define MAX_BUFFER_SIZE 256 8 | 9 | 10 | 11 | typedef struct 12 | { 13 | int8_t buffer[MAX_BUFFER_SIZE]; 14 | int8_t* buffer_end; 15 | int8_t* data_start; 16 | int8_t* data_end; 17 | int64_t count; 18 | int64_t size; 19 | } ring_buffer; 20 | 21 | 22 | 23 | void USART_Config(void); 24 | void NVIC_Config(void); 25 | int32_t Uart_Tx(uint8_t *buf, uint16_t size); 26 | int8_t RB_pop(ring_buffer* rb); 27 | int32_t RB_push(ring_buffer* rb, int8_t data); 28 | int8_t RB_pop(ring_buffer* rb); 29 | int32_t RB_full(ring_buffer* rb); 30 | void RB_init(ring_buffer* rb, int64_t size); 31 | void serial_puts(char *buffer); 32 | void serial_putc(char ch); 33 | 34 | #endif 35 | 36 | -------------------------------------------------------------------------------- /JLinkSettings.ini: -------------------------------------------------------------------------------- 1 | [BREAKPOINTS] 2 | ShowInfoWin = 1 3 | EnableFlashBP = 2 4 | BPDuringExecution = 0 5 | [CFI] 6 | CFISize = 0x00 7 | CFIAddr = 0x00 8 | [CPU] 9 | OverrideMemMap = 0 10 | AllowSimulation = 1 11 | ScriptFile="" 12 | [FLASH] 13 | MinNumBytesFlashDL = 0 14 | SkipProgOnCRCMatch = 1 15 | VerifyDownload = 1 16 | AllowCaching = 1 17 | EnableFlashDL = 2 18 | Override = 0 19 | Device="UNSPECIFIED" 20 | [GENERAL] 21 | WorkRAMSize = 0x00 22 | WorkRAMAddr = 0x00 23 | [SWO] 24 | SWOLogFile="" 25 | [MEM] 26 | RdOverrideOrMask = 0x00 27 | RdOverrideAndMask = 0xFFFFFFFF 28 | RdOverrideAddr = 0xFFFFFFFF 29 | WrOverrideOrMask = 0x00 30 | WrOverrideAndMask = 0xFFFFFFFF 31 | WrOverrideAddr = 0xFFFFFFFF 32 | -------------------------------------------------------------------------------- /Libraries/CMSIS/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Libraries/CMSIS/stm32f10x.h -------------------------------------------------------------------------------- /Libraries/CMSIS/system_stm32f10x.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file system_stm32f10x.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /** @addtogroup CMSIS 23 | * @{ 24 | */ 25 | 26 | /** @addtogroup stm32f10x_system 27 | * @{ 28 | */ 29 | 30 | /** 31 | * @brief Define to prevent recursive inclusion 32 | */ 33 | #ifndef __SYSTEM_STM32F10X_H 34 | #define __SYSTEM_STM32F10X_H 35 | 36 | #ifdef __cplusplus 37 | extern "C" { 38 | #endif 39 | 40 | /** @addtogroup STM32F10x_System_Includes 41 | * @{ 42 | */ 43 | 44 | /** 45 | * @} 46 | */ 47 | 48 | 49 | /** @addtogroup STM32F10x_System_Exported_types 50 | * @{ 51 | */ 52 | 53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ 54 | 55 | /** 56 | * @} 57 | */ 58 | 59 | /** @addtogroup STM32F10x_System_Exported_Constants 60 | * @{ 61 | */ 62 | 63 | /** 64 | * @} 65 | */ 66 | 67 | /** @addtogroup STM32F10x_System_Exported_Macros 68 | * @{ 69 | */ 70 | 71 | /** 72 | * @} 73 | */ 74 | 75 | /** @addtogroup STM32F10x_System_Exported_Functions 76 | * @{ 77 | */ 78 | 79 | extern void SystemInit(void); 80 | extern void SystemCoreClockUpdate(void); 81 | /** 82 | * @} 83 | */ 84 | 85 | #ifdef __cplusplus 86 | } 87 | #endif 88 | 89 | #endif /*__SYSTEM_STM32F10X_H */ 90 | 91 | /** 92 | * @} 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 99 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_crc.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the CRC firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_crc.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup CRC 30 | * @brief CRC driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup CRC_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup CRC_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Private_Macros 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Private_Variables 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Private_FunctionPrototypes 67 | * @{ 68 | */ 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup CRC_Private_Functions 75 | * @{ 76 | */ 77 | 78 | /** 79 | * @brief Resets the CRC Data register (DR). 80 | * @param None 81 | * @retval None 82 | */ 83 | void CRC_ResetDR(void) 84 | { 85 | /* Reset CRC generator */ 86 | CRC->CR = CRC_CR_RESET; 87 | } 88 | 89 | /** 90 | * @brief Computes the 32-bit CRC of a given data word(32-bit). 91 | * @param Data: data word(32-bit) to compute its CRC 92 | * @retval 32-bit CRC 93 | */ 94 | uint32_t CRC_CalcCRC(uint32_t Data) 95 | { 96 | CRC->DR = Data; 97 | 98 | return (CRC->DR); 99 | } 100 | 101 | /** 102 | * @brief Computes the 32-bit CRC of a given buffer of data word(32-bit). 103 | * @param pBuffer: pointer to the buffer containing the data to be computed 104 | * @param BufferLength: length of the buffer to be computed 105 | * @retval 32-bit CRC 106 | */ 107 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength) 108 | { 109 | uint32_t index = 0; 110 | 111 | for(index = 0; index < BufferLength; index++) 112 | { 113 | CRC->DR = pBuffer[index]; 114 | } 115 | return (CRC->DR); 116 | } 117 | 118 | /** 119 | * @brief Returns the current CRC value. 120 | * @param None 121 | * @retval 32-bit CRC 122 | */ 123 | uint32_t CRC_GetCRC(void) 124 | { 125 | return (CRC->DR); 126 | } 127 | 128 | /** 129 | * @brief Stores a 8-bit data in the Independent Data(ID) register. 130 | * @param IDValue: 8-bit value to be stored in the ID register 131 | * @retval None 132 | */ 133 | void CRC_SetIDRegister(uint8_t IDValue) 134 | { 135 | CRC->IDR = IDValue; 136 | } 137 | 138 | /** 139 | * @brief Returns the 8-bit data stored in the Independent Data(ID) register 140 | * @param None 141 | * @retval 8-bit value of the ID register 142 | */ 143 | uint8_t CRC_GetIDRegister(void) 144 | { 145 | return (CRC->IDR); 146 | } 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /** 157 | * @} 158 | */ 159 | 160 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 161 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_crc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the CRC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_CRC_H 25 | #define __STM32F10x_CRC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup CRC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup CRC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Exported_Macros 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Exported_Functions 67 | * @{ 68 | */ 69 | 70 | void CRC_ResetDR(void); 71 | uint32_t CRC_CalcCRC(uint32_t Data); 72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength); 73 | uint32_t CRC_GetCRC(void); 74 | void CRC_SetIDRegister(uint8_t IDValue); 75 | uint8_t CRC_GetIDRegister(void); 76 | 77 | #ifdef __cplusplus 78 | } 79 | #endif 80 | 81 | #endif /* __STM32F10x_CRC_H */ 82 | /** 83 | * @} 84 | */ 85 | 86 | /** 87 | * @} 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 95 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_dbgmcu.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the DBGMCU firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_dbgmcu.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup DBGMCU 30 | * @brief DBGMCU driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup DBGMCU_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup DBGMCU_Private_Defines 43 | * @{ 44 | */ 45 | 46 | #define IDCODE_DEVID_MASK ((uint32_t)0x00000FFF) 47 | /** 48 | * @} 49 | */ 50 | 51 | /** @defgroup DBGMCU_Private_Macros 52 | * @{ 53 | */ 54 | 55 | /** 56 | * @} 57 | */ 58 | 59 | /** @defgroup DBGMCU_Private_Variables 60 | * @{ 61 | */ 62 | 63 | /** 64 | * @} 65 | */ 66 | 67 | /** @defgroup DBGMCU_Private_FunctionPrototypes 68 | * @{ 69 | */ 70 | 71 | /** 72 | * @} 73 | */ 74 | 75 | /** @defgroup DBGMCU_Private_Functions 76 | * @{ 77 | */ 78 | 79 | /** 80 | * @brief Returns the device revision identifier. 81 | * @param None 82 | * @retval Device revision identifier 83 | */ 84 | uint32_t DBGMCU_GetREVID(void) 85 | { 86 | return(DBGMCU->IDCODE >> 16); 87 | } 88 | 89 | /** 90 | * @brief Returns the device identifier. 91 | * @param None 92 | * @retval Device identifier 93 | */ 94 | uint32_t DBGMCU_GetDEVID(void) 95 | { 96 | return(DBGMCU->IDCODE & IDCODE_DEVID_MASK); 97 | } 98 | 99 | /** 100 | * @brief Configures the specified peripheral and low power mode behavior 101 | * when the MCU under Debug mode. 102 | * @param DBGMCU_Periph: specifies the peripheral and low power mode. 103 | * This parameter can be any combination of the following values: 104 | * @arg DBGMCU_SLEEP: Keep debugger connection during SLEEP mode 105 | * @arg DBGMCU_STOP: Keep debugger connection during STOP mode 106 | * @arg DBGMCU_STANDBY: Keep debugger connection during STANDBY mode 107 | * @arg DBGMCU_IWDG_STOP: Debug IWDG stopped when Core is halted 108 | * @arg DBGMCU_WWDG_STOP: Debug WWDG stopped when Core is halted 109 | * @arg DBGMCU_TIM1_STOP: TIM1 counter stopped when Core is halted 110 | * @arg DBGMCU_TIM2_STOP: TIM2 counter stopped when Core is halted 111 | * @arg DBGMCU_TIM3_STOP: TIM3 counter stopped when Core is halted 112 | * @arg DBGMCU_TIM4_STOP: TIM4 counter stopped when Core is halted 113 | * @arg DBGMCU_CAN1_STOP: Debug CAN2 stopped when Core is halted 114 | * @arg DBGMCU_I2C1_SMBUS_TIMEOUT: I2C1 SMBUS timeout mode stopped when Core is halted 115 | * @arg DBGMCU_I2C2_SMBUS_TIMEOUT: I2C2 SMBUS timeout mode stopped when Core is halted 116 | * @arg DBGMCU_TIM5_STOP: TIM5 counter stopped when Core is halted 117 | * @arg DBGMCU_TIM6_STOP: TIM6 counter stopped when Core is halted 118 | * @arg DBGMCU_TIM7_STOP: TIM7 counter stopped when Core is halted 119 | * @arg DBGMCU_TIM8_STOP: TIM8 counter stopped when Core is halted 120 | * @arg DBGMCU_CAN2_STOP: Debug CAN2 stopped when Core is halted 121 | * @arg DBGMCU_TIM15_STOP: TIM15 counter stopped when Core is halted 122 | * @arg DBGMCU_TIM16_STOP: TIM16 counter stopped when Core is halted 123 | * @arg DBGMCU_TIM17_STOP: TIM17 counter stopped when Core is halted 124 | * @arg DBGMCU_TIM9_STOP: TIM9 counter stopped when Core is halted 125 | * @arg DBGMCU_TIM10_STOP: TIM10 counter stopped when Core is halted 126 | * @arg DBGMCU_TIM11_STOP: TIM11 counter stopped when Core is halted 127 | * @arg DBGMCU_TIM12_STOP: TIM12 counter stopped when Core is halted 128 | * @arg DBGMCU_TIM13_STOP: TIM13 counter stopped when Core is halted 129 | * @arg DBGMCU_TIM14_STOP: TIM14 counter stopped when Core is halted 130 | * @param NewState: new state of the specified peripheral in Debug mode. 131 | * This parameter can be: ENABLE or DISABLE. 132 | * @retval None 133 | */ 134 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState) 135 | { 136 | /* Check the parameters */ 137 | assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); 138 | assert_param(IS_FUNCTIONAL_STATE(NewState)); 139 | 140 | if (NewState != DISABLE) 141 | { 142 | DBGMCU->CR |= DBGMCU_Periph; 143 | } 144 | else 145 | { 146 | DBGMCU->CR &= ~DBGMCU_Periph; 147 | } 148 | } 149 | 150 | /** 151 | * @} 152 | */ 153 | 154 | /** 155 | * @} 156 | */ 157 | 158 | /** 159 | * @} 160 | */ 161 | 162 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 163 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_dbgmcu.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the DBGMCU 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_DBGMCU_H 25 | #define __STM32F10x_DBGMCU_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup DBGMCU 39 | * @{ 40 | */ 41 | 42 | /** @defgroup DBGMCU_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup DBGMCU_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | #define DBGMCU_SLEEP ((uint32_t)0x00000001) 55 | #define DBGMCU_STOP ((uint32_t)0x00000002) 56 | #define DBGMCU_STANDBY ((uint32_t)0x00000004) 57 | #define DBGMCU_IWDG_STOP ((uint32_t)0x00000100) 58 | #define DBGMCU_WWDG_STOP ((uint32_t)0x00000200) 59 | #define DBGMCU_TIM1_STOP ((uint32_t)0x00000400) 60 | #define DBGMCU_TIM2_STOP ((uint32_t)0x00000800) 61 | #define DBGMCU_TIM3_STOP ((uint32_t)0x00001000) 62 | #define DBGMCU_TIM4_STOP ((uint32_t)0x00002000) 63 | #define DBGMCU_CAN1_STOP ((uint32_t)0x00004000) 64 | #define DBGMCU_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00008000) 65 | #define DBGMCU_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00010000) 66 | #define DBGMCU_TIM8_STOP ((uint32_t)0x00020000) 67 | #define DBGMCU_TIM5_STOP ((uint32_t)0x00040000) 68 | #define DBGMCU_TIM6_STOP ((uint32_t)0x00080000) 69 | #define DBGMCU_TIM7_STOP ((uint32_t)0x00100000) 70 | #define DBGMCU_CAN2_STOP ((uint32_t)0x00200000) 71 | #define DBGMCU_TIM15_STOP ((uint32_t)0x00400000) 72 | #define DBGMCU_TIM16_STOP ((uint32_t)0x00800000) 73 | #define DBGMCU_TIM17_STOP ((uint32_t)0x01000000) 74 | #define DBGMCU_TIM12_STOP ((uint32_t)0x02000000) 75 | #define DBGMCU_TIM13_STOP ((uint32_t)0x04000000) 76 | #define DBGMCU_TIM14_STOP ((uint32_t)0x08000000) 77 | #define DBGMCU_TIM9_STOP ((uint32_t)0x10000000) 78 | #define DBGMCU_TIM10_STOP ((uint32_t)0x20000000) 79 | #define DBGMCU_TIM11_STOP ((uint32_t)0x40000000) 80 | 81 | #define IS_DBGMCU_PERIPH(PERIPH) ((((PERIPH) & 0x800000F8) == 0x00) && ((PERIPH) != 0x00)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup DBGMCU_Exported_Macros 87 | * @{ 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /** @defgroup DBGMCU_Exported_Functions 95 | * @{ 96 | */ 97 | 98 | uint32_t DBGMCU_GetREVID(void); 99 | uint32_t DBGMCU_GetDEVID(void); 100 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState); 101 | 102 | #ifdef __cplusplus 103 | } 104 | #endif 105 | 106 | #endif /* __STM32F10x_DBGMCU_H */ 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /** 116 | * @} 117 | */ 118 | 119 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 120 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Libraries/StdPeriph_Driver/stm32f10x_flash.c -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Libraries/StdPeriph_Driver/stm32f10x_i2c.c -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the IWDG firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_iwdg.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup IWDG 30 | * @brief IWDG driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup IWDG_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup IWDG_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /* ---------------------- IWDG registers bit mask ----------------------------*/ 47 | 48 | /* KR register bit mask */ 49 | #define KR_KEY_Reload ((uint16_t)0xAAAA) 50 | #define KR_KEY_Enable ((uint16_t)0xCCCC) 51 | 52 | /** 53 | * @} 54 | */ 55 | 56 | /** @defgroup IWDG_Private_Macros 57 | * @{ 58 | */ 59 | 60 | /** 61 | * @} 62 | */ 63 | 64 | /** @defgroup IWDG_Private_Variables 65 | * @{ 66 | */ 67 | 68 | /** 69 | * @} 70 | */ 71 | 72 | /** @defgroup IWDG_Private_FunctionPrototypes 73 | * @{ 74 | */ 75 | 76 | /** 77 | * @} 78 | */ 79 | 80 | /** @defgroup IWDG_Private_Functions 81 | * @{ 82 | */ 83 | 84 | /** 85 | * @brief Enables or disables write access to IWDG_PR and IWDG_RLR registers. 86 | * @param IWDG_WriteAccess: new state of write access to IWDG_PR and IWDG_RLR registers. 87 | * This parameter can be one of the following values: 88 | * @arg IWDG_WriteAccess_Enable: Enable write access to IWDG_PR and IWDG_RLR registers 89 | * @arg IWDG_WriteAccess_Disable: Disable write access to IWDG_PR and IWDG_RLR registers 90 | * @retval None 91 | */ 92 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess) 93 | { 94 | /* Check the parameters */ 95 | assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); 96 | IWDG->KR = IWDG_WriteAccess; 97 | } 98 | 99 | /** 100 | * @brief Sets IWDG Prescaler value. 101 | * @param IWDG_Prescaler: specifies the IWDG Prescaler value. 102 | * This parameter can be one of the following values: 103 | * @arg IWDG_Prescaler_4: IWDG prescaler set to 4 104 | * @arg IWDG_Prescaler_8: IWDG prescaler set to 8 105 | * @arg IWDG_Prescaler_16: IWDG prescaler set to 16 106 | * @arg IWDG_Prescaler_32: IWDG prescaler set to 32 107 | * @arg IWDG_Prescaler_64: IWDG prescaler set to 64 108 | * @arg IWDG_Prescaler_128: IWDG prescaler set to 128 109 | * @arg IWDG_Prescaler_256: IWDG prescaler set to 256 110 | * @retval None 111 | */ 112 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler) 113 | { 114 | /* Check the parameters */ 115 | assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); 116 | IWDG->PR = IWDG_Prescaler; 117 | } 118 | 119 | /** 120 | * @brief Sets IWDG Reload value. 121 | * @param Reload: specifies the IWDG Reload value. 122 | * This parameter must be a number between 0 and 0x0FFF. 123 | * @retval None 124 | */ 125 | void IWDG_SetReload(uint16_t Reload) 126 | { 127 | /* Check the parameters */ 128 | assert_param(IS_IWDG_RELOAD(Reload)); 129 | IWDG->RLR = Reload; 130 | } 131 | 132 | /** 133 | * @brief Reloads IWDG counter with value defined in the reload register 134 | * (write access to IWDG_PR and IWDG_RLR registers disabled). 135 | * @param None 136 | * @retval None 137 | */ 138 | void IWDG_ReloadCounter(void) 139 | { 140 | IWDG->KR = KR_KEY_Reload; 141 | } 142 | 143 | /** 144 | * @brief Enables IWDG (write access to IWDG_PR and IWDG_RLR registers disabled). 145 | * @param None 146 | * @retval None 147 | */ 148 | void IWDG_Enable(void) 149 | { 150 | IWDG->KR = KR_KEY_Enable; 151 | } 152 | 153 | /** 154 | * @brief Checks whether the specified IWDG flag is set or not. 155 | * @param IWDG_FLAG: specifies the flag to check. 156 | * This parameter can be one of the following values: 157 | * @arg IWDG_FLAG_PVU: Prescaler Value Update on going 158 | * @arg IWDG_FLAG_RVU: Reload Value Update on going 159 | * @retval The new state of IWDG_FLAG (SET or RESET). 160 | */ 161 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG) 162 | { 163 | FlagStatus bitstatus = RESET; 164 | /* Check the parameters */ 165 | assert_param(IS_IWDG_FLAG(IWDG_FLAG)); 166 | if ((IWDG->SR & IWDG_FLAG) != (uint32_t)RESET) 167 | { 168 | bitstatus = SET; 169 | } 170 | else 171 | { 172 | bitstatus = RESET; 173 | } 174 | /* Return the flag status */ 175 | return bitstatus; 176 | } 177 | 178 | /** 179 | * @} 180 | */ 181 | 182 | /** 183 | * @} 184 | */ 185 | 186 | /** 187 | * @} 188 | */ 189 | 190 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 191 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the IWDG 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_IWDG_H 25 | #define __STM32F10x_IWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup IWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup IWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup IWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup IWDG_WriteAccess 55 | * @{ 56 | */ 57 | 58 | #define IWDG_WriteAccess_Enable ((uint16_t)0x5555) 59 | #define IWDG_WriteAccess_Disable ((uint16_t)0x0000) 60 | #define IS_IWDG_WRITE_ACCESS(ACCESS) (((ACCESS) == IWDG_WriteAccess_Enable) || \ 61 | ((ACCESS) == IWDG_WriteAccess_Disable)) 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup IWDG_prescaler 67 | * @{ 68 | */ 69 | 70 | #define IWDG_Prescaler_4 ((uint8_t)0x00) 71 | #define IWDG_Prescaler_8 ((uint8_t)0x01) 72 | #define IWDG_Prescaler_16 ((uint8_t)0x02) 73 | #define IWDG_Prescaler_32 ((uint8_t)0x03) 74 | #define IWDG_Prescaler_64 ((uint8_t)0x04) 75 | #define IWDG_Prescaler_128 ((uint8_t)0x05) 76 | #define IWDG_Prescaler_256 ((uint8_t)0x06) 77 | #define IS_IWDG_PRESCALER(PRESCALER) (((PRESCALER) == IWDG_Prescaler_4) || \ 78 | ((PRESCALER) == IWDG_Prescaler_8) || \ 79 | ((PRESCALER) == IWDG_Prescaler_16) || \ 80 | ((PRESCALER) == IWDG_Prescaler_32) || \ 81 | ((PRESCALER) == IWDG_Prescaler_64) || \ 82 | ((PRESCALER) == IWDG_Prescaler_128)|| \ 83 | ((PRESCALER) == IWDG_Prescaler_256)) 84 | /** 85 | * @} 86 | */ 87 | 88 | /** @defgroup IWDG_Flag 89 | * @{ 90 | */ 91 | 92 | #define IWDG_FLAG_PVU ((uint16_t)0x0001) 93 | #define IWDG_FLAG_RVU ((uint16_t)0x0002) 94 | #define IS_IWDG_FLAG(FLAG) (((FLAG) == IWDG_FLAG_PVU) || ((FLAG) == IWDG_FLAG_RVU)) 95 | #define IS_IWDG_RELOAD(RELOAD) ((RELOAD) <= 0xFFF) 96 | /** 97 | * @} 98 | */ 99 | 100 | /** 101 | * @} 102 | */ 103 | 104 | /** @defgroup IWDG_Exported_Macros 105 | * @{ 106 | */ 107 | 108 | /** 109 | * @} 110 | */ 111 | 112 | /** @defgroup IWDG_Exported_Functions 113 | * @{ 114 | */ 115 | 116 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess); 117 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler); 118 | void IWDG_SetReload(uint16_t Reload); 119 | void IWDG_ReloadCounter(void); 120 | void IWDG_Enable(void); 121 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG); 122 | 123 | #ifdef __cplusplus 124 | } 125 | #endif 126 | 127 | #endif /* __STM32F10x_IWDG_H */ 128 | /** 129 | * @} 130 | */ 131 | 132 | /** 133 | * @} 134 | */ 135 | 136 | /** 137 | * @} 138 | */ 139 | 140 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 141 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_pwr.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_pwr.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the PWR firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_PWR_H 25 | #define __STM32F10x_PWR_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup PWR 39 | * @{ 40 | */ 41 | 42 | /** @defgroup PWR_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup PWR_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup PVD_detection_level 55 | * @{ 56 | */ 57 | 58 | #define PWR_PVDLevel_2V2 ((uint32_t)0x00000000) 59 | #define PWR_PVDLevel_2V3 ((uint32_t)0x00000020) 60 | #define PWR_PVDLevel_2V4 ((uint32_t)0x00000040) 61 | #define PWR_PVDLevel_2V5 ((uint32_t)0x00000060) 62 | #define PWR_PVDLevel_2V6 ((uint32_t)0x00000080) 63 | #define PWR_PVDLevel_2V7 ((uint32_t)0x000000A0) 64 | #define PWR_PVDLevel_2V8 ((uint32_t)0x000000C0) 65 | #define PWR_PVDLevel_2V9 ((uint32_t)0x000000E0) 66 | #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_2V2) || ((LEVEL) == PWR_PVDLevel_2V3)|| \ 67 | ((LEVEL) == PWR_PVDLevel_2V4) || ((LEVEL) == PWR_PVDLevel_2V5)|| \ 68 | ((LEVEL) == PWR_PVDLevel_2V6) || ((LEVEL) == PWR_PVDLevel_2V7)|| \ 69 | ((LEVEL) == PWR_PVDLevel_2V8) || ((LEVEL) == PWR_PVDLevel_2V9)) 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup Regulator_state_is_STOP_mode 75 | * @{ 76 | */ 77 | 78 | #define PWR_Regulator_ON ((uint32_t)0x00000000) 79 | #define PWR_Regulator_LowPower ((uint32_t)0x00000001) 80 | #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_Regulator_ON) || \ 81 | ((REGULATOR) == PWR_Regulator_LowPower)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup STOP_mode_entry 87 | * @{ 88 | */ 89 | 90 | #define PWR_STOPEntry_WFI ((uint8_t)0x01) 91 | #define PWR_STOPEntry_WFE ((uint8_t)0x02) 92 | #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE)) 93 | 94 | /** 95 | * @} 96 | */ 97 | 98 | /** @defgroup PWR_Flag 99 | * @{ 100 | */ 101 | 102 | #define PWR_FLAG_WU ((uint32_t)0x00000001) 103 | #define PWR_FLAG_SB ((uint32_t)0x00000002) 104 | #define PWR_FLAG_PVDO ((uint32_t)0x00000004) 105 | #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \ 106 | ((FLAG) == PWR_FLAG_PVDO)) 107 | 108 | #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB)) 109 | /** 110 | * @} 111 | */ 112 | 113 | /** 114 | * @} 115 | */ 116 | 117 | /** @defgroup PWR_Exported_Macros 118 | * @{ 119 | */ 120 | 121 | /** 122 | * @} 123 | */ 124 | 125 | /** @defgroup PWR_Exported_Functions 126 | * @{ 127 | */ 128 | 129 | void PWR_DeInit(void); 130 | void PWR_BackupAccessCmd(FunctionalState NewState); 131 | void PWR_PVDCmd(FunctionalState NewState); 132 | void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel); 133 | void PWR_WakeUpPinCmd(FunctionalState NewState); 134 | void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry); 135 | void PWR_EnterSTANDBYMode(void); 136 | FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG); 137 | void PWR_ClearFlag(uint32_t PWR_FLAG); 138 | 139 | #ifdef __cplusplus 140 | } 141 | #endif 142 | 143 | #endif /* __STM32F10x_PWR_H */ 144 | /** 145 | * @} 146 | */ 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 157 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_rtc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_rtc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the RTC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_RTC_H 25 | #define __STM32F10x_RTC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup RTC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup RTC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup RTC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup RTC_interrupts_define 55 | * @{ 56 | */ 57 | 58 | #define RTC_IT_OW ((uint16_t)0x0004) /*!< Overflow interrupt */ 59 | #define RTC_IT_ALR ((uint16_t)0x0002) /*!< Alarm interrupt */ 60 | #define RTC_IT_SEC ((uint16_t)0x0001) /*!< Second interrupt */ 61 | #define IS_RTC_IT(IT) ((((IT) & (uint16_t)0xFFF8) == 0x00) && ((IT) != 0x00)) 62 | #define IS_RTC_GET_IT(IT) (((IT) == RTC_IT_OW) || ((IT) == RTC_IT_ALR) || \ 63 | ((IT) == RTC_IT_SEC)) 64 | /** 65 | * @} 66 | */ 67 | 68 | /** @defgroup RTC_interrupts_flags 69 | * @{ 70 | */ 71 | 72 | #define RTC_FLAG_RTOFF ((uint16_t)0x0020) /*!< RTC Operation OFF flag */ 73 | #define RTC_FLAG_RSF ((uint16_t)0x0008) /*!< Registers Synchronized flag */ 74 | #define RTC_FLAG_OW ((uint16_t)0x0004) /*!< Overflow flag */ 75 | #define RTC_FLAG_ALR ((uint16_t)0x0002) /*!< Alarm flag */ 76 | #define RTC_FLAG_SEC ((uint16_t)0x0001) /*!< Second flag */ 77 | #define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint16_t)0xFFF0) == 0x00) && ((FLAG) != 0x00)) 78 | #define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTOFF) || ((FLAG) == RTC_FLAG_RSF) || \ 79 | ((FLAG) == RTC_FLAG_OW) || ((FLAG) == RTC_FLAG_ALR) || \ 80 | ((FLAG) == RTC_FLAG_SEC)) 81 | #define IS_RTC_PRESCALER(PRESCALER) ((PRESCALER) <= 0xFFFFF) 82 | 83 | /** 84 | * @} 85 | */ 86 | 87 | /** 88 | * @} 89 | */ 90 | 91 | /** @defgroup RTC_Exported_Macros 92 | * @{ 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | 99 | /** @defgroup RTC_Exported_Functions 100 | * @{ 101 | */ 102 | 103 | void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState); 104 | void RTC_EnterConfigMode(void); 105 | void RTC_ExitConfigMode(void); 106 | uint32_t RTC_GetCounter(void); 107 | void RTC_SetCounter(uint32_t CounterValue); 108 | void RTC_SetPrescaler(uint32_t PrescalerValue); 109 | void RTC_SetAlarm(uint32_t AlarmValue); 110 | uint32_t RTC_GetDivider(void); 111 | void RTC_WaitForLastTask(void); 112 | void RTC_WaitForSynchro(void); 113 | FlagStatus RTC_GetFlagStatus(uint16_t RTC_FLAG); 114 | void RTC_ClearFlag(uint16_t RTC_FLAG); 115 | ITStatus RTC_GetITStatus(uint16_t RTC_IT); 116 | void RTC_ClearITPendingBit(uint16_t RTC_IT); 117 | 118 | #ifdef __cplusplus 119 | } 120 | #endif 121 | 122 | #endif /* __STM32F10x_RTC_H */ 123 | /** 124 | * @} 125 | */ 126 | 127 | /** 128 | * @} 129 | */ 130 | 131 | /** 132 | * @} 133 | */ 134 | 135 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 136 | -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Libraries/StdPeriph_Driver/stm32f10x_usart.c -------------------------------------------------------------------------------- /Libraries/StdPeriph_Driver/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_wwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the WWDG firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_WWDG_H 25 | #define __STM32F10x_WWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup WWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup WWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup WWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup WWDG_Prescaler 55 | * @{ 56 | */ 57 | 58 | #define WWDG_Prescaler_1 ((uint32_t)0x00000000) 59 | #define WWDG_Prescaler_2 ((uint32_t)0x00000080) 60 | #define WWDG_Prescaler_4 ((uint32_t)0x00000100) 61 | #define WWDG_Prescaler_8 ((uint32_t)0x00000180) 62 | #define IS_WWDG_PRESCALER(PRESCALER) (((PRESCALER) == WWDG_Prescaler_1) || \ 63 | ((PRESCALER) == WWDG_Prescaler_2) || \ 64 | ((PRESCALER) == WWDG_Prescaler_4) || \ 65 | ((PRESCALER) == WWDG_Prescaler_8)) 66 | #define IS_WWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0x7F) 67 | #define IS_WWDG_COUNTER(COUNTER) (((COUNTER) >= 0x40) && ((COUNTER) <= 0x7F)) 68 | 69 | /** 70 | * @} 71 | */ 72 | 73 | /** 74 | * @} 75 | */ 76 | 77 | /** @defgroup WWDG_Exported_Macros 78 | * @{ 79 | */ 80 | /** 81 | * @} 82 | */ 83 | 84 | /** @defgroup WWDG_Exported_Functions 85 | * @{ 86 | */ 87 | 88 | void WWDG_DeInit(void); 89 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler); 90 | void WWDG_SetWindowValue(uint8_t WindowValue); 91 | void WWDG_EnableIT(void); 92 | void WWDG_SetCounter(uint8_t Counter); 93 | void WWDG_Enable(uint8_t Counter); 94 | FlagStatus WWDG_GetFlagStatus(void); 95 | void WWDG_ClearFlag(void); 96 | 97 | #ifdef __cplusplus 98 | } 99 | #endif 100 | 101 | #endif /* __STM32F10x_WWDG_H */ 102 | 103 | /** 104 | * @} 105 | */ 106 | 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 116 | -------------------------------------------------------------------------------- /Main/app_cfg.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * EXAMPLE CODE 4 | * 5 | * (c) Copyright 2009; Micrium, Inc.; Weston, FL 6 | * 7 | * All rights reserved. Protected by international copyright laws. 8 | * Knowledge of the source code may NOT be used to develop a similar product. 9 | * Please help us continue to provide the Embedded community with the finest 10 | * software available. Your honesty is greatly appreciated. 11 | ********************************************************************************************************* 12 | */ 13 | 14 | /* 15 | ********************************************************************************************************* 16 | * APPLICATION CONFIGURATION 17 | * 18 | * ST Microelectronics STM32 19 | * on the 20 | * 21 | * Micrium uC-Eval-STM32F107 22 | * Evaluation Board 23 | * 24 | * Filename : app_cfg.h 25 | * Version : V1.00 26 | * Programmer(s) : JJL 27 | * EHS 28 | ********************************************************************************************************* 29 | */ 30 | 31 | #ifndef __APP_CFG_H__ 32 | #define __APP_CFG_H__ 33 | 34 | 35 | /* 36 | ********************************************************************************************************* 37 | * BSP CONFIGURATION 38 | ********************************************************************************************************* 39 | */ 40 | 41 | 42 | 43 | /* 44 | ********************************************************************************************************* 45 | * TASK PRIORITIES 46 | ********************************************************************************************************* 47 | */ 48 | 49 | #define APP_TASK_START_PRIO 2 50 | 51 | 52 | /* 53 | ********************************************************************************************************* 54 | * TASK STACK SIZES 55 | * Size of the task stacks (# of OS_STK entries) 56 | ********************************************************************************************************* 57 | */ 58 | 59 | #define APP_TASK_START_STK_SIZE 128 60 | 61 | 62 | /* 63 | ********************************************************************************************************* 64 | * uC/LIB CONFIGURATION 65 | ********************************************************************************************************* 66 | */ 67 | 68 | #include 69 | 70 | /* 71 | ********************************************************************************************************* 72 | * uC/Probe CONFIGURATION 73 | ********************************************************************************************************* 74 | */ 75 | 76 | #define APP_CFG_PROBE_OS_PLUGIN_EN DEF_DISABLED 77 | #define APP_CFG_PROBE_COM_EN DEF_DISABLED 78 | 79 | /* 80 | ********************************************************************************************************* 81 | * BSP CONFIGURATION: RS-232 82 | ********************************************************************************************************* 83 | */ 84 | 85 | #define BSP_SER_COMM_EN DEF_ENABLED 86 | #define BSP_CFG_SER_COMM_SEL BSP_SER_COMM_UART_02 87 | #define BSP_CFG_TS_TMR_SEL 2 88 | 89 | 90 | /* 91 | ********************************************************************************************************* 92 | * TRACE / DEBUG CONFIGURATION 93 | ********************************************************************************************************* 94 | */ 95 | 96 | #define TRACE_LEVEL_OFF 0 97 | #define TRACE_LEVEL_INFO 1 98 | #define TRACE_LEVEL_DEBUG 2 99 | 100 | #define APP_TRACE_LEVEL TRACE_LEVEL_INFO 101 | #define APP_TRACE BSP_Ser_Printf 102 | 103 | #define APP_TRACE_INFO(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_INFO) ? (void)(APP_TRACE x) : (void)0) 104 | #define APP_TRACE_DEBUG(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_DEBUG) ? (void)(APP_TRACE x) : (void)0) 105 | 106 | 107 | #endif 108 | -------------------------------------------------------------------------------- /Main/bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Main/bsp.c -------------------------------------------------------------------------------- /Main/bsp.h: -------------------------------------------------------------------------------- 1 | /* 2 | ********************************************************************************************************* 3 | * MICIRUM BOARD SUPPORT PACKAGE 4 | * 5 | * (c) Copyright 2007; Micrium, Inc.; Weston, FL 6 | * 7 | * All rights reserved. Protected by international copyright laws. 8 | * Knowledge of the source code may NOT be used to develop a similar product. 9 | * Please help us continue to provide the Embedded community with the finest 10 | * software available. Your honesty is greatly appreciated. 11 | ********************************************************************************************************* 12 | */ 13 | 14 | /* 15 | ********************************************************************************************************* 16 | * 17 | * BOARD SUPPORT PACKAGE 18 | * 19 | * ST Microelectronics STM32 20 | * on the 21 | * 22 | * Micrium uC-Eval-STM32F107 23 | * Evaluation Board 24 | * 25 | * Filename : bsp.h 26 | * Version : V1.00 27 | * Programmer(s) : EHS 28 | ********************************************************************************************************* 29 | */ 30 | 31 | /* 32 | ********************************************************************************************************* 33 | * MODULE 34 | * 35 | * Note(s) : (1) This header file is protected from multiple pre-processor inclusion through use of the 36 | * BSP present pre-processor macro definition. 37 | ********************************************************************************************************* 38 | */ 39 | 40 | #ifndef BSP_PRESENT 41 | #define BSP_PRESENT 42 | 43 | 44 | /* 45 | ********************************************************************************************************* 46 | * EXTERNS 47 | ********************************************************************************************************* 48 | */ 49 | 50 | #ifdef BSP_MODULE 51 | #define BSP_EXT 52 | #else 53 | #define BSP_EXT extern 54 | #endif 55 | 56 | 57 | /* 58 | ********************************************************************************************************* 59 | * INCLUDE FILES 60 | ********************************************************************************************************* 61 | */ 62 | 63 | #include 64 | #include 65 | 66 | #include 67 | #include 68 | 69 | #include 70 | #include 71 | #include 72 | #include 73 | 74 | #include 75 | 76 | #include 77 | 78 | 79 | void BSP_Init (void); 80 | CPU_INT32U BSP_CPU_ClkFreq (void); 81 | 82 | 83 | #if ((APP_CFG_PROBE_OS_PLUGIN_EN == DEF_ENABLED) && \ 84 | (OS_PROBE_HOOKS_EN == 1)) 85 | void OSProbe_TmrInit (void); 86 | #endif 87 | 88 | #if ((APP_CFG_PROBE_OS_PLUGIN_EN == DEF_ENABLED) && \ 89 | (OS_PROBE_HOOKS_EN == 1)) 90 | CPU_INT32U OSProbe_TmrRd (void); 91 | #endif 92 | 93 | #if (CPU_CFG_TS_TMR_EN == DEF_ENABLED) 94 | void CPU_TS_TmrInit (void); 95 | #endif 96 | 97 | #if (CPU_CFG_TS_TMR_EN == DEF_ENABLED) 98 | CPU_TS_TMR CPU_TS_TmrRd (void); 99 | #endif 100 | 101 | #endif /* End of module include. */ 102 | -------------------------------------------------------------------------------- /Main/console.h: -------------------------------------------------------------------------------- 1 | 2 | // -------------------------------------------------------------------------------------- 3 | // Module : CMD 4 | // Description: Command processing module 5 | // Author : James 6 | // -------------------------------------------------------------------------------------- 7 | // DragonBall.com 8 | // -------------------------------------------------------------------------------------- 9 | 10 | #ifndef CONSOLE_H 11 | #define CONSOLE_H 12 | 13 | #define CONSOLE_CMD_MAX 80 14 | #define CONSOLE_CMD_HIST_MAX 10 15 | 16 | #define CONSOLE_CMD_SEP " ," 17 | #define CONSOLE_CMD_TOKEN_MAX 32 // FORMAT: cmd [arg1] [arg2] [arg3] 18 | 19 | #define CONSOLE_CMD_PROMPT "#>" 20 | 21 | 22 | 23 | typedef enum 24 | { 25 | ERR_PASS = 0, 26 | ERR_FAIL, 27 | ERR_INV_PARAM, 28 | ERR_INV_MSG_ID, 29 | ERR_INV_ADDR, 30 | ERR_BUSY, 31 | ERR_READY, 32 | ERR_TIMEOUT, 33 | ERR_OVERRUN, 34 | ERR_UNDERRUN, 35 | ERR_TOO_LONG, 36 | ERR_TOO_SHORT, 37 | ERR_MSG_TOO_SHORT, 38 | ERR_IN_PROGRESS, 39 | ERR_NO_HANDLER, 40 | ERR_FILE_DESC, 41 | ERR_SOCK_DISC, 42 | ERR_SOCK_FAIL, 43 | ERR_CRC_FAIL, 44 | ERR_LEN_FAIL, 45 | ERR_LEN_TOO_LONG, 46 | ERR_FIRMWARE_FAILED_ERASE, 47 | ERR_FIRMWARE_FAILED_PROGRAM, 48 | ERR_FIRMWARE_FAILED_VERIFY, 49 | ERR_FIRMWARE_ADDRESS_OUT_OF_RANGE, 50 | ERR_UNEXP, 51 | ERR_NOT_IMPLEMENTED, 52 | ERR_RX_ACTIVITY, 53 | ERR_DONE, 54 | ERR_UNKNOWN, 55 | ERR_COMMS_TIMEOUT, 56 | ERR_CTRL_C_PRESSED, 57 | 58 | } err_t; 59 | 60 | typedef enum 61 | { 62 | CONSOLE_CMD_CTRL_C = 3, 63 | CONSOLE_CMD_ESC = 27, 64 | CONSOLE_CMD_BSP = 8, 65 | CONSOLE_CMD_DEL = 127, 66 | CONSOLE_CMD_HASH = 35 67 | } console_cmd_key_t; 68 | 69 | typedef int32_t (*console_cmd_fctn_ptr_t)(char **arg); 70 | 71 | typedef enum 72 | { 73 | CONSOLE_CMD_ARG_TYPE_NONE, 74 | CONSOLE_CMD_ARG_TYPE_INT, 75 | CONSOLE_CMD_ARG_TYPE_STR 76 | } console_cmd_arg_type_t; 77 | 78 | typedef struct 79 | { 80 | char *cmd_name; 81 | console_cmd_fctn_ptr_t cmd_fctn; 82 | console_cmd_arg_type_t arg_type; 83 | char *cmd_help; 84 | uint8_t hidden; // hidden command 85 | } cmd_t; 86 | 87 | void console_init(void); 88 | void console_update(void); 89 | int32_t console_cmd_get(void); 90 | int32_t console_cmd_execute(uint8_t cmd_index, char **arg, uint8_t arg_max); 91 | 92 | #endif // CONSOLE_H 93 | -------------------------------------------------------------------------------- /Main/includes.h: -------------------------------------------------------------------------------- 1 | #ifndef INCLUDES_PRESENT 2 | #define INCLUDES_PRESENT 3 | 4 | 5 | #include 6 | #include 7 | #include 8 | #include 9 | 10 | 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | 18 | #include 19 | 20 | #include 21 | 22 | #include 23 | 24 | #include 25 | #include "usart.h" 26 | #include "led.h" 27 | #include "delay.h" 28 | #include "task.h" 29 | 30 | #endif 31 | 32 | -------------------------------------------------------------------------------- /Main/main.c: -------------------------------------------------------------------------------- 1 | #include "includes.h" 2 | #include "bsp.h" 3 | 4 | static OS_TCB AppTaskStartTCB; 5 | static CPU_STK AppTaskStartStk[APP_TASK_START_STK_SIZE]; 6 | 7 | int main(void) 8 | { 9 | OS_ERR err; 10 | 11 | 12 | /* Disable all interrupts. */ 13 | 14 | OSInit(&err); /* Init uC/OS-III. */ 15 | 16 | OSTaskCreate((OS_TCB *)&AppTaskStartTCB, /* Create the start task */ 17 | (CPU_CHAR *)"App Task Start", 18 | (OS_TASK_PTR )AppTaskStart, 19 | (void *)0, 20 | (OS_PRIO )APP_TASK_START_PRIO, 21 | (CPU_STK *)&AppTaskStartStk[0], 22 | (CPU_STK_SIZE)APP_TASK_START_STK_SIZE / 10, 23 | (CPU_STK_SIZE)APP_TASK_START_STK_SIZE, 24 | (OS_MSG_QTY )0, 25 | (OS_TICK )0, 26 | (void *)0, 27 | (OS_OPT )(OS_OPT_TASK_STK_CHK | OS_OPT_TASK_STK_CLR), 28 | (OS_ERR *)&err); 29 | 30 | OSStart(&err); 31 | } 32 | 33 | -------------------------------------------------------------------------------- /Main/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file USART/Printf/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Library configuration file. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_CONF_H 24 | #define __STM32F10x_CONF_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */ 28 | #include "stm32f10x_adc.h" 29 | #include "stm32f10x_bkp.h" 30 | #include "stm32f10x_can.h" 31 | #include "stm32f10x_cec.h" 32 | #include "stm32f10x_crc.h" 33 | #include "stm32f10x_dac.h" 34 | #include "stm32f10x_dbgmcu.h" 35 | #include "stm32f10x_dma.h" 36 | #include "stm32f10x_exti.h" 37 | #include "stm32f10x_flash.h" 38 | #include "stm32f10x_fsmc.h" 39 | #include "stm32f10x_gpio.h" 40 | #include "stm32f10x_i2c.h" 41 | #include "stm32f10x_iwdg.h" 42 | #include "stm32f10x_pwr.h" 43 | #include "stm32f10x_rcc.h" 44 | #include "stm32f10x_rtc.h" 45 | #include "stm32f10x_sdio.h" 46 | #include "stm32f10x_spi.h" 47 | #include "stm32f10x_tim.h" 48 | #include "stm32f10x_usart.h" 49 | #include "stm32f10x_wwdg.h" 50 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 51 | 52 | /* Exported types ------------------------------------------------------------*/ 53 | /* Exported constants --------------------------------------------------------*/ 54 | /* Uncomment the line below to expanse the "assert_param" macro in the 55 | Standard Peripheral Library drivers code */ 56 | /* #define USE_FULL_ASSERT 1 */ 57 | 58 | /* Exported macro ------------------------------------------------------------*/ 59 | #ifdef USE_FULL_ASSERT 60 | /** 61 | * @brief The assert_param macro is used for function's parameters check. 62 | * @param expr: If expr is false, it calls assert_failed function which reports 63 | * the name of the source file and the source line number of the call 64 | * that failed. If expr is true, it returns no value. 65 | * @retval None 66 | */ 67 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 68 | /* Exported functions ------------------------------------------------------- */ 69 | void assert_failed(uint8_t* file, uint32_t line); 70 | #else 71 | #define assert_param(expr) ((void)0) 72 | #endif /* USE_FULL_ASSERT */ 73 | 74 | #endif /* __STM32F10x_CONF_H */ 75 | 76 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 77 | -------------------------------------------------------------------------------- /Main/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Main/stm32f10x_it.c -------------------------------------------------------------------------------- /Main/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file USART/Printf/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief This file contains the headers of the interrupt handlers. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_IT_H 24 | #define __STM32F10x_IT_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | #include "stm32f10x.h" 28 | 29 | /* Exported types ------------------------------------------------------------*/ 30 | /* Exported constants --------------------------------------------------------*/ 31 | /* Exported macro ------------------------------------------------------------*/ 32 | /* Exported functions ------------------------------------------------------- */ 33 | 34 | void NMI_Handler(void); 35 | void HardFault_Handler(void); 36 | void MemManage_Handler(void); 37 | void BusFault_Handler(void); 38 | void UsageFault_Handler(void); 39 | void SVC_Handler(void); 40 | void DebugMon_Handler(void); 41 | void PendSV_Handler(void); 42 | void SysTick_Handler(void); 43 | 44 | #endif /* __STM32F10x_IT_H */ 45 | 46 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 47 | -------------------------------------------------------------------------------- /Out/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /Out/Project.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/Project.axf -------------------------------------------------------------------------------- /Out/Project.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 ".\out\core_cm3.o" ".\out\system_stm32f10x.o" ".\out\misc.o" ".\out\stm32f10x_adc.o" ".\out\stm32f10x_bkp.o" ".\out\stm32f10x_can.o" ".\out\stm32f10x_cec.o" ".\out\stm32f10x_crc.o" ".\out\stm32f10x_dac.o" ".\out\stm32f10x_dbgmcu.o" ".\out\stm32f10x_dma.o" ".\out\stm32f10x_exti.o" ".\out\stm32f10x_flash.o" ".\out\stm32f10x_fsmc.o" ".\out\stm32f10x_gpio.o" ".\out\stm32f10x_i2c.o" ".\out\stm32f10x_iwdg.o" ".\out\stm32f10x_pwr.o" ".\out\stm32f10x_rcc.o" ".\out\stm32f10x_rtc.o" ".\out\stm32f10x_sdio.o" ".\out\stm32f10x_spi.o" ".\out\stm32f10x_tim.o" ".\out\stm32f10x_usart.o" ".\out\stm32f10x_wwdg.o" ".\out\startup_stm32f10x_hd.o" ".\out\main.o" ".\out\stm32f10x_it.o" ".\out\bsp.o" ".\out\console.o" ".\out\delay.o" ".\out\usart.o" ".\out\led.o" ".\out\os_app_hooks.o" ".\out\cpu_a.o" ".\out\cpu_c.o" ".\out\cpu_core.o" ".\out\os_cpu_a.o" ".\out\os_cpu_c.o" ".\out\os_cfg_app.o" ".\out\os_core.o" ".\out\os_dbg.o" ".\out\os_flag.o" ".\out\os_int.o" ".\out\os_mem.o" ".\out\os_msg.o" ".\out\os_mutex.o" ".\out\os_pend_multi.o" ".\out\os_prio.o" ".\out\os_q.o" ".\out\os_sem.o" ".\out\os_stat.o" ".\out\os_task.o" ".\out\os_tick.o" ".\out\os_time.o" ".\out\os_tmr.o" ".\out\os_var.o" ".\out\lib_ascii.o" ".\out\lib_math.o" ".\out\lib_mem.o" ".\out\lib_str.o" ".\out\task.o" 2 | --library_type=microlib --strict --scatter ".\Out\Project.sct" 3 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 4 | --info sizes --info totals --info unused --info veneers 5 | --list ".\Out\Project.map" -o .\Out\Project.axf -------------------------------------------------------------------------------- /Out/Project.plg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/Project.plg -------------------------------------------------------------------------------- /Out/Project.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | } 11 | RW_IRAM1 0x20000000 0x00010000 { ; RW data 12 | .ANY (+RW +ZI) 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Out/Project.tra: -------------------------------------------------------------------------------- 1 | *** Creating Trace Output File '.\Out\Project.tra' Ok. 2 | ### Preparing for ADS-LD. 3 | ### Creating ADS-LD Command Line 4 | ### List of Objects: adding '".\out\core_cm3.o"' 5 | ### List of Objects: adding '".\out\system_stm32f10x.o"' 6 | ### List of Objects: adding '".\out\misc.o"' 7 | ### List of Objects: adding '".\out\stm32f10x_adc.o"' 8 | ### List of Objects: adding '".\out\stm32f10x_bkp.o"' 9 | ### List of Objects: adding '".\out\stm32f10x_can.o"' 10 | ### List of Objects: adding '".\out\stm32f10x_cec.o"' 11 | ### List of Objects: adding '".\out\stm32f10x_crc.o"' 12 | ### List of Objects: adding '".\out\stm32f10x_dac.o"' 13 | ### List of Objects: adding '".\out\stm32f10x_dbgmcu.o"' 14 | ### List of Objects: adding '".\out\stm32f10x_dma.o"' 15 | ### List of Objects: adding '".\out\stm32f10x_exti.o"' 16 | ### List of Objects: adding '".\out\stm32f10x_flash.o"' 17 | ### List of Objects: adding '".\out\stm32f10x_fsmc.o"' 18 | ### List of Objects: adding '".\out\stm32f10x_gpio.o"' 19 | ### List of Objects: adding '".\out\stm32f10x_i2c.o"' 20 | ### List of Objects: adding '".\out\stm32f10x_iwdg.o"' 21 | ### List of Objects: adding '".\out\stm32f10x_pwr.o"' 22 | ### List of Objects: adding '".\out\stm32f10x_rcc.o"' 23 | ### List of Objects: adding '".\out\stm32f10x_rtc.o"' 24 | ### List of Objects: adding '".\out\stm32f10x_sdio.o"' 25 | ### List of Objects: adding '".\out\stm32f10x_spi.o"' 26 | ### List of Objects: adding '".\out\stm32f10x_tim.o"' 27 | ### List of Objects: adding '".\out\stm32f10x_usart.o"' 28 | ### List of Objects: adding '".\out\stm32f10x_wwdg.o"' 29 | ### List of Objects: adding '".\out\startup_stm32f10x_hd.o"' 30 | ### List of Objects: adding '".\out\main.o"' 31 | ### List of Objects: adding '".\out\stm32f10x_it.o"' 32 | ### List of Objects: adding '".\out\bsp.o"' 33 | ### List of Objects: adding '".\out\console.o"' 34 | ### List of Objects: adding '".\out\delay.o"' 35 | ### List of Objects: adding '".\out\usart.o"' 36 | ### List of Objects: adding '".\out\led.o"' 37 | ### List of Objects: adding '".\out\os_app_hooks.o"' 38 | ### List of Objects: adding '".\out\cpu_a.o"' 39 | ### List of Objects: adding '".\out\cpu_c.o"' 40 | ### List of Objects: adding '".\out\cpu_core.o"' 41 | ### List of Objects: adding '".\out\os_cpu_a.o"' 42 | ### List of Objects: adding '".\out\os_cpu_c.o"' 43 | ### List of Objects: adding '".\out\os_cfg_app.o"' 44 | ### List of Objects: adding '".\out\os_core.o"' 45 | ### List of Objects: adding '".\out\os_dbg.o"' 46 | ### List of Objects: adding '".\out\os_flag.o"' 47 | ### List of Objects: adding '".\out\os_int.o"' 48 | ### List of Objects: adding '".\out\os_mem.o"' 49 | ### List of Objects: adding '".\out\os_msg.o"' 50 | ### List of Objects: adding '".\out\os_mutex.o"' 51 | ### List of Objects: adding '".\out\os_pend_multi.o"' 52 | ### List of Objects: adding '".\out\os_prio.o"' 53 | ### List of Objects: adding '".\out\os_q.o"' 54 | ### List of Objects: adding '".\out\os_sem.o"' 55 | ### List of Objects: adding '".\out\os_stat.o"' 56 | ### List of Objects: adding '".\out\os_task.o"' 57 | ### List of Objects: adding '".\out\os_tick.o"' 58 | ### List of Objects: adding '".\out\os_time.o"' 59 | ### List of Objects: adding '".\out\os_tmr.o"' 60 | ### List of Objects: adding '".\out\os_var.o"' 61 | ### List of Objects: adding '".\out\lib_ascii.o"' 62 | ### List of Objects: adding '".\out\lib_math.o"' 63 | ### List of Objects: adding '".\out\lib_mem.o"' 64 | ### List of Objects: adding '".\out\lib_str.o"' 65 | ### List of Objects: adding '".\out\task.o"' 66 | ### ADS-LD Command completed: 67 | --cpu Cortex-M3 ".\out\core_cm3.o" ".\out\system_stm32f10x.o" ".\out\misc.o" ".\out\stm32f10x_adc.o" ".\out\stm32f10x_bkp.o" ".\out\stm32f10x_can.o" ".\out\stm32f10x_cec.o" ".\out\stm32f10x_crc.o" ".\out\stm32f10x_dac.o" ".\out\stm32f10x_dbgmcu.o" ".\out\stm32f10x_dma.o" ".\out\stm32f10x_exti.o" ".\out\stm32f10x_flash.o" ".\out\stm32f10x_fsmc.o" ".\out\stm32f10x_gpio.o" ".\out\stm32f10x_i2c.o" ".\out\stm32f10x_iwdg.o" ".\out\stm32f10x_pwr.o" ".\out\stm32f10x_rcc.o" ".\out\stm32f10x_rtc.o" ".\out\stm32f10x_sdio.o" ".\out\stm32f10x_spi.o" ".\out\stm32f10x_tim.o" ".\out\stm32f10x_usart.o" ".\out\stm32f10x_wwdg.o" ".\out\startup_stm32f10x_hd.o" ".\out\main.o" ".\out\stm32f10x_it.o" ".\out\bsp.o" ".\out\console.o" ".\out\delay.o" ".\out\usart.o" ".\out\led.o" ".\out\os_app_hooks.o" ".\out\cpu_a.o" ".\out\cpu_c.o" ".\out\cpu_core.o" ".\out\os_cpu_a.o" ".\out\os_cpu_c.o" ".\out\os_cfg_app.o" ".\out\os_core.o" ".\out\os_dbg.o" ".\out\os_flag.o" ".\out\os_int.o" ".\out\os_mem.o" ".\out\os_msg.o" ".\out\os_mutex.o" ".\out\os_pend_multi.o" ".\out\os_prio.o" ".\out\os_q.o" ".\out\os_sem.o" ".\out\os_stat.o" ".\out\os_task.o" ".\out\os_tick.o" ".\out\os_time.o" ".\out\os_tmr.o" ".\out\os_var.o" ".\out\lib_ascii.o" ".\out\lib_math.o" ".\out\lib_mem.o" ".\out\lib_str.o" ".\out\task.o" 68 | --library_type=microlib --strict --scatter ".\Out\Project.sct" 69 | --summary_stderr --info summarysizes --map --xref --callgraph --symbols 70 | --info sizes --info totals --info unused --info veneers 71 | --list ".\Out\Project.map" -o .\Out\Project.axf### Preparing Environment (PrepEnvAds) 72 | ### ADS-LD Output File: '.\Out\Project.axf' 73 | ### ADS-LD Command File: '.\Out\Project.lnp' 74 | ### Checking for dirty Components... 75 | ### Creating CmdFile '.\Out\Project.lnp', Handle=0x000001A4 76 | ### Writing '.lnp' file 77 | ### ADS-LD Command file '.\Out\Project.lnp' is ready. 78 | ### ADS-LD: About to start ADS-LD Thread. 79 | ### ADS-LD: executed with 0 errors 80 | ### Updating obj list 81 | ### LDADS_file() completed. 82 | -------------------------------------------------------------------------------- /Out/Project_sct.Bak: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00020000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00020000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | } 11 | RW_IRAM1 0x20000000 0x00005000 { ; RW data 12 | .ANY (+RW +ZI) 13 | } 14 | } 15 | 16 | -------------------------------------------------------------------------------- /Out/bsp.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\bsp.o" --omf_browse ".\Out\bsp.crf" --depend ".\Out\bsp.d" "Main\bsp.c" -------------------------------------------------------------------------------- /Out/bsp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/bsp.crf -------------------------------------------------------------------------------- /Out/bsp.d: -------------------------------------------------------------------------------- 1 | .\Out\bsp.o: Main\bsp.c 2 | .\Out\bsp.o: .\Main\bsp.h 3 | .\Out\bsp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 4 | .\Out\bsp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 5 | .\Out\bsp.o: .\uCOS\CPU\cpu.h 6 | .\Out\bsp.o: .\uCOS\CPU\cpu_def.h 7 | .\Out\bsp.o: .\uCOS\CPU\cpu_cfg.h 8 | .\Out\bsp.o: .\uCOS\CPU\cpu_core.h 9 | .\Out\bsp.o: .\uCOS\LIB\lib_def.h 10 | .\Out\bsp.o: .\uCOS\LIB\lib_mem.h 11 | .\Out\bsp.o: .\uCOS\CPU\cpu_core.h 12 | .\Out\bsp.o: .\Main\app_cfg.h 13 | .\Out\bsp.o: .\uCOS\LIB\lib_cfg.h 14 | .\Out\bsp.o: .\uCOS\LIB\lib_str.h 15 | .\Out\bsp.o: .\uCOS\LIB\lib_ascii.h 16 | .\Out\bsp.o: .\Libraries\CMSIS\stm32f10x.h 17 | .\Out\bsp.o: .\Libraries\CMSIS\core_cm3.h 18 | .\Out\bsp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 19 | .\Out\bsp.o: .\Libraries\CMSIS\system_stm32f10x.h 20 | .\Out\bsp.o: .\Main\stm32f10x_conf.h 21 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 22 | .\Out\bsp.o: .\Libraries\CMSIS\stm32f10x.h 23 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 24 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 25 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 26 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 27 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 28 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 29 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 30 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 31 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 32 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 33 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 34 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 35 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 36 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 37 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 38 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 39 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 40 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 41 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 42 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 43 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 44 | .\Out\bsp.o: .\Libraries\StdPeriph_Driver\misc.h 45 | .\Out\bsp.o: .\Main\includes.h 46 | .\Out\bsp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 47 | .\Out\bsp.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 48 | .\Out\bsp.o: .\uCOS\LIB\lib_math.h 49 | .\Out\bsp.o: .\uCOS\Source\os.h 50 | .\Out\bsp.o: .\uCOS\Cfg\os_cfg.h 51 | .\Out\bsp.o: .\uCOS\Source\os_type.h 52 | .\Out\bsp.o: .\uCOS\Ports\os_cpu.h 53 | .\Out\bsp.o: .\uCOS\Cfg\os_app_hooks.h 54 | .\Out\bsp.o: .\Hardware\usart.h 55 | .\Out\bsp.o: .\Hardware\led.h 56 | .\Out\bsp.o: .\Hardware\delay.h 57 | .\Out\bsp.o: .\Application\task.h 58 | .\Out\bsp.o: Main\console.h 59 | -------------------------------------------------------------------------------- /Out/bsp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/bsp.o -------------------------------------------------------------------------------- /Out/console.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\console.o" --omf_browse ".\Out\console.crf" --depend ".\Out\console.d" "Main\console.c" -------------------------------------------------------------------------------- /Out/console.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/console.crf -------------------------------------------------------------------------------- /Out/console.d: -------------------------------------------------------------------------------- 1 | .\Out\console.o: Main\console.c 2 | .\Out\console.o: .\Main\includes.h 3 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 4 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 5 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 6 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 7 | .\Out\console.o: .\uCOS\CPU\cpu.h 8 | .\Out\console.o: .\uCOS\CPU\cpu_def.h 9 | .\Out\console.o: .\uCOS\CPU\cpu_cfg.h 10 | .\Out\console.o: .\uCOS\LIB\lib_def.h 11 | .\Out\console.o: .\uCOS\LIB\lib_ascii.h 12 | .\Out\console.o: .\uCOS\LIB\lib_math.h 13 | .\Out\console.o: .\uCOS\CPU\cpu_core.h 14 | .\Out\console.o: .\uCOS\LIB\lib_mem.h 15 | .\Out\console.o: .\uCOS\CPU\cpu_core.h 16 | .\Out\console.o: .\Main\app_cfg.h 17 | .\Out\console.o: .\uCOS\LIB\lib_cfg.h 18 | .\Out\console.o: .\uCOS\LIB\lib_str.h 19 | .\Out\console.o: .\uCOS\Source\os.h 20 | .\Out\console.o: .\uCOS\Cfg\os_cfg.h 21 | .\Out\console.o: .\uCOS\Source\os_type.h 22 | .\Out\console.o: .\uCOS\Ports\os_cpu.h 23 | .\Out\console.o: .\Libraries\CMSIS\stm32f10x.h 24 | .\Out\console.o: .\Libraries\CMSIS\core_cm3.h 25 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 26 | .\Out\console.o: .\Libraries\CMSIS\system_stm32f10x.h 27 | .\Out\console.o: .\Main\stm32f10x_conf.h 28 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 29 | .\Out\console.o: .\Libraries\CMSIS\stm32f10x.h 30 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 31 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 32 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 33 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 34 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 35 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 36 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 37 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 38 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 39 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 40 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 41 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 42 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 43 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 44 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 45 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 46 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 47 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 48 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 49 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 50 | .\Out\console.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 51 | .\Out\console.o: .\Libraries\StdPeriph_Driver\misc.h 52 | .\Out\console.o: .\uCOS\Cfg\os_app_hooks.h 53 | .\Out\console.o: .\Hardware\usart.h 54 | .\Out\console.o: .\Hardware\led.h 55 | .\Out\console.o: .\Hardware\delay.h 56 | .\Out\console.o: .\Application\task.h 57 | .\Out\console.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h 58 | .\Out\console.o: Main\console.h 59 | -------------------------------------------------------------------------------- /Out/console.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/console.o -------------------------------------------------------------------------------- /Out/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/core_cm3.crf -------------------------------------------------------------------------------- /Out/core_cm3.d: -------------------------------------------------------------------------------- 1 | .\Out\core_cm3.o: Libraries\CMSIS\core_cm3.c 2 | .\Out\core_cm3.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 3 | -------------------------------------------------------------------------------- /Out/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/core_cm3.o -------------------------------------------------------------------------------- /Out/cpu_a.d: -------------------------------------------------------------------------------- 1 | .\Out\cpu_a.o: uCOS\CPU\cpu_a.asm 2 | -------------------------------------------------------------------------------- /Out/cpu_a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/cpu_a.o -------------------------------------------------------------------------------- /Out/cpu_c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/cpu_c.crf -------------------------------------------------------------------------------- /Out/cpu_c.d: -------------------------------------------------------------------------------- 1 | .\Out\cpu_c.o: uCOS\CPU\cpu_c.c 2 | .\Out\cpu_c.o: .\uCOS\CPU\cpu.h 3 | .\Out\cpu_c.o: .\uCOS\CPU\cpu_def.h 4 | .\Out\cpu_c.o: .\uCOS\CPU\cpu_cfg.h 5 | .\Out\cpu_c.o: .\uCOS\CPU\cpu_core.h 6 | .\Out\cpu_c.o: .\uCOS\LIB\lib_def.h 7 | .\Out\cpu_c.o: .\uCOS\LIB\lib_mem.h 8 | .\Out\cpu_c.o: .\uCOS\CPU\cpu_core.h 9 | .\Out\cpu_c.o: .\Main\app_cfg.h 10 | .\Out\cpu_c.o: .\uCOS\LIB\lib_cfg.h 11 | .\Out\cpu_c.o: .\uCOS\LIB\lib_str.h 12 | .\Out\cpu_c.o: .\uCOS\LIB\lib_ascii.h 13 | -------------------------------------------------------------------------------- /Out/cpu_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/cpu_c.o -------------------------------------------------------------------------------- /Out/cpu_core.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/cpu_core.crf -------------------------------------------------------------------------------- /Out/cpu_core.d: -------------------------------------------------------------------------------- 1 | .\Out\cpu_core.o: uCOS\CPU\cpu_core.c 2 | .\Out\cpu_core.o: .\uCOS\CPU\cpu_core.h 3 | .\Out\cpu_core.o: .\uCOS\CPU\cpu.h 4 | .\Out\cpu_core.o: .\uCOS\CPU\cpu_def.h 5 | .\Out\cpu_core.o: .\uCOS\CPU\cpu_cfg.h 6 | .\Out\cpu_core.o: .\uCOS\LIB\lib_def.h 7 | .\Out\cpu_core.o: .\uCOS\LIB\lib_mem.h 8 | .\Out\cpu_core.o: .\uCOS\CPU\cpu_core.h 9 | .\Out\cpu_core.o: .\Main\app_cfg.h 10 | .\Out\cpu_core.o: .\uCOS\LIB\lib_cfg.h 11 | .\Out\cpu_core.o: .\uCOS\LIB\lib_str.h 12 | .\Out\cpu_core.o: .\uCOS\LIB\lib_ascii.h 13 | -------------------------------------------------------------------------------- /Out/cpu_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/cpu_core.o -------------------------------------------------------------------------------- /Out/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/delay.crf -------------------------------------------------------------------------------- /Out/delay.d: -------------------------------------------------------------------------------- 1 | .\Out\delay.o: Hardware\delay.c 2 | .\Out\delay.o: Hardware\delay.h 3 | .\Out\delay.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\delay.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\delay.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\delay.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\delay.o: .\Main\stm32f10x_conf.h 8 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\delay.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\delay.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/delay.o -------------------------------------------------------------------------------- /Out/led.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\led.o" --omf_browse ".\Out\led.crf" --depend ".\Out\led.d" "Hardware\led.c" -------------------------------------------------------------------------------- /Out/led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/led.crf -------------------------------------------------------------------------------- /Out/led.d: -------------------------------------------------------------------------------- 1 | .\Out\led.o: Hardware\led.c 2 | .\Out\led.o: Hardware\led.h 3 | .\Out\led.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\led.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\led.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\led.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\led.o: .\Main\stm32f10x_conf.h 8 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\led.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\led.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\led.o: .\Libraries\StdPeriph_Driver\misc.h 32 | .\Out\led.o: Hardware\delay.h 33 | -------------------------------------------------------------------------------- /Out/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/led.o -------------------------------------------------------------------------------- /Out/lib_ascii.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_ascii.crf -------------------------------------------------------------------------------- /Out/lib_ascii.d: -------------------------------------------------------------------------------- 1 | .\Out\lib_ascii.o: uCOS\LIB\lib_ascii.c 2 | .\Out\lib_ascii.o: .\uCOS\LIB\lib_ascii.h 3 | .\Out\lib_ascii.o: .\uCOS\CPU\cpu.h 4 | .\Out\lib_ascii.o: .\uCOS\CPU\cpu_def.h 5 | .\Out\lib_ascii.o: .\uCOS\CPU\cpu_cfg.h 6 | .\Out\lib_ascii.o: .\uCOS\LIB\lib_def.h 7 | -------------------------------------------------------------------------------- /Out/lib_ascii.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_ascii.o -------------------------------------------------------------------------------- /Out/lib_math.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_math.crf -------------------------------------------------------------------------------- /Out/lib_math.d: -------------------------------------------------------------------------------- 1 | .\Out\lib_math.o: uCOS\LIB\lib_math.c 2 | .\Out\lib_math.o: .\uCOS\LIB\lib_math.h 3 | .\Out\lib_math.o: .\uCOS\CPU\cpu.h 4 | .\Out\lib_math.o: .\uCOS\CPU\cpu_def.h 5 | .\Out\lib_math.o: .\uCOS\CPU\cpu_cfg.h 6 | .\Out\lib_math.o: .\uCOS\CPU\cpu_core.h 7 | .\Out\lib_math.o: .\uCOS\LIB\lib_def.h 8 | .\Out\lib_math.o: .\uCOS\LIB\lib_mem.h 9 | .\Out\lib_math.o: .\uCOS\CPU\cpu_core.h 10 | .\Out\lib_math.o: .\Main\app_cfg.h 11 | .\Out\lib_math.o: .\uCOS\LIB\lib_cfg.h 12 | .\Out\lib_math.o: .\uCOS\LIB\lib_str.h 13 | .\Out\lib_math.o: .\uCOS\LIB\lib_ascii.h 14 | -------------------------------------------------------------------------------- /Out/lib_math.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_math.o -------------------------------------------------------------------------------- /Out/lib_mem.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_mem.crf -------------------------------------------------------------------------------- /Out/lib_mem.d: -------------------------------------------------------------------------------- 1 | .\Out\lib_mem.o: uCOS\LIB\lib_mem.c 2 | .\Out\lib_mem.o: .\uCOS\LIB\lib_mem.h 3 | .\Out\lib_mem.o: .\uCOS\CPU\cpu.h 4 | .\Out\lib_mem.o: .\uCOS\CPU\cpu_def.h 5 | .\Out\lib_mem.o: .\uCOS\CPU\cpu_cfg.h 6 | .\Out\lib_mem.o: .\uCOS\CPU\cpu_core.h 7 | .\Out\lib_mem.o: .\uCOS\LIB\lib_def.h 8 | .\Out\lib_mem.o: .\uCOS\LIB\lib_mem.h 9 | .\Out\lib_mem.o: .\uCOS\LIB\lib_str.h 10 | .\Out\lib_mem.o: .\uCOS\LIB\lib_ascii.h 11 | .\Out\lib_mem.o: .\Main\app_cfg.h 12 | .\Out\lib_mem.o: .\uCOS\LIB\lib_cfg.h 13 | -------------------------------------------------------------------------------- /Out/lib_mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_mem.o -------------------------------------------------------------------------------- /Out/lib_str.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_str.crf -------------------------------------------------------------------------------- /Out/lib_str.d: -------------------------------------------------------------------------------- 1 | .\Out\lib_str.o: uCOS\LIB\lib_str.c 2 | .\Out\lib_str.o: .\uCOS\LIB\lib_str.h 3 | .\Out\lib_str.o: .\uCOS\CPU\cpu.h 4 | .\Out\lib_str.o: .\uCOS\CPU\cpu_def.h 5 | .\Out\lib_str.o: .\uCOS\CPU\cpu_cfg.h 6 | .\Out\lib_str.o: .\uCOS\LIB\lib_def.h 7 | .\Out\lib_str.o: .\uCOS\LIB\lib_ascii.h 8 | .\Out\lib_str.o: .\Main\app_cfg.h 9 | .\Out\lib_str.o: .\uCOS\LIB\lib_cfg.h 10 | -------------------------------------------------------------------------------- /Out/lib_str.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/lib_str.o -------------------------------------------------------------------------------- /Out/main.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\main.o" --omf_browse ".\Out\main.crf" --depend ".\Out\main.d" "Main\main.c" -------------------------------------------------------------------------------- /Out/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/main.crf -------------------------------------------------------------------------------- /Out/main.d: -------------------------------------------------------------------------------- 1 | .\Out\main.o: Main\main.c 2 | .\Out\main.o: Main\includes.h 3 | .\Out\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 4 | .\Out\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 5 | .\Out\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 6 | .\Out\main.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 7 | .\Out\main.o: .\uCOS\CPU\cpu.h 8 | .\Out\main.o: .\uCOS\CPU\cpu_def.h 9 | .\Out\main.o: .\uCOS\CPU\cpu_cfg.h 10 | .\Out\main.o: .\uCOS\LIB\lib_def.h 11 | .\Out\main.o: .\uCOS\LIB\lib_ascii.h 12 | .\Out\main.o: .\uCOS\LIB\lib_math.h 13 | .\Out\main.o: .\uCOS\CPU\cpu_core.h 14 | .\Out\main.o: .\uCOS\LIB\lib_mem.h 15 | .\Out\main.o: .\uCOS\CPU\cpu_core.h 16 | .\Out\main.o: .\Main\app_cfg.h 17 | .\Out\main.o: .\uCOS\LIB\lib_cfg.h 18 | .\Out\main.o: .\uCOS\LIB\lib_str.h 19 | .\Out\main.o: .\uCOS\Source\os.h 20 | .\Out\main.o: .\uCOS\Cfg\os_cfg.h 21 | .\Out\main.o: .\uCOS\Source\os_type.h 22 | .\Out\main.o: .\uCOS\Ports\os_cpu.h 23 | .\Out\main.o: .\Libraries\CMSIS\stm32f10x.h 24 | .\Out\main.o: .\Libraries\CMSIS\core_cm3.h 25 | .\Out\main.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 26 | .\Out\main.o: .\Libraries\CMSIS\system_stm32f10x.h 27 | .\Out\main.o: .\Main\stm32f10x_conf.h 28 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 29 | .\Out\main.o: .\Libraries\CMSIS\stm32f10x.h 30 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 31 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 32 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 33 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 34 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 35 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 36 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 37 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 38 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 39 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 40 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 41 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 42 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 43 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 44 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 45 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 46 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 47 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 48 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 49 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 50 | .\Out\main.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 51 | .\Out\main.o: .\Libraries\StdPeriph_Driver\misc.h 52 | .\Out\main.o: .\uCOS\Cfg\os_app_hooks.h 53 | .\Out\main.o: .\Hardware\usart.h 54 | .\Out\main.o: .\Hardware\led.h 55 | .\Out\main.o: .\Hardware\delay.h 56 | .\Out\main.o: .\Application\task.h 57 | .\Out\main.o: Main\bsp.h 58 | -------------------------------------------------------------------------------- /Out/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/main.o -------------------------------------------------------------------------------- /Out/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/misc.crf -------------------------------------------------------------------------------- /Out/misc.d: -------------------------------------------------------------------------------- 1 | .\Out\misc.o: Libraries\StdPeriph_Driver\misc.c 2 | .\Out\misc.o: Libraries\StdPeriph_Driver\misc.h 3 | .\Out\misc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\misc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\misc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\misc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\misc.o: .\Main\stm32f10x_conf.h 8 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\misc.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\misc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/misc.o -------------------------------------------------------------------------------- /Out/os_app_hooks.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\os_app_hooks.o" --omf_browse ".\Out\os_app_hooks.crf" --depend ".\Out\os_app_hooks.d" "uCOS\Cfg\os_app_hooks.c" -------------------------------------------------------------------------------- /Out/os_app_hooks.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_app_hooks.crf -------------------------------------------------------------------------------- /Out/os_app_hooks.d: -------------------------------------------------------------------------------- 1 | .\Out\os_app_hooks.o: uCOS\Cfg\os_app_hooks.c 2 | .\Out\os_app_hooks.o: .\uCOS\Source\os.h 3 | .\Out\os_app_hooks.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_app_hooks.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_app_hooks.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_app_hooks.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_app_hooks.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_app_hooks.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_app_hooks.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_app_hooks.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_app_hooks.o: .\Main\app_cfg.h 12 | .\Out\os_app_hooks.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_app_hooks.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_app_hooks.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_app_hooks.o: .\uCOS\Source\os_type.h 16 | .\Out\os_app_hooks.o: .\uCOS\Ports\os_cpu.h 17 | .\Out\os_app_hooks.o: .\uCOS\Cfg\os_app_hooks.h 18 | .\Out\os_app_hooks.o: .\Hardware\led.h 19 | .\Out\os_app_hooks.o: .\Libraries\CMSIS\stm32f10x.h 20 | .\Out\os_app_hooks.o: .\Libraries\CMSIS\core_cm3.h 21 | .\Out\os_app_hooks.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 22 | .\Out\os_app_hooks.o: .\Libraries\CMSIS\system_stm32f10x.h 23 | .\Out\os_app_hooks.o: .\Main\stm32f10x_conf.h 24 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 25 | .\Out\os_app_hooks.o: .\Libraries\CMSIS\stm32f10x.h 26 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 27 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 28 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 29 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 30 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 31 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 32 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 33 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 34 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 35 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 36 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 37 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 38 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 39 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 40 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 41 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 42 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 43 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 44 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 45 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 46 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 47 | .\Out\os_app_hooks.o: .\Libraries\StdPeriph_Driver\misc.h 48 | -------------------------------------------------------------------------------- /Out/os_app_hooks.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_app_hooks.o -------------------------------------------------------------------------------- /Out/os_cfg_app.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_cfg_app.crf -------------------------------------------------------------------------------- /Out/os_cfg_app.d: -------------------------------------------------------------------------------- 1 | .\Out\os_cfg_app.o: uCOS\Source\os_cfg_app.c 2 | .\Out\os_cfg_app.o: .\uCOS\Cfg\os_cfg_app.h 3 | .\Out\os_cfg_app.o: .\uCOS\Source\os.h 4 | .\Out\os_cfg_app.o: .\uCOS\Cfg\os_cfg.h 5 | .\Out\os_cfg_app.o: .\uCOS\CPU\cpu.h 6 | .\Out\os_cfg_app.o: .\uCOS\CPU\cpu_def.h 7 | .\Out\os_cfg_app.o: .\uCOS\CPU\cpu_cfg.h 8 | .\Out\os_cfg_app.o: .\uCOS\CPU\cpu_core.h 9 | .\Out\os_cfg_app.o: .\uCOS\LIB\lib_def.h 10 | .\Out\os_cfg_app.o: .\uCOS\LIB\lib_mem.h 11 | .\Out\os_cfg_app.o: .\uCOS\CPU\cpu_core.h 12 | .\Out\os_cfg_app.o: .\Main\app_cfg.h 13 | .\Out\os_cfg_app.o: .\uCOS\LIB\lib_cfg.h 14 | .\Out\os_cfg_app.o: .\uCOS\LIB\lib_str.h 15 | .\Out\os_cfg_app.o: .\uCOS\LIB\lib_ascii.h 16 | .\Out\os_cfg_app.o: .\uCOS\Source\os_type.h 17 | .\Out\os_cfg_app.o: .\uCOS\Ports\os_cpu.h 18 | -------------------------------------------------------------------------------- /Out/os_cfg_app.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_cfg_app.o -------------------------------------------------------------------------------- /Out/os_core.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_core.crf -------------------------------------------------------------------------------- /Out/os_core.d: -------------------------------------------------------------------------------- 1 | .\Out\os_core.o: uCOS\Source\os_core.c 2 | .\Out\os_core.o: .\uCOS\Source\os.h 3 | .\Out\os_core.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_core.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_core.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_core.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_core.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_core.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_core.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_core.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_core.o: .\Main\app_cfg.h 12 | .\Out\os_core.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_core.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_core.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_core.o: .\uCOS\Source\os_type.h 16 | .\Out\os_core.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_core.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_core.o -------------------------------------------------------------------------------- /Out/os_cpu_a.d: -------------------------------------------------------------------------------- 1 | .\Out\os_cpu_a.o: uCOS\Ports\os_cpu_a.asm 2 | -------------------------------------------------------------------------------- /Out/os_cpu_a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_cpu_a.o -------------------------------------------------------------------------------- /Out/os_cpu_c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_cpu_c.crf -------------------------------------------------------------------------------- /Out/os_cpu_c.d: -------------------------------------------------------------------------------- 1 | .\Out\os_cpu_c.o: uCOS\Ports\os_cpu_c.c 2 | .\Out\os_cpu_c.o: .\uCOS\Source\os.h 3 | .\Out\os_cpu_c.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_cpu_c.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_cpu_c.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_cpu_c.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_cpu_c.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_cpu_c.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_cpu_c.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_cpu_c.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_cpu_c.o: .\Main\app_cfg.h 12 | .\Out\os_cpu_c.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_cpu_c.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_cpu_c.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_cpu_c.o: .\uCOS\Source\os_type.h 16 | .\Out\os_cpu_c.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_cpu_c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_cpu_c.o -------------------------------------------------------------------------------- /Out/os_dbg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_dbg.crf -------------------------------------------------------------------------------- /Out/os_dbg.d: -------------------------------------------------------------------------------- 1 | .\Out\os_dbg.o: uCOS\Source\os_dbg.c 2 | .\Out\os_dbg.o: .\uCOS\Source\os.h 3 | .\Out\os_dbg.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_dbg.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_dbg.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_dbg.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_dbg.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_dbg.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_dbg.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_dbg.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_dbg.o: .\Main\app_cfg.h 12 | .\Out\os_dbg.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_dbg.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_dbg.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_dbg.o: .\uCOS\Source\os_type.h 16 | .\Out\os_dbg.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_dbg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_dbg.o -------------------------------------------------------------------------------- /Out/os_flag.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_flag.crf -------------------------------------------------------------------------------- /Out/os_flag.d: -------------------------------------------------------------------------------- 1 | .\Out\os_flag.o: uCOS\Source\os_flag.c 2 | .\Out\os_flag.o: .\uCOS\Source\os.h 3 | .\Out\os_flag.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_flag.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_flag.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_flag.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_flag.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_flag.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_flag.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_flag.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_flag.o: .\Main\app_cfg.h 12 | .\Out\os_flag.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_flag.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_flag.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_flag.o: .\uCOS\Source\os_type.h 16 | .\Out\os_flag.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_flag.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_flag.o -------------------------------------------------------------------------------- /Out/os_int.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_int.crf -------------------------------------------------------------------------------- /Out/os_int.d: -------------------------------------------------------------------------------- 1 | .\Out\os_int.o: uCOS\Source\os_int.c 2 | .\Out\os_int.o: .\uCOS\Source\os.h 3 | .\Out\os_int.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_int.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_int.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_int.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_int.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_int.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_int.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_int.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_int.o: .\Main\app_cfg.h 12 | .\Out\os_int.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_int.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_int.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_int.o: .\uCOS\Source\os_type.h 16 | .\Out\os_int.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_int.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_int.o -------------------------------------------------------------------------------- /Out/os_mem.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_mem.crf -------------------------------------------------------------------------------- /Out/os_mem.d: -------------------------------------------------------------------------------- 1 | .\Out\os_mem.o: uCOS\Source\os_mem.c 2 | .\Out\os_mem.o: .\uCOS\Source\os.h 3 | .\Out\os_mem.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_mem.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_mem.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_mem.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_mem.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_mem.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_mem.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_mem.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_mem.o: .\Main\app_cfg.h 12 | .\Out\os_mem.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_mem.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_mem.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_mem.o: .\uCOS\Source\os_type.h 16 | .\Out\os_mem.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_mem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_mem.o -------------------------------------------------------------------------------- /Out/os_msg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_msg.crf -------------------------------------------------------------------------------- /Out/os_msg.d: -------------------------------------------------------------------------------- 1 | .\Out\os_msg.o: uCOS\Source\os_msg.c 2 | .\Out\os_msg.o: .\uCOS\Source\os.h 3 | .\Out\os_msg.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_msg.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_msg.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_msg.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_msg.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_msg.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_msg.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_msg.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_msg.o: .\Main\app_cfg.h 12 | .\Out\os_msg.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_msg.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_msg.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_msg.o: .\uCOS\Source\os_type.h 16 | .\Out\os_msg.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_msg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_msg.o -------------------------------------------------------------------------------- /Out/os_mutex.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_mutex.crf -------------------------------------------------------------------------------- /Out/os_mutex.d: -------------------------------------------------------------------------------- 1 | .\Out\os_mutex.o: uCOS\Source\os_mutex.c 2 | .\Out\os_mutex.o: .\uCOS\Source\os.h 3 | .\Out\os_mutex.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_mutex.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_mutex.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_mutex.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_mutex.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_mutex.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_mutex.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_mutex.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_mutex.o: .\Main\app_cfg.h 12 | .\Out\os_mutex.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_mutex.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_mutex.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_mutex.o: .\uCOS\Source\os_type.h 16 | .\Out\os_mutex.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_mutex.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_mutex.o -------------------------------------------------------------------------------- /Out/os_pend_multi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_pend_multi.crf -------------------------------------------------------------------------------- /Out/os_pend_multi.d: -------------------------------------------------------------------------------- 1 | .\Out\os_pend_multi.o: uCOS\Source\os_pend_multi.c 2 | .\Out\os_pend_multi.o: .\uCOS\Source\os.h 3 | .\Out\os_pend_multi.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_pend_multi.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_pend_multi.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_pend_multi.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_pend_multi.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_pend_multi.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_pend_multi.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_pend_multi.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_pend_multi.o: .\Main\app_cfg.h 12 | .\Out\os_pend_multi.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_pend_multi.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_pend_multi.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_pend_multi.o: .\uCOS\Source\os_type.h 16 | .\Out\os_pend_multi.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_pend_multi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_pend_multi.o -------------------------------------------------------------------------------- /Out/os_prio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_prio.crf -------------------------------------------------------------------------------- /Out/os_prio.d: -------------------------------------------------------------------------------- 1 | .\Out\os_prio.o: uCOS\Source\os_prio.c 2 | .\Out\os_prio.o: .\uCOS\Source\os.h 3 | .\Out\os_prio.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_prio.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_prio.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_prio.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_prio.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_prio.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_prio.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_prio.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_prio.o: .\Main\app_cfg.h 12 | .\Out\os_prio.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_prio.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_prio.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_prio.o: .\uCOS\Source\os_type.h 16 | .\Out\os_prio.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_prio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_prio.o -------------------------------------------------------------------------------- /Out/os_q.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_q.crf -------------------------------------------------------------------------------- /Out/os_q.d: -------------------------------------------------------------------------------- 1 | .\Out\os_q.o: uCOS\Source\os_q.c 2 | .\Out\os_q.o: .\uCOS\Source\os.h 3 | .\Out\os_q.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_q.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_q.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_q.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_q.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_q.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_q.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_q.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_q.o: .\Main\app_cfg.h 12 | .\Out\os_q.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_q.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_q.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_q.o: .\uCOS\Source\os_type.h 16 | .\Out\os_q.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_q.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_q.o -------------------------------------------------------------------------------- /Out/os_sem.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_sem.crf -------------------------------------------------------------------------------- /Out/os_sem.d: -------------------------------------------------------------------------------- 1 | .\Out\os_sem.o: uCOS\Source\os_sem.c 2 | .\Out\os_sem.o: .\uCOS\Source\os.h 3 | .\Out\os_sem.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_sem.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_sem.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_sem.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_sem.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_sem.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_sem.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_sem.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_sem.o: .\Main\app_cfg.h 12 | .\Out\os_sem.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_sem.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_sem.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_sem.o: .\uCOS\Source\os_type.h 16 | .\Out\os_sem.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_sem.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_sem.o -------------------------------------------------------------------------------- /Out/os_stat.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_stat.crf -------------------------------------------------------------------------------- /Out/os_stat.d: -------------------------------------------------------------------------------- 1 | .\Out\os_stat.o: uCOS\Source\os_stat.c 2 | .\Out\os_stat.o: .\uCOS\Source\os.h 3 | .\Out\os_stat.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_stat.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_stat.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_stat.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_stat.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_stat.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_stat.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_stat.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_stat.o: .\Main\app_cfg.h 12 | .\Out\os_stat.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_stat.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_stat.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_stat.o: .\uCOS\Source\os_type.h 16 | .\Out\os_stat.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_stat.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_stat.o -------------------------------------------------------------------------------- /Out/os_task.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_task.crf -------------------------------------------------------------------------------- /Out/os_task.d: -------------------------------------------------------------------------------- 1 | .\Out\os_task.o: uCOS\Source\os_task.c 2 | .\Out\os_task.o: .\uCOS\Source\os.h 3 | .\Out\os_task.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_task.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_task.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_task.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_task.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_task.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_task.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_task.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_task.o: .\Main\app_cfg.h 12 | .\Out\os_task.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_task.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_task.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_task.o: .\uCOS\Source\os_type.h 16 | .\Out\os_task.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_task.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_task.o -------------------------------------------------------------------------------- /Out/os_tick.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_tick.crf -------------------------------------------------------------------------------- /Out/os_tick.d: -------------------------------------------------------------------------------- 1 | .\Out\os_tick.o: uCOS\Source\os_tick.c 2 | .\Out\os_tick.o: .\uCOS\Source\os.h 3 | .\Out\os_tick.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_tick.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_tick.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_tick.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_tick.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_tick.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_tick.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_tick.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_tick.o: .\Main\app_cfg.h 12 | .\Out\os_tick.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_tick.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_tick.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_tick.o: .\uCOS\Source\os_type.h 16 | .\Out\os_tick.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_tick.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_tick.o -------------------------------------------------------------------------------- /Out/os_time.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_time.crf -------------------------------------------------------------------------------- /Out/os_time.d: -------------------------------------------------------------------------------- 1 | .\Out\os_time.o: uCOS\Source\os_time.c 2 | .\Out\os_time.o: .\uCOS\Source\os.h 3 | .\Out\os_time.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_time.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_time.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_time.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_time.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_time.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_time.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_time.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_time.o: .\Main\app_cfg.h 12 | .\Out\os_time.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_time.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_time.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_time.o: .\uCOS\Source\os_type.h 16 | .\Out\os_time.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_time.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_time.o -------------------------------------------------------------------------------- /Out/os_tmr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_tmr.crf -------------------------------------------------------------------------------- /Out/os_tmr.d: -------------------------------------------------------------------------------- 1 | .\Out\os_tmr.o: uCOS\Source\os_tmr.c 2 | .\Out\os_tmr.o: .\uCOS\Source\os.h 3 | .\Out\os_tmr.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_tmr.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_tmr.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_tmr.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_tmr.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_tmr.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_tmr.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_tmr.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_tmr.o: .\Main\app_cfg.h 12 | .\Out\os_tmr.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_tmr.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_tmr.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_tmr.o: .\uCOS\Source\os_type.h 16 | .\Out\os_tmr.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_tmr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_tmr.o -------------------------------------------------------------------------------- /Out/os_var.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_var.crf -------------------------------------------------------------------------------- /Out/os_var.d: -------------------------------------------------------------------------------- 1 | .\Out\os_var.o: uCOS\Source\os_var.c 2 | .\Out\os_var.o: .\uCOS\Source\os.h 3 | .\Out\os_var.o: .\uCOS\Cfg\os_cfg.h 4 | .\Out\os_var.o: .\uCOS\CPU\cpu.h 5 | .\Out\os_var.o: .\uCOS\CPU\cpu_def.h 6 | .\Out\os_var.o: .\uCOS\CPU\cpu_cfg.h 7 | .\Out\os_var.o: .\uCOS\CPU\cpu_core.h 8 | .\Out\os_var.o: .\uCOS\LIB\lib_def.h 9 | .\Out\os_var.o: .\uCOS\LIB\lib_mem.h 10 | .\Out\os_var.o: .\uCOS\CPU\cpu_core.h 11 | .\Out\os_var.o: .\Main\app_cfg.h 12 | .\Out\os_var.o: .\uCOS\LIB\lib_cfg.h 13 | .\Out\os_var.o: .\uCOS\LIB\lib_str.h 14 | .\Out\os_var.o: .\uCOS\LIB\lib_ascii.h 15 | .\Out\os_var.o: .\uCOS\Source\os_type.h 16 | .\Out\os_var.o: .\uCOS\Ports\os_cpu.h 17 | -------------------------------------------------------------------------------- /Out/os_var.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/os_var.o -------------------------------------------------------------------------------- /Out/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- 1 | .\Out\startup_stm32f10x_hd.o: Libraries\startup\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /Out/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /Out/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_adc.crf -------------------------------------------------------------------------------- /Out/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_adc.o: Libraries\StdPeriph_Driver\stm32f10x_adc.c 2 | .\Out\stm32f10x_adc.o: Libraries\StdPeriph_Driver\stm32f10x_adc.h 3 | .\Out\stm32f10x_adc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_adc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_adc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_adc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_adc.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 10 | .\Out\stm32f10x_adc.o: .\Libraries\CMSIS\stm32f10x.h 11 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_adc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_adc.o -------------------------------------------------------------------------------- /Out/stm32f10x_bkp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_bkp.crf -------------------------------------------------------------------------------- /Out/stm32f10x_bkp.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_bkp.o: Libraries\StdPeriph_Driver\stm32f10x_bkp.c 2 | .\Out\stm32f10x_bkp.o: Libraries\StdPeriph_Driver\stm32f10x_bkp.h 3 | .\Out\stm32f10x_bkp.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_bkp.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_bkp.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_bkp.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_bkp.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_bkp.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_bkp.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_bkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_bkp.o -------------------------------------------------------------------------------- /Out/stm32f10x_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_can.crf -------------------------------------------------------------------------------- /Out/stm32f10x_can.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_can.o: Libraries\StdPeriph_Driver\stm32f10x_can.c 2 | .\Out\stm32f10x_can.o: Libraries\StdPeriph_Driver\stm32f10x_can.h 3 | .\Out\stm32f10x_can.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_can.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_can.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_can.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_can.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_can.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_can.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_can.o -------------------------------------------------------------------------------- /Out/stm32f10x_cec.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_cec.crf -------------------------------------------------------------------------------- /Out/stm32f10x_cec.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_cec.o: Libraries\StdPeriph_Driver\stm32f10x_cec.c 2 | .\Out\stm32f10x_cec.o: Libraries\StdPeriph_Driver\stm32f10x_cec.h 3 | .\Out\stm32f10x_cec.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_cec.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_cec.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_cec.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_cec.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_cec.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_cec.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_cec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_cec.o -------------------------------------------------------------------------------- /Out/stm32f10x_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_crc.crf -------------------------------------------------------------------------------- /Out/stm32f10x_crc.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_crc.o: Libraries\StdPeriph_Driver\stm32f10x_crc.c 2 | .\Out\stm32f10x_crc.o: Libraries\StdPeriph_Driver\stm32f10x_crc.h 3 | .\Out\stm32f10x_crc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_crc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_crc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_crc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_crc.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_crc.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_crc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_crc.o -------------------------------------------------------------------------------- /Out/stm32f10x_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dac.crf -------------------------------------------------------------------------------- /Out/stm32f10x_dac.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_dac.o: Libraries\StdPeriph_Driver\stm32f10x_dac.c 2 | .\Out\stm32f10x_dac.o: Libraries\StdPeriph_Driver\stm32f10x_dac.h 3 | .\Out\stm32f10x_dac.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_dac.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_dac.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_dac.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_dac.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_dac.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_dac.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dac.o -------------------------------------------------------------------------------- /Out/stm32f10x_dbgmcu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dbgmcu.crf -------------------------------------------------------------------------------- /Out/stm32f10x_dbgmcu.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_dbgmcu.o: Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.c 2 | .\Out\stm32f10x_dbgmcu.o: Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 3 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_dbgmcu.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_dbgmcu.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_dbgmcu.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_dbgmcu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dbgmcu.o -------------------------------------------------------------------------------- /Out/stm32f10x_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dma.crf -------------------------------------------------------------------------------- /Out/stm32f10x_dma.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_dma.o: Libraries\StdPeriph_Driver\stm32f10x_dma.c 2 | .\Out\stm32f10x_dma.o: Libraries\StdPeriph_Driver\stm32f10x_dma.h 3 | .\Out\stm32f10x_dma.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_dma.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_dma.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_dma.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_dma.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_dma.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_dma.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_dma.o -------------------------------------------------------------------------------- /Out/stm32f10x_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_exti.crf -------------------------------------------------------------------------------- /Out/stm32f10x_exti.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_exti.o: Libraries\StdPeriph_Driver\stm32f10x_exti.c 2 | .\Out\stm32f10x_exti.o: Libraries\StdPeriph_Driver\stm32f10x_exti.h 3 | .\Out\stm32f10x_exti.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_exti.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_exti.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_exti.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_exti.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_exti.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_exti.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_exti.o -------------------------------------------------------------------------------- /Out/stm32f10x_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_flash.crf -------------------------------------------------------------------------------- /Out/stm32f10x_flash.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_flash.o: Libraries\StdPeriph_Driver\stm32f10x_flash.c 2 | .\Out\stm32f10x_flash.o: Libraries\StdPeriph_Driver\stm32f10x_flash.h 3 | .\Out\stm32f10x_flash.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_flash.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_flash.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_flash.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_flash.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_flash.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_flash.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_flash.o -------------------------------------------------------------------------------- /Out/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /Out/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_fsmc.o: Libraries\StdPeriph_Driver\stm32f10x_fsmc.c 2 | .\Out\stm32f10x_fsmc.o: Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 3 | .\Out\stm32f10x_fsmc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_fsmc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_fsmc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_fsmc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_fsmc.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_fsmc.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_fsmc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_fsmc.o -------------------------------------------------------------------------------- /Out/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /Out/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_gpio.o: Libraries\StdPeriph_Driver\stm32f10x_gpio.c 2 | .\Out\stm32f10x_gpio.o: Libraries\StdPeriph_Driver\stm32f10x_gpio.h 3 | .\Out\stm32f10x_gpio.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_gpio.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_gpio.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_gpio.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_gpio.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_gpio.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_gpio.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_gpio.o -------------------------------------------------------------------------------- /Out/stm32f10x_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_i2c.crf -------------------------------------------------------------------------------- /Out/stm32f10x_i2c.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_i2c.o: Libraries\StdPeriph_Driver\stm32f10x_i2c.c 2 | .\Out\stm32f10x_i2c.o: Libraries\StdPeriph_Driver\stm32f10x_i2c.h 3 | .\Out\stm32f10x_i2c.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_i2c.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_i2c.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_i2c.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_i2c.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_i2c.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_i2c.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_i2c.o -------------------------------------------------------------------------------- /Out/stm32f10x_it.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\stm32f10x_it.o" --omf_browse ".\Out\stm32f10x_it.crf" --depend ".\Out\stm32f10x_it.d" "Main\stm32f10x_it.c" -------------------------------------------------------------------------------- /Out/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_it.crf -------------------------------------------------------------------------------- /Out/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_it.o: Main\stm32f10x_it.c 2 | .\Out\stm32f10x_it.o: Main\stm32f10x_it.h 3 | .\Out\stm32f10x_it.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_it.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_it.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_it.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_it.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_it.o: .\Libraries\StdPeriph_Driver\misc.h 32 | .\Out\stm32f10x_it.o: .\Hardware\usart.h 33 | .\Out\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 34 | .\Out\stm32f10x_it.o: .\Hardware\delay.h 35 | .\Out\stm32f10x_it.o: .\Hardware\led.h 36 | .\Out\stm32f10x_it.o: Main\includes.h 37 | .\Out\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 38 | .\Out\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 39 | .\Out\stm32f10x_it.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 40 | .\Out\stm32f10x_it.o: .\uCOS\CPU\cpu.h 41 | .\Out\stm32f10x_it.o: .\uCOS\CPU\cpu_def.h 42 | .\Out\stm32f10x_it.o: .\uCOS\CPU\cpu_cfg.h 43 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_def.h 44 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_ascii.h 45 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_math.h 46 | .\Out\stm32f10x_it.o: .\uCOS\CPU\cpu_core.h 47 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_mem.h 48 | .\Out\stm32f10x_it.o: .\uCOS\CPU\cpu_core.h 49 | .\Out\stm32f10x_it.o: .\Main\app_cfg.h 50 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_cfg.h 51 | .\Out\stm32f10x_it.o: .\uCOS\LIB\lib_str.h 52 | .\Out\stm32f10x_it.o: .\uCOS\Source\os.h 53 | .\Out\stm32f10x_it.o: .\uCOS\Cfg\os_cfg.h 54 | .\Out\stm32f10x_it.o: .\uCOS\Source\os_type.h 55 | .\Out\stm32f10x_it.o: .\uCOS\Ports\os_cpu.h 56 | .\Out\stm32f10x_it.o: .\uCOS\Cfg\os_app_hooks.h 57 | .\Out\stm32f10x_it.o: .\Application\task.h 58 | -------------------------------------------------------------------------------- /Out/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_it.o -------------------------------------------------------------------------------- /Out/stm32f10x_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_iwdg.crf -------------------------------------------------------------------------------- /Out/stm32f10x_iwdg.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_iwdg.o: Libraries\StdPeriph_Driver\stm32f10x_iwdg.c 2 | .\Out\stm32f10x_iwdg.o: Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 3 | .\Out\stm32f10x_iwdg.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_iwdg.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_iwdg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_iwdg.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_iwdg.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_iwdg.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_iwdg.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_iwdg.o -------------------------------------------------------------------------------- /Out/stm32f10x_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_pwr.crf -------------------------------------------------------------------------------- /Out/stm32f10x_pwr.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_pwr.o: Libraries\StdPeriph_Driver\stm32f10x_pwr.c 2 | .\Out\stm32f10x_pwr.o: Libraries\StdPeriph_Driver\stm32f10x_pwr.h 3 | .\Out\stm32f10x_pwr.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_pwr.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_pwr.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_pwr.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_pwr.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_pwr.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_pwr.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_pwr.o -------------------------------------------------------------------------------- /Out/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /Out/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_rcc.o: Libraries\StdPeriph_Driver\stm32f10x_rcc.c 2 | .\Out\stm32f10x_rcc.o: Libraries\StdPeriph_Driver\stm32f10x_rcc.h 3 | .\Out\stm32f10x_rcc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_rcc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_rcc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_rcc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_rcc.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_rcc.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_rcc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_rcc.o -------------------------------------------------------------------------------- /Out/stm32f10x_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_rtc.crf -------------------------------------------------------------------------------- /Out/stm32f10x_rtc.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_rtc.o: Libraries\StdPeriph_Driver\stm32f10x_rtc.c 2 | .\Out\stm32f10x_rtc.o: Libraries\StdPeriph_Driver\stm32f10x_rtc.h 3 | .\Out\stm32f10x_rtc.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_rtc.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_rtc.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_rtc.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_rtc.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_rtc.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_rtc.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_rtc.o -------------------------------------------------------------------------------- /Out/stm32f10x_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_sdio.crf -------------------------------------------------------------------------------- /Out/stm32f10x_sdio.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_sdio.o: Libraries\StdPeriph_Driver\stm32f10x_sdio.c 2 | .\Out\stm32f10x_sdio.o: Libraries\StdPeriph_Driver\stm32f10x_sdio.h 3 | .\Out\stm32f10x_sdio.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_sdio.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_sdio.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_sdio.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_sdio.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_sdio.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_sdio.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_sdio.o -------------------------------------------------------------------------------- /Out/stm32f10x_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_spi.crf -------------------------------------------------------------------------------- /Out/stm32f10x_spi.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_spi.o: Libraries\StdPeriph_Driver\stm32f10x_spi.c 2 | .\Out\stm32f10x_spi.o: Libraries\StdPeriph_Driver\stm32f10x_spi.h 3 | .\Out\stm32f10x_spi.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_spi.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_spi.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_spi.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_spi.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_spi.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_spi.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_spi.o -------------------------------------------------------------------------------- /Out/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_tim.crf -------------------------------------------------------------------------------- /Out/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_tim.o: Libraries\StdPeriph_Driver\stm32f10x_tim.c 2 | .\Out\stm32f10x_tim.o: Libraries\StdPeriph_Driver\stm32f10x_tim.h 3 | .\Out\stm32f10x_tim.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_tim.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_tim.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_tim.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_tim.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_tim.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_tim.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_tim.o -------------------------------------------------------------------------------- /Out/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_usart.crf -------------------------------------------------------------------------------- /Out/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_usart.o: Libraries\StdPeriph_Driver\stm32f10x_usart.c 2 | .\Out\stm32f10x_usart.o: Libraries\StdPeriph_Driver\stm32f10x_usart.h 3 | .\Out\stm32f10x_usart.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_usart.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_usart.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_usart.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_usart.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_usart.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_usart.o -------------------------------------------------------------------------------- /Out/stm32f10x_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_wwdg.crf -------------------------------------------------------------------------------- /Out/stm32f10x_wwdg.d: -------------------------------------------------------------------------------- 1 | .\Out\stm32f10x_wwdg.o: Libraries\StdPeriph_Driver\stm32f10x_wwdg.c 2 | .\Out\stm32f10x_wwdg.o: Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 3 | .\Out\stm32f10x_wwdg.o: .\Libraries\CMSIS\stm32f10x.h 4 | .\Out\stm32f10x_wwdg.o: .\Libraries\CMSIS\core_cm3.h 5 | .\Out\stm32f10x_wwdg.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 6 | .\Out\stm32f10x_wwdg.o: .\Libraries\CMSIS\system_stm32f10x.h 7 | .\Out\stm32f10x_wwdg.o: .\Main\stm32f10x_conf.h 8 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 9 | .\Out\stm32f10x_wwdg.o: .\Libraries\CMSIS\stm32f10x.h 10 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 11 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 12 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 13 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 14 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 15 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 16 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 17 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 18 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 19 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 20 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 21 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 22 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 23 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 24 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 25 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 26 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 27 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 28 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 29 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 30 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 31 | .\Out\stm32f10x_wwdg.o: .\Libraries\StdPeriph_Driver\misc.h 32 | -------------------------------------------------------------------------------- /Out/stm32f10x_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/stm32f10x_wwdg.o -------------------------------------------------------------------------------- /Out/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/system_stm32f10x.crf -------------------------------------------------------------------------------- /Out/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | .\Out\system_stm32f10x.o: Libraries\CMSIS\system_stm32f10x.c 2 | .\Out\system_stm32f10x.o: Libraries\CMSIS\stm32f10x.h 3 | .\Out\system_stm32f10x.o: Libraries\CMSIS\core_cm3.h 4 | .\Out\system_stm32f10x.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 5 | .\Out\system_stm32f10x.o: Libraries\CMSIS\system_stm32f10x.h 6 | .\Out\system_stm32f10x.o: .\Main\stm32f10x_conf.h 7 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 8 | .\Out\system_stm32f10x.o: .\Libraries\CMSIS\stm32f10x.h 9 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 10 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 11 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 12 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 13 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 14 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 15 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 16 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 17 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 18 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 19 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 20 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 21 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 22 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 23 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 24 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 25 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 26 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 27 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 28 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 29 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 30 | .\Out\system_stm32f10x.o: .\Libraries\StdPeriph_Driver\misc.h 31 | -------------------------------------------------------------------------------- /Out/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/system_stm32f10x.o -------------------------------------------------------------------------------- /Out/task.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\task.o" --omf_browse ".\Out\task.crf" --depend ".\Out\task.d" "Application\task.c" -------------------------------------------------------------------------------- /Out/task.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/task.crf -------------------------------------------------------------------------------- /Out/task.d: -------------------------------------------------------------------------------- 1 | .\Out\task.o: Application\task.c 2 | .\Out\task.o: .\Main\includes.h 3 | .\Out\task.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 4 | .\Out\task.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 5 | .\Out\task.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 6 | .\Out\task.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 7 | .\Out\task.o: .\uCOS\CPU\cpu.h 8 | .\Out\task.o: .\uCOS\CPU\cpu_def.h 9 | .\Out\task.o: .\uCOS\CPU\cpu_cfg.h 10 | .\Out\task.o: .\uCOS\LIB\lib_def.h 11 | .\Out\task.o: .\uCOS\LIB\lib_ascii.h 12 | .\Out\task.o: .\uCOS\LIB\lib_math.h 13 | .\Out\task.o: .\uCOS\CPU\cpu_core.h 14 | .\Out\task.o: .\uCOS\LIB\lib_mem.h 15 | .\Out\task.o: .\uCOS\CPU\cpu_core.h 16 | .\Out\task.o: .\Main\app_cfg.h 17 | .\Out\task.o: .\uCOS\LIB\lib_cfg.h 18 | .\Out\task.o: .\uCOS\LIB\lib_str.h 19 | .\Out\task.o: .\uCOS\Source\os.h 20 | .\Out\task.o: .\uCOS\Cfg\os_cfg.h 21 | .\Out\task.o: .\uCOS\Source\os_type.h 22 | .\Out\task.o: .\uCOS\Ports\os_cpu.h 23 | .\Out\task.o: .\Libraries\CMSIS\stm32f10x.h 24 | .\Out\task.o: .\Libraries\CMSIS\core_cm3.h 25 | .\Out\task.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 26 | .\Out\task.o: .\Libraries\CMSIS\system_stm32f10x.h 27 | .\Out\task.o: .\Main\stm32f10x_conf.h 28 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 29 | .\Out\task.o: .\Libraries\CMSIS\stm32f10x.h 30 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 31 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 32 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 33 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 34 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 35 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 36 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 37 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 38 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 39 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 40 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 41 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 42 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 43 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 44 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 45 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 46 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 47 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 48 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 49 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 50 | .\Out\task.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 51 | .\Out\task.o: .\Libraries\StdPeriph_Driver\misc.h 52 | .\Out\task.o: .\uCOS\Cfg\os_app_hooks.h 53 | .\Out\task.o: .\Hardware\usart.h 54 | .\Out\task.o: .\Hardware\led.h 55 | .\Out\task.o: .\Hardware\delay.h 56 | .\Out\task.o: .\Application\task.h 57 | .\Out\task.o: .\Main\bsp.h 58 | -------------------------------------------------------------------------------- /Out/task.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/task.o -------------------------------------------------------------------------------- /Out/usart.__i: -------------------------------------------------------------------------------- 1 | -c --cpu Cortex-M3 -D__MICROLIB -g -O0 --apcs=interwork --split_sections -I.\Libraries\CMSIS -I.\Libraries\StdPeriph_Driver -I.\Libraries\startup -I.\Hardware -I.\Main -I.\uCOS\Cfg -I.\uCOS\CPU -I.\uCOS\LIB -I.\uCOS\Ports -I.\uCOS\Source -I.\Application 2 | -I C:\Keil\ARM\RV31\INC 3 | -I C:\Keil\ARM\CMSIS\Include 4 | -I C:\Keil\ARM\Inc\ST\STM32F10x 5 | -DUSE_STDPERIPH_DRIVER -DSTM32F10X_HD -o ".\Out\usart.o" --omf_browse ".\Out\usart.crf" --depend ".\Out\usart.d" "Hardware\usart.c" -------------------------------------------------------------------------------- /Out/usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/usart.crf -------------------------------------------------------------------------------- /Out/usart.d: -------------------------------------------------------------------------------- 1 | .\Out\usart.o: Hardware\usart.c 2 | .\Out\usart.o: .\Main\includes.h 3 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdarg.h 4 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdio.h 5 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdlib.h 6 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\math.h 7 | .\Out\usart.o: .\uCOS\CPU\cpu.h 8 | .\Out\usart.o: .\uCOS\CPU\cpu_def.h 9 | .\Out\usart.o: .\uCOS\CPU\cpu_cfg.h 10 | .\Out\usart.o: .\uCOS\LIB\lib_def.h 11 | .\Out\usart.o: .\uCOS\LIB\lib_ascii.h 12 | .\Out\usart.o: .\uCOS\LIB\lib_math.h 13 | .\Out\usart.o: .\uCOS\CPU\cpu_core.h 14 | .\Out\usart.o: .\uCOS\LIB\lib_mem.h 15 | .\Out\usart.o: .\uCOS\CPU\cpu_core.h 16 | .\Out\usart.o: .\Main\app_cfg.h 17 | .\Out\usart.o: .\uCOS\LIB\lib_cfg.h 18 | .\Out\usart.o: .\uCOS\LIB\lib_str.h 19 | .\Out\usart.o: .\uCOS\Source\os.h 20 | .\Out\usart.o: .\uCOS\Cfg\os_cfg.h 21 | .\Out\usart.o: .\uCOS\Source\os_type.h 22 | .\Out\usart.o: .\uCOS\Ports\os_cpu.h 23 | .\Out\usart.o: .\Libraries\CMSIS\stm32f10x.h 24 | .\Out\usart.o: .\Libraries\CMSIS\core_cm3.h 25 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\stdint.h 26 | .\Out\usart.o: .\Libraries\CMSIS\system_stm32f10x.h 27 | .\Out\usart.o: .\Main\stm32f10x_conf.h 28 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_adc.h 29 | .\Out\usart.o: .\Libraries\CMSIS\stm32f10x.h 30 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_bkp.h 31 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_can.h 32 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_cec.h 33 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_crc.h 34 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dac.h 35 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dbgmcu.h 36 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_dma.h 37 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_exti.h 38 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_flash.h 39 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_fsmc.h 40 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_gpio.h 41 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_i2c.h 42 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_iwdg.h 43 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_pwr.h 44 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_rcc.h 45 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_rtc.h 46 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_sdio.h 47 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_spi.h 48 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_tim.h 49 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_usart.h 50 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\stm32f10x_wwdg.h 51 | .\Out\usart.o: .\Libraries\StdPeriph_Driver\misc.h 52 | .\Out\usart.o: .\uCOS\Cfg\os_app_hooks.h 53 | .\Out\usart.o: .\Hardware\usart.h 54 | .\Out\usart.o: .\Hardware\led.h 55 | .\Out\usart.o: .\Hardware\delay.h 56 | .\Out\usart.o: .\Application\task.h 57 | .\Out\usart.o: C:\Keil\ARM\ARMCC\bin\..\include\string.h 58 | -------------------------------------------------------------------------------- /Out/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamehuang2012/ucos-iii/804a3d144de0457dc9b7a3f93b10a8f5dec7b917/Out/usart.o -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | 2010 10 30 2 | 3 | uCOS 3.02 4 | add console feature ! 5 | -------------------------------------------------------------------------------- /uCOS/Cfg/os_app_hooks.h: -------------------------------------------------------------------------------- 1 | /* 2 | ************************************************************************************************************************ 3 | * uC/OS-III 4 | * The Real-Time Kernel 5 | * 6 | * (c) Copyright 2009-2011; Micrium, Inc.; Weston, FL 7 | * All rights reserved. Protected by international copyright laws. 8 | * 9 | * APPLICATION HOOKS 10 | * 11 | * File : OS_APP_HOOKS.H 12 | * By : JJL 13 | * Version : V3.02.00 14 | * 15 | * LICENSING TERMS: 16 | * --------------- 17 | * uC/OS-III is provided in source form for FREE short-term evaluation, for educational use or 18 | * for peaceful research. If you plan or intend to use uC/OS-III in a commercial application/ 19 | * product then, you need to contact Micrium to properly license uC/OS-III for its use in your 20 | * application/product. We provide ALL the source code for your convenience and to help you 21 | * experience uC/OS-III. The fact that the source is provided does NOT mean that you can use 22 | * it commercially without paying a licensing fee. 23 | * 24 | * Knowledge of the source code may NOT be used to develop a similar product. 25 | * 26 | * Please help us continue to provide the embedded community with the finest software available. 27 | * Your honesty is greatly appreciated. 28 | * 29 | * You can contact us at www.micrium.com, or by phone at +1 (954) 217-2036. 30 | ************************************************************************************************************************ 31 | */ 32 | 33 | #ifndef OS_APP_HOOKS_H 34 | #define OS_APP_HOOKS_H 35 | 36 | 37 | #ifdef OS_APP_HOOKS_H_GLOBALS 38 | #define OS_APP_HOOKS_H_EXT 39 | #else 40 | #define OS_APP_HOOKS_H_EXT extern 41 | #endif 42 | 43 | /* 44 | ************************************************************************************************************************ 45 | * INCLUDE HEADER FILES 46 | ************************************************************************************************************************ 47 | */ 48 | 49 | #include 50 | 51 | /* 52 | ************************************************************************************************************************ 53 | * FUNCTION PROTOTYPES 54 | ************************************************************************************************************************ 55 | */ 56 | 57 | void App_OS_SetAllHooks (void); 58 | void App_OS_ClrAllHooks (void); 59 | 60 | 61 | /* ---------------------- HOOKS --------------------- */ 62 | void App_OS_TaskCreateHook(OS_TCB *p_tcb); 63 | void App_OS_TaskDelHook (OS_TCB *p_tcb); 64 | void App_OS_TaskReturnHook(OS_TCB *p_tcb); 65 | 66 | void App_OS_IdleTaskHook (void); 67 | void App_OS_InitHook (void); 68 | void App_OS_StatTaskHook (void); 69 | void App_OS_TaskSwHook (void); 70 | void App_OS_TimeTickHook (void); 71 | 72 | #endif 73 | -------------------------------------------------------------------------------- /uCOS/Cfg/os_cfg_app.h: -------------------------------------------------------------------------------- 1 | /* 2 | ************************************************************************************************************************ 3 | * uC/OS-III 4 | * The Real-Time Kernel 5 | * 6 | * (c) Copyright 2009, Micrium, Weston, FL 7 | * All Rights Reserved 8 | * www.Micrium.com 9 | * 10 | * OS CONFIGURATION (APPLICATION SPECIFICS) 11 | * 12 | * File : OS_CFG_APP.H 13 | * By : JJL 14 | * Version : V3.00 15 | * 16 | * LICENSING TERMS: 17 | * --------------- 18 | * uC/OS-III is provided in source form for FREE short-term evaluation, for educational use or 19 | * for peaceful research. If you plan or intend to use uC/OS-III in a commercial application/ 20 | * product then, you need to contact Micrium to properly license uC/OS-III for its use in your 21 | * application/product. We provide ALL the source code for your convenience and to help you 22 | * experience uC/OS-III. The fact that the source is provided does NOT mean that you can use 23 | * it commercially without paying a licensing fee. 24 | * 25 | * Knowledge of the source code may NOT be used to develop a similar product. 26 | * 27 | * Please help us continue to provide the embedded community with the finest software available. 28 | * Your honesty is greatly appreciated. 29 | * 30 | * You can contact us at www.micrium.com, or by phone at +1 (954) 217-2036. 31 | ************************************************************************************************************************ 32 | */ 33 | 34 | #ifndef OS_CFG_APP_H 35 | #define OS_CFG_APP_H 36 | 37 | /* 38 | ************************************************************************************************************************ 39 | * CONSTANTS 40 | ************************************************************************************************************************ 41 | */ 42 | 43 | /* --------------------- MISCELLANEOUS ------------------ */ 44 | #define OS_CFG_MSG_POOL_SIZE 100u /* Maximum number of messages */ 45 | #define OS_CFG_ISR_STK_SIZE 128u /* Stack size of ISR stack (number of CPU_STK elements) */ 46 | #define OS_CFG_TASK_STK_LIMIT_PCT_EMPTY 10u /* Stack limit position in percentage to empty */ 47 | 48 | 49 | /* ---------------------- IDLE TASK --------------------- */ 50 | #define OS_CFG_IDLE_TASK_STK_SIZE 128u /* Stack size (number of CPU_STK elements) */ 51 | 52 | 53 | /* ------------------ ISR HANDLER TASK ------------------ */ 54 | #define OS_CFG_INT_Q_SIZE 10u /* Size of ISR handler task queue */ 55 | #define OS_CFG_INT_Q_TASK_STK_SIZE 128u /* Stack size (number of CPU_STK elements) */ 56 | 57 | 58 | /* ------------------- STATISTIC TASK ------------------- */ 59 | #define OS_CFG_STAT_TASK_PRIO OS_CFG_PRIO_MAX-2u /* Priority */ 60 | #define OS_CFG_STAT_TASK_RATE_HZ 10u /* Rate of execution (10 Hz Typ.) */ 61 | #define OS_CFG_STAT_TASK_STK_SIZE 128u /* Stack size (number of CPU_STK elements) */ 62 | 63 | 64 | /* ------------------------ TICKS ----------------------- */ 65 | #define OS_CFG_TICK_RATE_HZ 1000u /* Tick rate in Hertz (10 to 1000 Hz) */ 66 | #define OS_CFG_TICK_TASK_PRIO OS_CFG_PRIO_MAX-3u /* Priority */ 67 | #define OS_CFG_TICK_TASK_STK_SIZE 128u /* Stack size (number of CPU_STK elements) */ 68 | #define OS_CFG_TICK_WHEEL_SIZE 13u /* Number of 'spokes' in tick wheel */ 69 | 70 | 71 | /* ----------------------- TIMERS ----------------------- */ 72 | #define OS_CFG_TMR_TASK_PRIO OS_CFG_PRIO_MAX-2u /* Priority of 'Timer Task' */ 73 | #define OS_CFG_TMR_TASK_RATE_HZ 10u /* Rate for timers (10 Hz Typ.) */ 74 | #define OS_CFG_TMR_TASK_STK_SIZE 128u /* Stack size (number of CPU_STK elements) */ 75 | #define OS_CFG_TMR_WHEEL_SIZE 13u /* Number of 'spokes' in timer wheel */ 76 | #endif 77 | -------------------------------------------------------------------------------- /uCOS/Source/os_type.h: -------------------------------------------------------------------------------- 1 | /* 2 | ************************************************************************************************************************ 3 | * uC/OS-III 4 | * The Real-Time Kernel 5 | * 6 | * (c) Copyright 2009, Micrium, Weston, FL 7 | * All Rights Reserved 8 | * www.Micrium.com 9 | * 10 | * File : OS_TYPE.H 11 | * By : JJL 12 | * Version : V3.00.3 13 | * 14 | * LICENSING TERMS: 15 | * --------------- 16 | * uC/OS-III is provided in source form to registered licensees. It is illegal to distribute this source 17 | * code to any third party unless you receive written permission by an authorized Micrium officer. 18 | * 19 | * Knowledge of the source code may NOT be used to develop a similar product. 20 | * 21 | * Please help us continue to provide the Embedded community with the finest software available. Your 22 | * honesty is greatly appreciated. 23 | * 24 | * You can contact us at www.micrium.com. 25 | ************************************************************************************************************************ 26 | */ 27 | 28 | #ifndef OS_TYPE_H 29 | #define OS_TYPE_H 30 | 31 | /* 32 | ************************************************************************************************************************ 33 | * INCLUDE HEADER FILES 34 | ************************************************************************************************************************ 35 | */ 36 | 37 | /* Description # Bits */ 38 | /* */ 39 | /* ----------------------------------------------------------- */ 40 | 41 | typedef CPU_INT08U OS_CPU_USAGE; /* CPU Usage 0..100% <8>/16/32 */ 42 | 43 | typedef CPU_INT32U OS_CTR; /* Counter, 32 */ 44 | 45 | typedef CPU_INT32U OS_CTX_SW_CTR; /* Counter of context switches, 32 */ 46 | 47 | typedef CPU_INT64U OS_CYCLES; /* CPU clock cycles, 32/<64> */ 48 | 49 | typedef CPU_INT32U OS_FLAGS; /* Event flags, 8/16/<32> */ 50 | 51 | typedef CPU_INT32U OS_IDLE_CTR; /* Holds the number of times the idle task runs, <32>/64 */ 52 | 53 | typedef CPU_INT16U OS_MEM_QTY; /* Number of memory blocks, <16>/32 */ 54 | typedef CPU_INT16U OS_MEM_SIZE; /* Size in bytes of a memory block, <16>/32 */ 55 | 56 | typedef CPU_INT16U OS_MSG_QTY; /* Number of OS_MSGs in the msg pool, <16>/32 */ 57 | typedef CPU_INT16U OS_MSG_SIZE; /* Size of messages in number of bytes, <16>/32 */ 58 | 59 | typedef CPU_INT08U OS_NESTING_CTR; /* Interrupt and scheduler nesting, <8>/16/32 */ 60 | 61 | typedef CPU_INT16U OS_OBJ_QTY; /* Number of kernel objects counter, <16>/32 */ 62 | typedef CPU_INT32U OS_OBJ_TYPE; /* Special flag to determine object type, 32 */ 63 | 64 | typedef CPU_INT16U OS_OPT; /* Holds function options <16>/32 */ 65 | 66 | typedef CPU_INT08U OS_PRIO; /* Priority of a task, <8>/16/32 */ 67 | 68 | typedef CPU_INT16U OS_QTY; /* Quantity <16>/32 */ 69 | 70 | typedef CPU_INT32U OS_RATE_HZ; /* Rate in Hertz 32 */ 71 | 72 | typedef CPU_INT32U OS_REG; /* Task register 8/16/<32> */ 73 | typedef CPU_INT08U OS_REG_ID; /* Index to task register <8>/16/32 */ 74 | 75 | typedef CPU_INT32U OS_SEM_CTR; /* Semaphore value 16/<32> */ 76 | 77 | typedef CPU_INT08U OS_STATE; /* State variable <8>/16/32 */ 78 | 79 | typedef CPU_INT08U OS_STATUS; /* Status <8>/16/32 */ 80 | 81 | typedef CPU_INT32U OS_TICK; /* Clock tick counter <32>/64 */ 82 | typedef CPU_INT16U OS_TICK_SPOKE_IX; /* Tick wheel spoke position 8/<16>/32 */ 83 | 84 | typedef CPU_INT32U OS_TMR_TICK; /* Holds the current timer tick count, <32>/64 */ 85 | typedef CPU_INT16U OS_TMR_SPOKE_IX; /* Timer wheel spoke position 8/<16>/32 */ 86 | 87 | #endif 88 | -------------------------------------------------------------------------------- /uCOS/Source/os_var.c: -------------------------------------------------------------------------------- 1 | /* 2 | ************************************************************************************************************************ 3 | * uC/OS-III 4 | * The Real-Time Kernel 5 | * 6 | * (c) Copyright 2009-2011; Micrium, Inc.; Weston, FL 7 | * All rights reserved. Protected by international copyright laws. 8 | * 9 | * VARIABLES 10 | * 11 | * File : OS_VAR.C 12 | * By : JJL 13 | * Version : V3.02.00 14 | * 15 | * LICENSING TERMS: 16 | * --------------- 17 | * uC/OS-III is provided in source form for FREE short-term evaluation, for educational use or 18 | * for peaceful research. If you plan or intend to use uC/OS-III in a commercial application/ 19 | * product then, you need to contact Micrium to properly license uC/OS-III for its use in your 20 | * application/product. We provide ALL the source code for your convenience and to help you 21 | * experience uC/OS-III. The fact that the source is provided does NOT mean that you can use 22 | * it commercially without paying a licensing fee. 23 | * 24 | * Knowledge of the source code may NOT be used to develop a similar product. 25 | * 26 | * Please help us continue to provide the embedded community with the finest software available. 27 | * Your honesty is greatly appreciated. 28 | * 29 | * You can contact us at www.micrium.com, or by phone at +1 (954) 217-2036. 30 | ************************************************************************************************************************ 31 | */ 32 | 33 | #define OS_GLOBALS 34 | 35 | #include 36 | 37 | #ifdef VSC_INCLUDE_SOURCE_FILE_NAMES 38 | const CPU_CHAR *os_var__c = "$Id: $"; 39 | #endif 40 | -------------------------------------------------------------------------------- /删除.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | color 2e 3 | chdir /d %cd% 4 | 5 | for %%i in (%chdir%*.*) do ( 6 | if not "%%~xi"==".cmd" ( 7 | if not "%%~xi"==".hex" ( 8 | if not "%%~xi"==".uvopt" ( 9 | if not "%%~xi"==".uvproj" ( 10 | if not "%%~xi"==".s" ( 11 | if not "%%~xi"==".c" ( 12 | if not "%%~xi"==".h" ( 13 | if not "%%~xi"==".txt" @del *%%~xi 14 | ) 15 | ) 16 | ) 17 | ) 18 | ) 19 | ) 20 | ) 21 | ) 22 | exit --------------------------------------------------------------------------------