diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6f6d250 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/MDK-ARM/lamp/ +/MDK-ARM/DebugConfig/ diff --git a/.mxproject b/.mxproject index 32139f0..d8ecd73 100644 --- a/.mxproject +++ b/.mxproject @@ -6,6 +6,9 @@ SourceFiles=..\Core\Src\main.c;..\Core\Src\gpio.c;..\Core\Src\rtc.c;..\Core\Src\ HeaderPath=..\Drivers\STM32F1xx_HAL_Driver\Inc;..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy;..\Drivers\CMSIS\Device\ST\STM32F1xx\Include;..\Drivers\CMSIS\Include;..\Core\Inc; CDefines=USE_HAL_DRIVER;STM32F103xB;USE_HAL_DRIVER;USE_HAL_DRIVER; +[] +SourceFiles=;; + [PreviousGenFiles] AdvancedFolderStructure=true HeaderFileListSize=6 diff --git a/Core/Clock/clock_manager.c b/Core/Clock/clock_manager.c index a75eaa4..57c685c 100644 --- a/Core/Clock/clock_manager.c +++ b/Core/Clock/clock_manager.c @@ -26,10 +26,15 @@ void ClockManager_Init(void) { } } -time_t ClockManager_GetTime(void) { +time_t ClockManager_GetTime(int blink) { HAL_RTC_GetTime(&hrtc, &rtc_time, RTC_FORMAT_BIN); currentTime.hour = rtc_time.Hours; currentTime.min = rtc_time.Minutes; + if(blink) + { + if(currentTime.sec != rtc_time.Seconds) + HAL_GPIO_TogglePin(LED_GPIO_Port, LED_Pin); + } currentTime.sec = rtc_time.Seconds; return currentTime; } diff --git a/Core/Clock/clock_manager.h b/Core/Clock/clock_manager.h index 40913fd..ab68e28 100644 --- a/Core/Clock/clock_manager.h +++ b/Core/Clock/clock_manager.h @@ -9,7 +9,7 @@ void ClockManager_Init(void); // Получить текущее время из RTC -time_t ClockManager_GetTime(void); +time_t ClockManager_GetTime(int blink); // Установить время в RTC void ClockManager_SetTime(uint8_t hour, uint8_t min, uint8_t sec); diff --git a/Core/Clock/menu.c b/Core/Clock/menu.c index 2237901..ca4ae5c 100644 --- a/Core/Clock/menu.c +++ b/Core/Clock/menu.c @@ -71,7 +71,7 @@ static void FormatTime(char* buf, const time_t* t) { static void UpdateDisplay(void) { switch (menu.state) { case STATE_CLOCK: { - time_t now = ClockManager_GetTime(); + time_t now = ClockManager_GetTime(1); char buf[7]; FormatTime(buf, &now); Segment_SetString(buf); @@ -251,7 +251,7 @@ static void ProcessButton(Button_Type btn, bool longPress) { switch (menu.selectedMenuItem) { case MAIN_MENU_SET_TIME: menu.state = STATE_SET_TIME; - menu.originalTime = ClockManager_GetTime(); + menu.originalTime = ClockManager_GetTime(0); menu.editTime = menu.originalTime; menu.editStep = 0; menu.blinkState = true; diff --git a/Core/Inc/main.h b/Core/Inc/main.h index c117423..5ba0075 100644 --- a/Core/Inc/main.h +++ b/Core/Inc/main.h @@ -62,6 +62,8 @@ void Error_Handler(void); /* USER CODE END EFP */ /* Private defines -----------------------------------------------------------*/ +#define LED_Pin GPIO_PIN_13 +#define LED_GPIO_Port GPIOC #define DIGIT_HOUR_H_Pin GPIO_PIN_0 #define DIGIT_HOUR_H_GPIO_Port GPIOA #define DIGIT_HOUR_L_Pin GPIO_PIN_1 diff --git a/Core/Inc/stm32f1xx_it.h b/Core/Inc/stm32f1xx_it.h index f2a4053..0c39f98 100644 --- a/Core/Inc/stm32f1xx_it.h +++ b/Core/Inc/stm32f1xx_it.h @@ -55,6 +55,7 @@ void SVC_Handler(void); void DebugMon_Handler(void); void PendSV_Handler(void); void SysTick_Handler(void); +void RTC_IRQHandler(void); void TIM2_IRQHandler(void); /* USER CODE BEGIN EFP */ diff --git a/Core/Src/gpio.c b/Core/Src/gpio.c index d5dbfb0..e986b14 100644 --- a/Core/Src/gpio.c +++ b/Core/Src/gpio.c @@ -50,6 +50,9 @@ void MX_GPIO_Init(void) __HAL_RCC_GPIOA_CLK_ENABLE(); __HAL_RCC_GPIOB_CLK_ENABLE(); + /*Configure GPIO pin Output Level */ + HAL_GPIO_WritePin(LED_GPIO_Port, LED_Pin, GPIO_PIN_RESET); + /*Configure GPIO pin Output Level */ HAL_GPIO_WritePin(GPIOA, DIGIT_HOUR_H_Pin|DIGIT_HOUR_L_Pin|DIGIT_MIN_H_Pin|DIGIT_MIN_L_Pin |DIGIT_SEC_H_Pin|DIGIT_SEC_L_Pin, GPIO_PIN_RESET); @@ -58,6 +61,13 @@ void MX_GPIO_Init(void) HAL_GPIO_WritePin(GPIOB, SEGMENT_A_Pin|SEGMENT_C_Pin|SEGMENT_B_Pin|SEGMENT_D_Pin |SEGMENT_E_Pin|SEGMENT_F_Pin|SEGMENT_G_Pin, GPIO_PIN_RESET); + /*Configure GPIO pin : PtPin */ + GPIO_InitStruct.Pin = LED_Pin; + GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP; + GPIO_InitStruct.Pull = GPIO_NOPULL; + GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW; + HAL_GPIO_Init(LED_GPIO_Port, &GPIO_InitStruct); + /*Configure GPIO pins : PAPin PAPin PAPin PAPin PAPin PAPin */ GPIO_InitStruct.Pin = DIGIT_HOUR_H_Pin|DIGIT_HOUR_L_Pin|DIGIT_MIN_H_Pin|DIGIT_MIN_L_Pin diff --git a/Core/Src/rtc.c b/Core/Src/rtc.c index ec0ad1f..63a1772 100644 --- a/Core/Src/rtc.c +++ b/Core/Src/rtc.c @@ -42,7 +42,7 @@ void MX_RTC_Init(void) */ hrtc.Instance = RTC; hrtc.Init.AsynchPrediv = RTC_AUTO_1_SECOND; - hrtc.Init.OutPut = RTC_OUTPUTSOURCE_ALARM; + hrtc.Init.OutPut = RTC_OUTPUTSOURCE_NONE; if (HAL_RTC_Init(&hrtc) != HAL_OK) { Error_Handler(); @@ -66,6 +66,10 @@ void HAL_RTC_MspInit(RTC_HandleTypeDef* rtcHandle) __HAL_RCC_BKP_CLK_ENABLE(); /* RTC clock enable */ __HAL_RCC_RTC_ENABLE(); + + /* RTC interrupt Init */ + HAL_NVIC_SetPriority(RTC_IRQn, 0, 0); + HAL_NVIC_EnableIRQ(RTC_IRQn); /* USER CODE BEGIN RTC_MspInit 1 */ /* USER CODE END RTC_MspInit 1 */ @@ -82,6 +86,9 @@ void HAL_RTC_MspDeInit(RTC_HandleTypeDef* rtcHandle) /* USER CODE END RTC_MspDeInit 0 */ /* Peripheral clock disable */ __HAL_RCC_RTC_DISABLE(); + + /* RTC interrupt Deinit */ + HAL_NVIC_DisableIRQ(RTC_IRQn); /* USER CODE BEGIN RTC_MspDeInit 1 */ /* USER CODE END RTC_MspDeInit 1 */ diff --git a/Core/Src/stm32f1xx_it.c b/Core/Src/stm32f1xx_it.c index e218a0f..beaf143 100644 --- a/Core/Src/stm32f1xx_it.c +++ b/Core/Src/stm32f1xx_it.c @@ -56,6 +56,7 @@ /* USER CODE END 0 */ /* External variables --------------------------------------------------------*/ +extern RTC_HandleTypeDef hrtc; extern TIM_HandleTypeDef htim2; /* USER CODE BEGIN EV */ @@ -199,6 +200,20 @@ void SysTick_Handler(void) /* please refer to the startup file (startup_stm32f1xx.s). */ /******************************************************************************/ +/** + * @brief This function handles RTC global interrupt. + */ +void RTC_IRQHandler(void) +{ + /* USER CODE BEGIN RTC_IRQn 0 */ + + /* USER CODE END RTC_IRQn 0 */ + HAL_RTCEx_RTCIRQHandler(&hrtc); + /* USER CODE BEGIN RTC_IRQn 1 */ + + /* USER CODE END RTC_IRQn 1 */ +} + /** * @brief This function handles TIM2 global interrupt. */ diff --git a/MDK-ARM/DebugConfig/lamp_STM32F103C6_1.0.0.dbgconf b/MDK-ARM/DebugConfig/lamp_STM32F103C6_1.0.0.dbgconf deleted file mode 100644 index 66e10b6..0000000 --- a/MDK-ARM/DebugConfig/lamp_STM32F103C6_1.0.0.dbgconf +++ /dev/null @@ -1,36 +0,0 @@ -// File: STM32F101_102_103_105_107.dbgconf -// Version: 1.0.0 -// Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) -// STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets - -// <<< Use Configuration Wizard in Context Menu >>> - -// Debug MCU configuration register (DBGMCU_CR) -// Reserved bits must be kept at reset value -// DBG_TIM11_STOP TIM11 counter stopped when core is halted -// DBG_TIM10_STOP TIM10 counter stopped when core is halted -// DBG_TIM9_STOP TIM9 counter stopped when core is halted -// DBG_TIM14_STOP TIM14 counter stopped when core is halted -// DBG_TIM13_STOP TIM13 counter stopped when core is halted -// DBG_TIM12_STOP TIM12 counter stopped when core is halted -// DBG_CAN2_STOP Debug CAN2 stopped when core is halted -// DBG_TIM7_STOP TIM7 counter stopped when core is halted -// DBG_TIM6_STOP TIM6 counter stopped when core is halted -// DBG_TIM5_STOP TIM5 counter stopped when core is halted -// DBG_TIM8_STOP TIM8 counter stopped when core is halted -// DBG_I2C2_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted -// DBG_I2C1_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted -// DBG_CAN1_STOP Debug CAN1 stopped when Core is halted -// DBG_TIM4_STOP TIM4 counter stopped when core is halted -// DBG_TIM3_STOP TIM3 counter stopped when core is halted -// DBG_TIM2_STOP TIM2 counter stopped when core is halted -// DBG_TIM1_STOP TIM1 counter stopped when core is halted -// DBG_WWDG_STOP Debug window watchdog stopped when core is halted -// DBG_IWDG_STOP Debug independent watchdog stopped when core is halted -// DBG_STANDBY Debug standby mode -// DBG_STOP Debug stop mode -// DBG_SLEEP Debug sleep mode -// -DbgMCU_CR = 0x00000007; - -// <<< end of configuration section >>> diff --git a/MDK-ARM/DebugConfig/lamp_STM32F103C8_1.0.0.dbgconf b/MDK-ARM/DebugConfig/lamp_STM32F103C8_1.0.0.dbgconf deleted file mode 100644 index 66e10b6..0000000 --- a/MDK-ARM/DebugConfig/lamp_STM32F103C8_1.0.0.dbgconf +++ /dev/null @@ -1,36 +0,0 @@ -// File: STM32F101_102_103_105_107.dbgconf -// Version: 1.0.0 -// Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) -// STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets - -// <<< Use Configuration Wizard in Context Menu >>> - -// Debug MCU configuration register (DBGMCU_CR) -// Reserved bits must be kept at reset value -// DBG_TIM11_STOP TIM11 counter stopped when core is halted -// DBG_TIM10_STOP TIM10 counter stopped when core is halted -// DBG_TIM9_STOP TIM9 counter stopped when core is halted -// DBG_TIM14_STOP TIM14 counter stopped when core is halted -// DBG_TIM13_STOP TIM13 counter stopped when core is halted -// DBG_TIM12_STOP TIM12 counter stopped when core is halted -// DBG_CAN2_STOP Debug CAN2 stopped when core is halted -// DBG_TIM7_STOP TIM7 counter stopped when core is halted -// DBG_TIM6_STOP TIM6 counter stopped when core is halted -// DBG_TIM5_STOP TIM5 counter stopped when core is halted -// DBG_TIM8_STOP TIM8 counter stopped when core is halted -// DBG_I2C2_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted -// DBG_I2C1_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted -// DBG_CAN1_STOP Debug CAN1 stopped when Core is halted -// DBG_TIM4_STOP TIM4 counter stopped when core is halted -// DBG_TIM3_STOP TIM3 counter stopped when core is halted -// DBG_TIM2_STOP TIM2 counter stopped when core is halted -// DBG_TIM1_STOP TIM1 counter stopped when core is halted -// DBG_WWDG_STOP Debug window watchdog stopped when core is halted -// DBG_IWDG_STOP Debug independent watchdog stopped when core is halted -// DBG_STANDBY Debug standby mode -// DBG_STOP Debug stop mode -// DBG_SLEEP Debug sleep mode -// -DbgMCU_CR = 0x00000007; - -// <<< end of configuration section >>> diff --git a/MDK-ARM/lamp.uvguix.I b/MDK-ARM/lamp.uvguix.I index 309ef64..97cfaf0 100644 --- a/MDK-ARM/lamp.uvguix.I +++ b/MDK-ARM/lamp.uvguix.I @@ -10,31 +10,31 @@ - - System Viewer\AFIO - 35903 - - 221 - - - System Viewer\GPIOA - 35904 - - 158 - System Viewer\GPIOB 35905 128 + + System Viewer\GPIOC + 35901 + + 154 + + + System Viewer\RTC + 35904 + + 90 + 38003 Registers - 122 100 + 138 100 346 @@ -44,7 +44,7 @@ 204 Performance Analyzer - 263 153 153 130 + 320 153 153 100 @@ -53,7 +53,7 @@ 35141 Event Statistics - 250 50 724 + 200 50 700 1506 @@ -65,7 +65,7 @@ 1936 Watch 1 - 200 133 133 + 200 173 133 1937 @@ -120,17 +120,17 @@ -1 - 422 - -47 - 1161 - 1166 + 91 + 235 + 1443 + 835 0 - 1513 - 01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000010000000000000000100000021483A5C2E484F4242595C6C616D705C436F72655C5372635C7365676D656E742E6300000000097365676D656E742E6300000000C5D4F200FFFFFFFF2C483A5C2E484F4242595C6C616D705C4D444B2D41524D5C737461727475705F73746D33326631303378622E730000000015737461727475705F73746D33326631303378622E7300000000FFDC7800FFFFFFFF1E483A5C2E484F4242595C6C616D705C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF46483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F74696D5F65782E63000000001673746D3332663178785F68616C5F74696D5F65782E6300000000F0A0A100FFFFFFFF1E483A5C2E484F4242595C6C616D705C436F72655C5372635C6770696F2E6300000000066770696F2E6300000000BCA8E100FFFFFFFF26483A5C2E484F4242595C6C616D705C436F72655C5372635C73746D3332663178785F69742E63000000000E73746D3332663178785F69742E63000000009CC1B600FFFFFFFF3F483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C2E63000000000F73746D3332663178785F68616C2E6300000000F7B88600FFFFFFFF2B483A5C2E484F4242595C6C616D705C436F72655C5372635C73746D3332663178785F68616C5F6D73702E63000000001373746D3332663178785F68616C5F6D73702E6300000000D9ADC200FFFFFFFF2A483A5C2E484F4242595C6C616D705C436F72655C5372635C73797374656D5F73746D3332663178782E63000000001273797374656D5F73746D3332663178782E6300000000A5C2D700FFFFFFFF43483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7263632E63000000001373746D3332663178785F68616C5F7263632E6300000000B3A6BE00FFFFFFFF1D483A5C2E484F4242595C6C616D705C436F72655C5372635C74696D2E63000000000574696D2E6300000000EAD6A300FFFFFFFF46483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C496E636C7564655C73746D33326631303378622E68000000000D73746D33326631303378622E6800000000F6FA7D00FFFFFFFF44483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C496E636C7564655C73746D3332663178782E68000000000B73746D3332663178782E6800000000B5E99D00FFFFFFFF47483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C496E635C73746D3332663178785F68616C5F6770696F5F65782E68000000001773746D3332663178785F68616C5F6770696F5F65782E68000000005FC3CF00FFFFFFFF5B483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C536F757263655C54656D706C617465735C61726D5C737461727475705F73746D33326631303178362E730000000015737461727475705F73746D33326631303178362E7300000000C1838300FFFFFFFF21483A5C2E484F4242595C6C616D705C436F72655C496E635C7365676D656E742E6800000000097365676D656E742E6800000000CACAD500FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000000000000200000023010000660000009006000007030000 + 2117 + 01000000040000000100000001000000010000000100000000000000020000000000000001000000010000000000000028000000280000000100000017000000020000000100000023483A5C2E484F4242595C6C616D705C436F72655C436C6F636B5C7365676D656E742E6300000000097365676D656E742E6300000000C5D4F200FFFFFFFF2C483A5C2E484F4242595C6C616D705C4D444B2D41524D5C737461727475705F73746D33326631303378622E730000000015737461727475705F73746D33326631303378622E7300000000FFDC7800FFFFFFFF1E483A5C2E484F4242595C6C616D705C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF46483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F74696D5F65782E63000000001673746D3332663178785F68616C5F74696D5F65782E6300000000F0A0A100FFFFFFFF1E483A5C2E484F4242595C6C616D705C436F72655C5372635C6770696F2E6300000000066770696F2E6300000000BCA8E100FFFFFFFF26483A5C2E484F4242595C6C616D705C436F72655C5372635C73746D3332663178785F69742E63000000000E73746D3332663178785F69742E63000000009CC1B600FFFFFFFF3F483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C2E63000000000F73746D3332663178785F68616C2E6300000000F7B88600FFFFFFFF2B483A5C2E484F4242595C6C616D705C436F72655C5372635C73746D3332663178785F68616C5F6D73702E63000000001373746D3332663178785F68616C5F6D73702E6300000000D9ADC200FFFFFFFF2A483A5C2E484F4242595C6C616D705C436F72655C5372635C73797374656D5F73746D3332663178782E63000000001273797374656D5F73746D3332663178782E6300000000A5C2D700FFFFFFFF43483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7263632E63000000001373746D3332663178785F68616C5F7263632E6300000000B3A6BE00FFFFFFFF1D483A5C2E484F4242595C6C616D705C436F72655C5372635C74696D2E63000000000574696D2E6300000000EAD6A300FFFFFFFF46483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C496E636C7564655C73746D33326631303378622E68000000000D73746D33326631303378622E6800000000F6FA7D00FFFFFFFF44483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C496E636C7564655C73746D3332663178782E68000000000B73746D3332663178782E6800000000B5E99D00FFFFFFFF47483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C496E635C73746D3332663178785F68616C5F6770696F5F65782E68000000001773746D3332663178785F68616C5F6770696F5F65782E68000000005FC3CF00FFFFFFFF5B483A5C2E484F4242595C6C616D705C447269766572735C434D5349535C4465766963655C53545C53544D3332463178785C536F757263655C54656D706C617465735C61726D5C737461727475705F73746D33326631303178362E730000000015737461727475705F73746D33326631303178362E7300000000C1838300FFFFFFFF23483A5C2E484F4242595C6C616D705C436F72655C436C6F636B5C7365676D656E742E6800000000097365676D656E742E6800000000CACAD500FFFFFFFF20483A5C2E484F4242595C6C616D705C436F72655C436C6F636B5C6D656E752E6300000000066D656E752E6300000000C5D4F200FFFFFFFF29483A5C2E484F4242595C6C616D705C436F72655C436C6F636B5C636C6F636B5F6D616E616765722E63000000000F636C6F636B5F6D616E616765722E6300000000FFDC7800FFFFFFFF1D483A5C2E484F4242595C6C616D705C436F72655C5372635C7274632E6300000000057274632E6300000000BECEA100FFFFFFFF43483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7274632E63000000001373746D3332663178785F68616C5F7274632E6300000000F0A0A100FFFFFFFF43483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C496E635C73746D3332663178785F68616C5F7274632E68000000001373746D3332663178785F68616C5F7274632E6800000000BCA8E100FFFFFFFF43483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F74696D2E63000000001373746D3332663178785F68616C5F74696D2E63000000009CC1B600FFFFFFFF44483A5C2E484F4242595C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F6770696F2E63000000001473746D3332663178785F68616C5F6770696F2E6300000000F7B88600FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD50001000000000000000200000023010000660000009006000007030000 @@ -1824,8 +1824,8 @@ 59392 File - 2925 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000553572D4450960000000000000014000553572D44500B73746D33326631303378620B4750494F5F50494E5F3135125669727475616C537065656453656E736F720952657655704374726C1153706565646E506F734664626B5F53544F1368616C6C5F73706565645F706F735F6664626B1853544F5F434F524449435F53706565646E506F734664626B06636F726469630A535044504F545F52756E16506F74656E74696F6D657465725F48616E646C655F7413504F545F54616B654D6561737572656D656E74077048616E646C650D506F74526567436F6E765F4D31214D435F4150505F506F73744D656469756D4672657175656E6379486F6F6B5F4D310E4D435F53746172744D6F746F72310E4D43495F53746172744D6F746F72094E4F5F4641554C545306424541434F4E106652585061636B657450726F636573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 + 2997 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE80300000000000000000000000000000000000000000000000100000001000000960000000200205000000000255F5F48414C5F54494D5F4D4F455F44495341424C455F554E434F4E444954494F4E414C4C5996000000000000001400255F5F48414C5F54494D5F4D4F455F44495341424C455F554E434F4E444954494F4E414C4C590850574D5F53746F700C524546524553485F52415445155550505F43555252454E545F52414E47455F353041155550505F43555252454E545F52414E47455F3930410553572D44500B73746D33326631303378620B4750494F5F50494E5F3135125669727475616C537065656453656E736F720952657655704374726C1153706565646E506F734664626B5F53544F1368616C6C5F73706565645F706F735F6664626B1853544F5F434F524449435F53706565646E506F734664626B06636F726469630A535044504F545F52756E16506F74656E74696F6D657465725F48616E646C655F7413504F545F54616B654D6561737572656D656E74077048616E646C650D506F74526567436F6E765F4D31214D435F4150505F506F73744D656469756D4672657175656E6379486F6F6B5F4D310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -1841,7 +1841,7 @@ Build 968 - 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000046C616D7096000000000000000100046C616D70000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 + 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000046C616D7096000000000000000100046C616D70000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 583 @@ -1857,7 +1857,7 @@ Debug 2373 - 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 + 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 898 @@ -1890,11 +1890,11 @@ 0 16 - D60000004F0000009B030000BA000000 + D60000004F000000B6030000BA000000 16 - D6000000660000009B030000D1000000 + D600000066000000B6030000D1000000 @@ -1910,7 +1910,7 @@ 0 16 - 0300000066000000CF000000EA020000 + 0300000066000000CF0000005B020000 16 @@ -1930,7 +1930,7 @@ 0 16 - 0300000066000000CF000000EA020000 + 0300000066000000CF0000005B020000 16 @@ -1950,7 +1950,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -1970,7 +1970,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -1990,7 +1990,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2010,7 +2010,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2030,11 +2030,11 @@ 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2050,7 +2050,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2070,7 +2070,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2090,7 +2090,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2110,7 +2110,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2130,7 +2130,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2150,7 +2150,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2170,7 +2170,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2190,7 +2190,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2210,7 +2210,7 @@ 0 16 - 0300000066000000CF000000EA020000 + 0300000066000000CF0000005B020000 16 @@ -2230,7 +2230,7 @@ 0 16 - 0300000066000000CF000000EA020000 + 0300000066000000CF0000005B020000 16 @@ -2250,7 +2250,7 @@ 0 16 - 0300000033020000D90400008E020000 + 03000000540300008D060000AF030000 16 @@ -2270,7 +2270,7 @@ 0 16 - 000000000703000090060000C8030000 + 00000000780200009006000039030000 16 @@ -2280,7 +2280,7 @@ 199 199 - 0 + 1 0 0 0 @@ -2290,7 +2290,7 @@ 0 16 - 0300000033020000D90400008E020000 + 000000005103000090060000C8030000 16 @@ -2310,7 +2310,7 @@ 0 16 - D6000000630000009B030000BA000000 + D600000063000000B6030000BA000000 16 @@ -2330,7 +2330,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2366,15 +2366,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2390,7 +2390,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2410,7 +2410,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2430,7 +2430,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2450,7 +2450,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2470,7 +2470,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -2486,15 +2486,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2506,15 +2506,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2526,15 +2526,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2546,15 +2546,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2566,15 +2566,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2586,15 +2586,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2606,15 +2606,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2626,15 +2626,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2646,15 +2646,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2666,15 +2666,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2686,15 +2686,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2706,15 +2706,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2726,15 +2726,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2746,15 +2746,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2766,15 +2766,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2786,35 +2786,35 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 35901 35901 - 0 + 1 0 0 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2826,35 +2826,35 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 35903 35903 - 1 + 0 0 0 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2870,7 +2870,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2886,15 +2886,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -2910,7 +2910,7 @@ 0 16 - 0300000066000000CF000000EA020000 + 0300000066000000CF0000005B020000 16 @@ -2930,7 +2930,7 @@ 0 16 - 0300000033020000D90400008E020000 + 03000000540300008D060000AF030000 16 @@ -2950,7 +2950,7 @@ 0 16 - 0300000033020000D90400008E020000 + 03000000540300008D060000AF030000 16 @@ -2970,7 +2970,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -2990,7 +2990,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -3010,7 +3010,7 @@ 0 16 - 0300000033020000D90400008E020000 + 03000000540300008D060000AF030000 16 @@ -3030,7 +3030,7 @@ 0 16 - 0300000033020000D90400008E020000 + 03000000540300008D060000AF030000 16 @@ -3050,7 +3050,7 @@ 0 16 - D90000006600000098030000A1000000 + D900000066000000B3030000A1000000 16 @@ -3066,15 +3066,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3086,15 +3086,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3106,15 +3106,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3126,15 +3126,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3146,15 +3146,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3166,15 +3166,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3186,15 +3186,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3206,15 +3206,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3226,15 +3226,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3246,15 +3246,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3266,15 +3266,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3286,15 +3286,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3306,15 +3306,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3326,15 +3326,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3346,15 +3346,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3366,15 +3366,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3386,15 +3386,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3406,15 +3406,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3426,15 +3426,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3446,15 +3446,15 @@ 0 32767 0 - 4096 + 16384 0 16 - BA040000660000008D060000EA020000 + BD03000066000000A20500005B020000 16 - A4000000BB0000007601000080010000 + F204000067010000A50500008C030000 @@ -3550,7 +3550,7 @@ 0 16 - A203000066000000B0040000EA020000 + AC050000660000008D0600005B020000 16 @@ -3558,15 +3558,15 @@ - 3449 - 000000000C000000000000000020000001000000FFFFFFFFFFFFFFFFD6000000BA0000009B030000BE00000001000000010000100400000001000000000000000000000000000000000000000000000001000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000001000000D6000000660000009B030000D1000000D60000004F0000009B030000BA0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000001000000FFFFFFFFFFFFFFFF9B0300004F0000009F030000030300000100000002000010040000000100000087FCFFFF5900000000000000000000000000000001000000FFFFFFFF100000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000408C0000018000400000010000009F03000066000000B30400001A0300009F0300004F000000B3040000030300000000000040410056100000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF054750494F4101000000408C000001000000FFFFFFFFFFFFFFFF0500000000000000000000000000000000000000000000000000000001000000FFFFFFFF8F07000001000000FFFFFFFF8F070000000000000040000001000000FFFFFFFFFFFFFFFFB30400004F000000B7040000030300000100000002000010040000000100000029FCFFFFD8010000FFFFFFFF2A000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000001000000B704000066000000900600001A030000B70400004F000000900600000303000000000000404100562A0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF044146494F010000003F8C000001000000FFFFFFFFFFFFFFFF054750494F4201000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFF15000000000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFD20000004F000000D600000003030000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000D20000001A030000000000004F000000D2000000030300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF000000000303000090060000070300000100000001000010040000000100000042FEFFFFDE00000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFF48030000850200004C030000C803000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000000000000FFFFFFFFFFFFFFFF0000000018020000DC0400001C020000000000000100000004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF01000077940000018000800000000000000000000033020000DC040000BE020000000000001C020000DC040000A70200000000000040820046060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 3446 + 000000000B000000000000000020000001000000FFFFFFFFFFFFFFFFD6000000BA000000B6030000BE00000001000000010000100400000001000000000000000000000000000000000000000000000001000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000001000000D600000066000000B6030000D1000000D60000004F000000B6030000BA0000000000000040280056080000000B446973617373656D626C7901000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFF0000000000000000000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000001000000FFFFFFFFFFFFFFFFB60300004F000000BA03000074020000010000000200001004000000010000005CFCFFFF060200000000000000000000000000000100000000000000000000000000000001000000FFFFFFFF2A000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000001000000BA03000066000000A50500008B020000BA0300004F000000A50500007402000000000000404100562A0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF054750494F43010000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF044146494F000000003F8C000001000000FFFFFFFFFFFFFFFF054750494F4201000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFF1200000000000000FFFFFFFF100000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000408C000001800040000001000000A905000066000000900600008B020000A90500004F00000090060000740200000000000040410056100000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031010000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203101000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFF054750494F4101000000408C000001000000FFFFFFFFFFFFFFFF050000000000000002000000000000000100000002000000FFFFFFFFA50500004F000000A90500007402000001000000020000100400000000000000B6FEFFFF850100000000000000000000000000000000000002000000FFFFFFFFE2050000FFFFFFFF8F07000001000000FFFFFFFFE205000001000000FFFFFFFF8F070000000000000010000001000000FFFFFFFFFFFFFFFFD20000004F000000D600000074020000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000D20000008B020000000000004F000000D2000000740200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7300000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657300000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273010000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000001000000FFFFFFFFFFFFFFFF000000007402000090060000780200000100000001000010040000000100000042FEFFFFDE00000000000000000000000000000001000000C60000000000000001000000000000000000000001000000FFFFFFFF48030000850200004C030000C803000000000000020000000400000000000000000000000000000000000000000000000000000001000000C600000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF0000000039030000900600003D030000010000000100001004000000010000000000000000000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF0100007794000001800080000001000000000000005403000090060000DF030000000000003D03000090060000C80300000000000040820056060000000C4275696C64204F757470757400000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0642726F777365000000007794000001000000FFFFFFFFFFFFFFFF01000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File - 2925 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000553572D4450960000000000000014000553572D44500B73746D33326631303378620B4750494F5F50494E5F3135125669727475616C537065656453656E736F720952657655704374726C1153706565646E506F734664626B5F53544F1368616C6C5F73706565645F706F735F6664626B1853544F5F434F524449435F53706565646E506F734664626B06636F726469630A535044504F545F52756E16506F74656E74696F6D657465725F48616E646C655F7413504F545F54616B654D6561737572656D656E74077048616E646C650D506F74526567436F6E765F4D31214D435F4150505F506F73744D656469756D4672657175656E6379486F6F6B5F4D310E4D435F53746172744D6F746F72310E4D43495F53746172744D6F746F72094E4F5F4641554C545306424541434F4E106652585061636B657450726F636573730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000100150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 + 2997 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE80300000000000000000000000000000000000000000000000100000001000000960000000200205000000000255F5F48414C5F54494D5F4D4F455F44495341424C455F554E434F4E444954494F4E414C4C5996000000000000001400255F5F48414C5F54494D5F4D4F455F44495341424C455F554E434F4E444954494F4E414C4C590850574D5F53746F700C524546524553485F52415445155550505F43555252454E545F52414E47455F353041155550505F43555252454E545F52414E47455F3930410553572D44500B73746D33326631303378620B4750494F5F50494E5F3135125669727475616C537065656453656E736F720952657655704374726C1153706565646E506F734664626B5F53544F1368616C6C5F73706565645F706F735F6664626B1853544F5F434F524449435F53706565646E506F734664626B06636F726469630A535044504F545F52756E16506F74656E74696F6D657465725F48616E646C655F7413504F545F54616B654D6561737572656D656E74077048616E646C650D506F74526567436F6E765F4D31214D435F4150505F506F73744D656469756D4672657175656E6379486F6F6B5F4D310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000100150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000000180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -3622,12 +3622,12 @@ 0 100 - 0 + 2 - ..\Core\Src\segment.c + ..\Core\Clock\segment.c 0 - 174 - 184 + 179 + 190 1 0 @@ -3635,7 +3635,7 @@ startup_stm32f103xb.s 0 - 124 + 127 134 1 @@ -3643,9 +3643,9 @@ ../Core/Src/main.c - 0 - 69 - 79 + 21 + 104 + 118 1 0 @@ -3661,9 +3661,9 @@ ../Core/Src/gpio.c - 44 - 31 - 73 + 0 + 46 + 54 1 0 @@ -3671,7 +3671,7 @@ ../Core/Src/stm32f1xx_it.c 0 - 40 + 1 1 1 @@ -3689,7 +3689,7 @@ ../Core/Src/stm32f1xx_hal_msp.c 0 - 35 + 41 78 1 @@ -3759,10 +3759,73 @@ 0 - ..\Core\Inc\segment.h - 13 + ..\Core\Clock\segment.h + 11 1 - 11 + 12 + 1 + + 0 + + + ..\Core\Clock\menu.c + 0 + 382 + 418 + 1 + + 0 + + + ..\Core\Clock\clock_manager.c + 49 + 16 + 34 + 1 + + 0 + + + ../Core/Src/rtc.c + 42 + 29 + 45 + 1 + + 0 + + + ../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rtc.c + 0 + 353 + 354 + 1 + + 0 + + + ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h + 29 + 260 + 291 + 1 + + 0 + + + ../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c + 0 + 3818 + 3828 + 1 + + 0 + + + ../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c + 0 + 425 + 432 1 0 diff --git a/MDK-ARM/lamp.uvguix.wot89 b/MDK-ARM/lamp.uvguix.wot89 index a9246fb..1f8f601 100644 --- a/MDK-ARM/lamp.uvguix.wot89 +++ b/MDK-ARM/lamp.uvguix.wot89 @@ -10,18 +10,6 @@ - - System Viewer\BKP - 35903 - - 121 - - - System Viewer\GPIOA - 35902 - - 127 - System Viewer\GPIOB 35905 @@ -45,7 +33,7 @@ 346 Code Coverage - 1010 100 + 1025 145 204 @@ -95,7 +83,7 @@ 466 Source Browser 500 - 166 + 300 @@ -135,8 +123,8 @@ 0 - 1266 - 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000F00000003000000010000002B453A5C686F6262795C6C616D705C4D444B2D41524D5C737461727475705F73746D33326631303378622E730000000015737461727475705F73746D33326631303378622E7300000000FFDC7800FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF45453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F74696D5F65782E63000000001673746D3332663178785F68616C5F74696D5F65782E6300000000F0A0A100FFFFFFFF22453A5C686F6262795C6C616D705C436F72655C436C6F636B5C7365676D656E742E6300000000097365676D656E742E6300000000F0A0A100FFFFFFFF1F453A5C686F6262795C6C616D705C436F72655C436C6F636B5C6D656E752E6800000000066D656E752E6800000000BCA8E100FFFFFFFF1F453A5C686F6262795C6C616D705C436F72655C436C6F636B5C6D656E752E6300000000066D656E752E63000000009CC1B600FFFFFFFF22453A5C686F6262795C6C616D705C436F72655C436C6F636B5C7365676D656E742E6800000000097365676D656E742E6800000000F7B88600FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C496E635C6D61696E2E6800000000066D61696E2E6800000000D9ADC200FFFFFFFF28453A5C686F6262795C6C616D705C436F72655C436C6F636B5C636C6F636B5F6D616E616765722E68000000000F636C6F636B5F6D616E616765722E6800000000A5C2D700FFFFFFFF28453A5C686F6262795C6C616D705C436F72655C436C6F636B5C636C6F636B5F6D616E616765722E63000000000F636C6F636B5F6D616E616765722E6300000000B3A6BE00FFFFFFFF42453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C496E635C73746D3332663178785F68616C5F7274632E68000000001373746D3332663178785F68616C5F7274632E6800000000EAD6A300FFFFFFFF42453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7274632E63000000001373746D3332663178785F68616C5F7274632E6300000000F6FA7D00FFFFFFFF45453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7274635F65782E63000000001673746D3332663178785F68616C5F7274635F65782E6300000000B5E99D00FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C5372635C6770696F2E6300000000066770696F2E63000000005FC3CF00FFFFFFFF1C453A5C686F6262795C6C616D705C436F72655C5372635C7274632E6300000000057274632E6300000000C1838300FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000C7000000660000008007000058030000 + 1317 + 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000001000000005000000010000002B453A5C686F6262795C6C616D705C4D444B2D41524D5C737461727475705F73746D33326631303378622E730000000015737461727475705F73746D33326631303378622E7300000000FFDC7800FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C5372635C6D61696E2E6300000000066D61696E2E6300000000BECEA100FFFFFFFF45453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F74696D5F65782E63000000001673746D3332663178785F68616C5F74696D5F65782E6300000000F0A0A100FFFFFFFF22453A5C686F6262795C6C616D705C436F72655C436C6F636B5C7365676D656E742E6300000000097365676D656E742E6300000000F0A0A100FFFFFFFF1F453A5C686F6262795C6C616D705C436F72655C436C6F636B5C6D656E752E6800000000066D656E752E6800000000BCA8E100FFFFFFFF1F453A5C686F6262795C6C616D705C436F72655C436C6F636B5C6D656E752E6300000000066D656E752E63000000009CC1B600FFFFFFFF22453A5C686F6262795C6C616D705C436F72655C436C6F636B5C7365676D656E742E6800000000097365676D656E742E6800000000F7B88600FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C496E635C6D61696E2E6800000000066D61696E2E6800000000D9ADC200FFFFFFFF28453A5C686F6262795C6C616D705C436F72655C436C6F636B5C636C6F636B5F6D616E616765722E68000000000F636C6F636B5F6D616E616765722E6800000000A5C2D700FFFFFFFF28453A5C686F6262795C6C616D705C436F72655C436C6F636B5C636C6F636B5F6D616E616765722E63000000000F636C6F636B5F6D616E616765722E6300000000B3A6BE00FFFFFFFF42453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C496E635C73746D3332663178785F68616C5F7274632E68000000001373746D3332663178785F68616C5F7274632E6800000000EAD6A300FFFFFFFF42453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7274632E63000000001373746D3332663178785F68616C5F7274632E6300000000F6FA7D00FFFFFFFF45453A5C686F6262795C6C616D705C447269766572735C53544D3332463178785F48414C5F4472697665725C5372635C73746D3332663178785F68616C5F7274635F65782E63000000001673746D3332663178785F68616C5F7274635F65782E6300000000B5E99D00FFFFFFFF1D453A5C686F6262795C6C616D705C436F72655C5372635C6770696F2E6300000000066770696F2E63000000005FC3CF00FFFFFFFF1C453A5C686F6262795C6C616D705C436F72655C5372635C7274632E6300000000057274632E6300000000C1838300FFFFFFFF1C453A5C686F6262795C6C616D705C436F72655C5372635C74696D2E63000000000574696D2E6300000000CACAD500FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000C7000000660000008007000058030000 @@ -159,7 +147,7 @@ 16 - F40000006600000090050000FC000000 + 7408000066000000100D0000FC000000 @@ -1175,7 +1163,7 @@ 0 16 - 0300000066000000C000000070060000 + 0300000066000000C000000028030000 16 @@ -1195,7 +1183,7 @@ 0 16 - 030000005C03000035040000F5030000 + 030000005C0300007D070000F5030000 16 @@ -1215,7 +1203,7 @@ 0 16 - 030000005C03000035040000F5030000 + 030000005C0300007D070000F5030000 16 @@ -1275,7 +1263,7 @@ 0 16 - 030000005C03000035040000F5030000 + 030000005C0300007D070000F5030000 16 @@ -1295,7 +1283,7 @@ 0 16 - 030000005C03000035040000F5030000 + 030000005C0300007D070000F5030000 16 @@ -1824,14 +1812,14 @@ 3312 - 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFF4000000E500000090050000E9000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E650020000000000000F40000006600000090050000FC000000F40000004F00000090050000E50000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000041020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000A0040000660000009005000058020000A00400004F000000900500004102000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFC30000004F000000C70000004103000001000000020000100400000001000000C4FFFFFFF1030000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000000000000066000000C3000000A0060000000000004F000000C3000000410300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF000000002D020000900500003102000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB09000001800080000000000000000000004802000090050000F2020000000000003102000090050000DB02000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFC802000031020000CC020000DB02000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF0000000041030000800700004503000001000000010000100400000001000000D0FDFFFF84010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF010000779400000180008000000100000000000000A4060000380400006D0700000000000045030000800700000E0400000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFF4000000E500000090050000E9000000000000000100000004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E6500200000000000007408000066000000100D0000FC000000F40000004F00000090050000E50000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF9C0400004F000000A004000041020000000000000200000004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C3000001800040000000000000200C000066000000100D000058020000A00400004F000000900500004102000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFC30000004F000000C70000004103000001000000020000100400000001000000C4FFFFFFF1030000FFFFFFFF05000000ED0300006D000000C3000000C4000000739400000180001000000100000080070000660000004308000058030000000000004F000000C3000000410300000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF000000002D020000900500003102000000000000010000000400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000018000800000000000008007000048020000100D0000F2020000000000003102000090050000DB02000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFFC802000031020000CC020000DB02000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF0000000041030000800700004503000001000000010000100400000001000000D0FDFFFF84010000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF0100007794000001800080000001000000800700005C030000000F0000250400000000000045030000800700000E0400000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657301000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF0E536F757263652042726F7773657200000000D201000001000000FFFFFFFFFFFFFFFF0E416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 59392 File 2905 - 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000A52656164427574746F6E960000000000000014000A52656164427574746F6E000C425554544F4E5F434F554E540F627574746F6E507265765374617465125245504541545F494E54455256414C5F4D5311424C494E4B5F494E54455256414C5F4D53084C6F6164447574790E53544154455F5345545F4455545908424B505F424153451348414C5F52544345785F424B555057726974650853617665447574790D50726F63657373427574746F6E0673797374656D0A696E4D61696E4D656E751455706461746553657454696D65446973706C617914436C6F636B4D616E616765725F50726F6365737314436C6F636B4D616E616765725F47657454696D65087274635F74696D650E4D656E755F54696D65725469636B1273436C6F636B536F75726365436F6E6669670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE803000000000000000000000000000000000000000000000001000000010000009600000002002050000000000A52656164427574746F6E9600000000000000140014436C6F636B4D616E616765725F47657454696D650A52656164427574746F6E000C425554544F4E5F434F554E540F627574746F6E507265765374617465125245504541545F494E54455256414C5F4D5311424C494E4B5F494E54455256414C5F4D53084C6F6164447574790E53544154455F5345545F4455545908424B505F424153451348414C5F52544345785F424B555057726974650853617665447574790D50726F63657373427574746F6E0673797374656D0A696E4D61696E4D656E751455706461746553657454696D65446973706C617914436C6F636B4D616E616765725F50726F63657373087274635F74696D650E4D656E755F54696D65725469636B1273436C6F636B536F75726365436F6E6669670000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E2280000002000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B46350000000000000000000000000100000001000000000000000000000001000000020021802280000000000000150000002153746172742F53746F70202644656275672053657373696F6E094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000021456E65726779204D6561737572656D656E742026776974686F75742044656275670000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000003002180C8880000000000001700000027264B696C6C20416C6C20427265616B706F696E747320696E2043757272656E7420546172676574000000000000000000000000010000000100000000000000000000000100000000002180E50100000000000078000000264B696C6C20416C6C20427265616B706F696E747320696E204163746976652050726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180E601000000000000790000002F4B696C6C20416C6C20427265616B706F696E747320696E204D756C74692D50726F6A65637420576F726B73706163650000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A0000000F2650726F6A6563742057696E646F77000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000001000000000000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65C6030000 1423 @@ -1847,7 +1835,7 @@ Build 968 - 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0000000000000000010000000000000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000046C616D7096000000000000000100046C616D70000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 + 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000000001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A0000000C4261746368204275696C2664000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A0000000C4261746368204275696C266400000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000D42617463682052656275696C640000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF0B426174636820436C65616E0100000000000000000000000100000001000000000000000000000001000000000005809E8A0000000000001F0000000F4261746326682053657475702E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA0000000000000000000000000000000000000000000000000100000001000000960000000300205000000000046C616D7096000000000000000100046C616D70000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64DC010000 583 @@ -1863,7 +1851,7 @@ Debug 2373 - 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72010000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 + 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B00000000000031000000085761746368202631000000000000000000000000010000000100000000000000000000000100000000001380D98B00000000000031000000085761746368202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720000000000000000010000000000000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B00000000000032000000094D656D6F7279202631000000000000000000000000010000000100000000000000000000000100000000001380D38B00000000000032000000094D656D6F7279202632000000000000000000000000010000000100000000000000000000000100000000001380D48B00000000000032000000094D656D6F7279202633000000000000000000000000010000000100000000000000000000000100000000001380D58B00000000000032000000094D656D6F72792026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F77730000000000000000000000000100000001000000000000000000000001000000040013809307000000000000330000000855415254202326310000000000000000000000000100000001000000000000000000000001000000000013809407000000000000330000000855415254202326320000000000000000000000000100000001000000000000000000000001000000000013809507000000000000330000000855415254202326330000000000000000000000000100000001000000000000000000000001000000000013809607000000000000330000001626446562756720287072696E746629205669657765720000000000000000000000000100000001000000000000000000000001000000000013803C010000000000007200000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000F264C6F67696320416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000001526506572666F726D616E636520416E616C797A6572000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000E26436F646520436F766572616765000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7200000000000000000100000000000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720000000000000000010000000000000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720000000000000000010000000000000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000F26546F6F6C626F782057696E646F7700000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730000000000000000010000000000000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000010000000000000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F72000000000000000001000000000000000100000000000000000000000100000000000000000005446562756764020000 898 @@ -3628,7 +3616,7 @@ 0 100 - 3 + 5 startup_stm32f103xb.s 0 @@ -3641,7 +3629,7 @@ ../Core/Src/main.c 0 - 63 + 46 88 1 @@ -3676,9 +3664,9 @@ ..\Core\Clock\menu.c - 38 - 109 - 154 + 52 + 224 + 253 1 0 @@ -3703,18 +3691,18 @@ ..\Core\Clock\clock_manager.h - 6 + 37 1 - 26 + 12 1 0 ..\Core\Clock\clock_manager.c - 25 - 1 - 52 + 27 + 12 + 29 1 0 @@ -3764,6 +3752,15 @@ 0 + + ../Core/Src/tim.c + 27 + 1 + 1 + 1 + + 0 + diff --git a/MDK-ARM/lamp.uvoptx b/MDK-ARM/lamp.uvoptx index 4e49186..188387c 100644 --- a/MDK-ARM/lamp.uvoptx +++ b/MDK-ARM/lamp.uvoptx @@ -148,33 +148,40 @@ (105=-1,-1,-1,-1,0) - + + + 0 + 0 + 111 + 1 +
134234580
+ 0 + 0 + 0 + 0 + 0 + 1 + ../Core/Src/main.c + + \\lamp\../Core/Src/main.c\111 +
+
0 1 - GLOBAL_BRIGHTNESS,0x0A + dutyValue,0x0A 1 1 - REFRESH_RATE,0x0A + menu 2 1 - menu,0x0A - - - 3 - 1 rtc_time - - 4 - 1 - dutyValue,0x0A - 0 @@ -219,18 +226,14 @@ - - System Viewer\BKP - 35903 - - - System Viewer\GPIOA - 35902 - System Viewer\GPIOB 35905 + + System Viewer\GPIOC + 35901 + System Viewer\RTC 35904 diff --git a/MDK-ARM/lamp/ExtDll.iex b/MDK-ARM/lamp/ExtDll.iex deleted file mode 100644 index 6c0896e..0000000 --- a/MDK-ARM/lamp/ExtDll.iex +++ /dev/null @@ -1,2 +0,0 @@ -[EXTDLL] -Count=0 diff --git a/MDK-ARM/lamp/clock_manager.d b/MDK-ARM/lamp/clock_manager.d deleted file mode 100644 index 1ae0839..0000000 --- a/MDK-ARM/lamp/clock_manager.d +++ /dev/null @@ -1,34 +0,0 @@ -lamp/clock_manager.o: ..\Core\Clock\clock_manager.c \ - ..\Core\Clock\clock_manager.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h \ - ..\Core\Clock\segment.h ..\Core\Inc\rtc.h diff --git a/MDK-ARM/lamp/clock_manager.o b/MDK-ARM/lamp/clock_manager.o deleted file mode 100644 index 2980274..0000000 Binary files a/MDK-ARM/lamp/clock_manager.o and /dev/null differ diff --git a/MDK-ARM/lamp/gpio.crf b/MDK-ARM/lamp/gpio.crf deleted file mode 100644 index 27547ac..0000000 Binary files a/MDK-ARM/lamp/gpio.crf and /dev/null differ diff --git a/MDK-ARM/lamp/gpio.d b/MDK-ARM/lamp/gpio.d deleted file mode 100644 index c6be5a9..0000000 --- a/MDK-ARM/lamp/gpio.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/gpio.o: ..\Core\Src\gpio.c ..\Core\Inc\gpio.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/gpio.o b/MDK-ARM/lamp/gpio.o deleted file mode 100644 index 16e5d12..0000000 Binary files a/MDK-ARM/lamp/gpio.o and /dev/null differ diff --git a/MDK-ARM/lamp/lamp.axf b/MDK-ARM/lamp/lamp.axf deleted file mode 100644 index fd7237d..0000000 Binary files a/MDK-ARM/lamp/lamp.axf and /dev/null differ diff --git a/MDK-ARM/lamp/lamp.build_log.htm b/MDK-ARM/lamp/lamp.build_log.htm deleted file mode 100644 index 995b1e9..0000000 --- a/MDK-ARM/lamp/lamp.build_log.htm +++ /dev/null @@ -1,60 +0,0 @@ - - -
-

Vision Build Log

-

Tool Versions:

-IDE-Version: Vision V5.38.0.0 -Copyright (C) 2022 ARM Ltd and ARM Germany GmbH. All rights reserved. -License Information: DCV DFG, DFG, LIC=9N0AE-5PEVG-5BIEB-2F4C2-IAFNB-TVDES - -Tool Versions: -Toolchain: MDK-ARM Professional Version: 5.38.0.0 -Toolchain Path: E:\Keil_v5\ARM\ARMCLANG\Bin -C Compiler: ArmClang.exe V6.19 -Assembler: Armasm.exe V6.19 -Linker/Locator: ArmLink.exe V6.19 -Library Manager: ArmAr.exe V6.19 -Hex Converter: FromElf.exe V6.19 -CPU DLL: SARMCM3.DLL V5.38.0.0 -Dialog DLL: DCM.DLL V1.17.5.0 -Target DLL: STLink\ST-LINKIII-KEIL_SWO.dll V3.1.0.0 -Dialog DLL: TCM.DLL V1.56.4.0 - -

Project:

-E:\hobby\lamp\MDK-ARM\lamp.uvprojx -Project File Date: 04/10/2026 - -

Output:

-*** Using Compiler 'V6.19', folder: 'E:\Keil_v5\ARM\ARMCLANG\Bin' -Build target 'lamp' -compiling segment.c... -linking... -Program Size: Code=16328 RO-data=456 RW-data=20 ZI-data=1852 -FromELF: creating hex file... -"lamp\lamp.axf" - 0 Error(s), 0 Warning(s). - -

Software Packages used:

- -Package Vendor: ARM - http://www.keil.com/pack/ARM.CMSIS.5.9.0.pack - ARM.CMSIS.5.9.0 - CMSIS (Common Microcontroller Software Interface Standard) - * Component: CORE Version: 5.6.0 - -Package Vendor: Keil - http://www.keil.com/pack/Keil.STM32F1xx_DFP.2.4.0.pack - Keil.STM32F1xx_DFP.2.4.0 - STMicroelectronics STM32F1 Series Device Support, Drivers and Examples - -

Collection of Component include folders:

- ./RTE/_lamp - E:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include - E:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include - -

Collection of Component Files used:

- - * Component: ARM::CMSIS:CORE:5.6.0 -Build Time Elapsed: 00:00:01 -
- - diff --git a/MDK-ARM/lamp/lamp.hex b/MDK-ARM/lamp/lamp.hex deleted file mode 100644 index 09f2fd1..0000000 --- a/MDK-ARM/lamp/lamp.hex +++ /dev/null @@ -1,1054 +0,0 @@ -:020000040800F2 -:100000005007002089010008452E00083D26000801 -:10001000B92A000891020008B53F0008000000005E -:10002000000000000000000000000000DD380008B3 -:10003000C103000800000000992F0008F13A0008F1 -:10004000A3010008A3010008A3010008A301000800 -:10005000A3010008A3010008A3010008A3010008F0 -:10006000A3010008A3010008A3010008A3010008E0 -:10007000A3010008A3010008A3010008A3010008D0 -:10008000A3010008A3010008A3010008A3010008C0 -:10009000A3010008A3010008A3010008A3010008B0 -:1000A000A3010008A3010008A3010008A3010008A0 -:1000B000913B0008A3010008A3010008A301000868 -:1000C000A3010008A3010008A3010008A301000880 -:1000D000A3010008A3010008A3010008A301000870 -:1000E000A3010008A3010008A301000800F002F822 -:1000F00000F03AF80AA090E8000C82448344AAF188 -:100100000107DA4501D100F02FF8AFF2090EBAE885 -:100110000F0013F0010F18BFFB1A43F0010318473B -:100120005040000070400000103A24BF78C878C1E9 -:10013000FAD8520724BF30C830C144BF04680C60ED -:10014000704700000023002400250026103A28BF35 -:1001500078C1FBD8520728BF30C148BF0B60704739 -:100160001FB51FBD10B510BD00F058F81146FFF7C0 -:10017000F7FF03F081FF00F076F803B4FFF7F2FF1A -:1001800003BC00F07DF8000009488047094800479B -:10019000FEE7FEE7FEE7FEE7FEE7FEE7FEE7FEE737 -:1001A000FEE7FEE704480549054A064B7047000094 -:1001B0008D3B0008ED000008500100205007002092 -:1001C00050030020500300204FF0000200B51346FA -:1001D00094469646203922BFA0E80C50A0E80C5067 -:1001E000B1F12001BFF4F7AF090728BFA0E80C5018 -:1001F00048BF0CC05DF804EB890028BF40F8042B11 -:1002000008BF704748BF20F8022B11F0804F18BF7D -:1002100000F8012B7047704770477047754600F033 -:100220002BF8AE4605006946534620F00700854688 -:1002300018B020B5FFF7B6FFBDE820404FF000062C -:100240004FF000074FF000084FF0000BAC46ACE851 -:10025000C009ACE8C009ACE8C009ACE8C00921F0AD -:1002600007018D46704710B50446AFF30080204665 -:10027000BDE81040FFF781BF00487047180000201C -:1002800001491820ABBEFEE72600020070470000BF -:10029000FFE7FEE740F20C00C2F200000078704772 -:1002A00080B584B040F29400C2F2000040F24811E0 -:1002B000C2F200010191002201F020FC01990A78AC -:1002C00040F28800C2F2000002704A7842708978D9 -:1002D000817081788DF80E100088ADF80C009DF8C3 -:1002E0000E008DF80A00BDF80C00ADF80800029869 -:1002F00004B080BD80B502F0E3FA40F20C00C2F217 -:100300000000007800EB80004000C0B203F028FB42 -:1003100040F29400C2F2000040F24811C2F2000123 -:10032000002201F0EBFB18B1FFE700F003F8FFE754 -:1003300080BD000080B500221046114600F022F872 -:1003400080BD000080B582B08DF807009DF80700E1 -:100350000B2804DBFFE70A208DF80700FFE79DF874 -:10036000071040F20C00C2F200000170007800EBB0 -:1003700080004000C0B203F0F3FA03F0B1FA02B01B -:1003800080BD000080B582B08DF807008DF80610A2 -:100390008DF805209DF807008DF800009DF80600F7 -:1003A0008DF801009DF805008DF8020040F29400E0 -:1003B000C2F200006946002201F036FD02B080BDA5 -:1003C0007047000080B586B040F2F000C2F2000035 -:1003D000007A01460491052800F262810499DFE861 -:1003E00011F006003A007300A800E9001E0140F277 -:1003F000F000C2F2000042794CF6CD41CCF6CC417F -:10040000A2FB0132D2088DF817204079A0FB012110 -:10041000C90801EB8101A0EB41008DF816009DF8A1 -:10042000170020B9FFE702208DF8170005E09DF8BE -:10043000170001388DF81700FFE79DF8170000EB53 -:1004400080019DF8160000EB410040F2F001C2F27D -:100450000001487124E140F2F000C2F2000042794C -:100460004CF6CD41CCF6CC41A2FB0132D2088DF83E -:1004700017204079A0FB0121C90801EB8101A0EB05 -:1004800041008DF816009DF8160048B9FFE79DF869 -:1004900017100920022908BF03208DF8160005E077 -:1004A0009DF8160001388DF81600FFE79DF817003B -:1004B00000EB80019DF8160000EB410040F2F001D6 -:1004C000C2F200014871EBE040F2F000C2F200001D -:1004D00082794CF6CD41CCF6CC41A2FB0132D20858 -:1004E0008DF817208079A0FB0121C90801EB81015B -:1004F000A0EB41008DF816009DF8170018B9FFE732 -:100500000520039004E09DF8170001380390FFE7F1 -:1005100003988DF817009DF8170000EB80019DF8F7 -:10052000160000EB410040F2F001C2F200018871B8 -:10053000B6E040F2F000C2F20000807949F698116E -:10054000C1F699114CF6CD42CCF6CC4200FB02101C -:100550004FEA7000884203D8FFE70920029012E0BA -:1005600040F2F000C2F2000081794CF6CD40CCF6AA -:10057000CC40A1FB0020C00800EB80006FEA4000E7 -:1005800008440290FFE702988DF8160040F2F0014F -:10059000C2F2000188794CF6CD42CCF6CC42A0FBE9 -:1005A0000220C00800EB80029DF8160000EB42001C -:1005B000887175E040F2F000C2F20000C2794CF69A -:1005C000CD41CCF6CC41A2FB0132D2088DF81720E8 -:1005D000C079A0FB0121C90801EB8101A0EB41001A -:1005E0008DF816009DF8170018B9FFE70520019057 -:1005F00004E09DF8170001380190FFE701988DF89D -:1006000017009DF8170000EB80019DF8160000EB25 -:10061000410040F2F001C2F20001C87140E040F236 -:10062000F000C2F20000C07949F69811C1F69911A4 -:100630004CF6CD42CCF6CC4200FB02104FEA7000E3 -:10064000884203D8FFE70920009012E040F2F00052 -:10065000C2F20000C1794CF6CD40CCF6CC40A1FBF3 -:100660000020C00800EB80006FEA400008440090C2 -:10067000FFE700988DF8160040F2F001C2F2000189 -:10068000C8794CF6CD42CCF6CC42A0FB0220C00883 -:1006900000EB80029DF8160000EB4200C871FFE7F6 -:1006A00003F084FB06B080BD40F61043C4F20103A2 -:1006B0004FF0004018604FF4801018604FF4002293 -:1006C0001A604FF4800119604FF4000119604FF077 -:1006D000807119604FF00071196040F61001C4F28A -:1006E00001014FF480330B604FF400330B604FF483 -:1006F00080230B600A6008604FF4001008607047A8 -:1007000082B08DF807009DF807000146009105288A -:100710002FD80099DFE801F0030A11181F2640F6D0 -:100720001001C4F201010120086022E040F610012E -:10073000C4F20101022008601BE040F61001C4F27F -:1007400001010420086014E040F61001C4F2010128 -:10075000082008600DE040F61001C4F201011020ED -:10076000086006E040F61001C4F201012020086094 -:10077000FFE702B07047000081B0EFF3108072B65F -:100780000090FFE7FEE7000082B001900091009822 -:1007900000784CF6CD41CCF6CC41A0FB01023020D4 -:1007A00000EBD202019B1A70009A1278A2FB01C3DF -:1007B000DB0803EB8303A2EB430242F03002019B10 -:1007C0005A70009A5278A2FB013200EBD202019BD0 -:1007D0009A70009A5278A2FB01C3DB0803EB8303F3 -:1007E000A2EB430242F03002019BDA70009A927849 -:1007F000A2FB013200EBD200019A107100988078C0 -:10080000A0FB0121C90801EB8101A0EB410040F0F0 -:1008100030000199487102B07047000082B08DF835 -:10082000060000200090FFE7009834281CD8FFE75E -:10083000009944F2F000C0F6000010F811009DF895 -:10084000061088420BD1FFE7009944F2F000C0F691 -:10085000000000EB410040788DF8070008E0FFE75A -:10086000009801300090DFE7FF208DF80700FFE7D8 -:100870009DF8070002B0704790B00F900E910020D5 -:100880000D900990FFE70E9800680D99C840002868 -:1008900000F07F81FFE70D99012088400C900E98B1 -:1008A00000680C9908400B900B980C99884240F016 -:1008B0006C81FFE70E9840680590002851D0FFE753 -:1008C000059801283AD0FFE7059802283FD0FFE7B6 -:1008D000059803285FD0FFE70598112832D0FFE77D -:1008E0000598122838D0FFE705980021C1F21101C0 -:1008F000884236D0FFE705980021C1F212018842F4 -:100900002FD0FFE705980021C1F22101884228D0AD -:10091000FFE705980021C1F22201884221D0FFE7BC -:1009200005980021C1F2310188421AD0FFE70598ED -:100930000021C1F23201884213D02FE00E98C06826 -:1009400009902CE00E98C0680430099027E00E98BA -:10095000C0680830099022E00E98C0680C300990F9 -:100960001DE00E98806818B9FFE70420099011E097 -:100970000E988068012806D1FFE7082009900C989E -:100980000F99086105E0082009900C980F994861BB -:10099000FFE7FFE703E00020099000E0FFE70B9886 -:1009A000FF2803D8FFE70F98049003E00F98043066 -:1009B0000490FFE7049808900B98FF2804D8FFE7FD -:1009C0000D988000039006E00D996FF01F0000EB7A -:1009D00081000390FFE70398079008980068079A42 -:1009E0000F21914088430999914008430899086074 -:1009F0000E98C079C006002840F1C680FFE7FFE7E7 -:100A000041F21800C4F20200016841F001010160E6 -:100A1000006800F0010006900698FFE70D9820F0AE -:100A200003000821C4F2010140580A900D9800F01B -:100A3000030081000F2000FA01F10A9888430A9010 -:100A40000F9840F60001C4F20101884203D1FFE78C -:100A50000020029026E00F9840F60041C4F2010108 -:100A6000884203D1FFE70120019018E00F9841F27E -:100A70000001C4F20101884203D1FFE70220009087 -:100A80000AE00F9941F20042C4F2010204209142AF -:100A900008BF03200090FFE700980190FFE701984E -:100AA0000290FFE702980D9901F00301890000FA16 -:100AB00001F10A9808430A900A980D9921F0030160 -:100AC0000822C4F2010288500E988079C0060028DE -:100AD00009D5FFE70B9A40F20841C4F2010108680A -:100AE0001043086008E00B9A40F20841C4F201018B -:100AF000086890430860FFE70E9880798006002818 -:100B000009D5FFE70B9A40F20C41C4F201010868D5 -:100B10001043086008E00B9A40F20C41C4F2010156 -:100B2000086890430860FFE70E98807980070028E6 -:100B300009D5FFE70B9A40F20441C4F201010868AD -:100B40001043086008E00B9A40F20441C4F201012E -:100B5000086890430860FFE70E988079C00748B1A5 -:100B6000FFE70B9A40F20041C4F20101086810430C -:100B7000086008E00B9A40F20041C4F201010868E5 -:100B800090430860FFE7FFE7FFE70D9801300D9005 -:100B900079E610B07047000082B00190ADF8021005 -:100BA00001988068BDF80210084204D0FFE70120D8 -:100BB0008DF8010003E000208DF80100FFE79DF8AB -:100BC000010002B07047000082B00190ADF8021041 -:100BD0008DF801209DF8010028B1FFE7BDF8020063 -:100BE0000199086105E0BDF802000004019908615F -:100BF000FFE702B07047000040F24C10C2F2000064 -:100C00000068704740F20D00C2F20000027840F226 -:100C10004C11C2F2000108681044086070470000DF -:100C200080B542F20001C4F20201086840F01000F1 -:100C30000860032000F096F80F2000F005F800F09F -:100C40003BF8002080BD000080B582B0009040F2EB -:100C50000800C2F20000006840F20D01C2F200017B -:100C60000A784FF47A71B1FBF2F1B0FBF1F001F0C8 -:100C7000AFF920B1FFE701208DF8070018E00098D8 -:100C80000F280DD8FFE700994FF0FF30002200F049 -:100C90004FF8009840F21001C2F20001086003E032 -:100CA00001208DF8070003E000208DF80700FFE722 -:100CB0009DF8070002B080BD83B0FFE741F2180045 -:100CC000C4F20200016841F001010160006800F017 -:100CD000010002900298FFE7FFE741F21C00C4F216 -:100CE0000200016841F080510160006800F080500E -:100CF00001900198FFE7FFE70421C4F201010868B1 -:100D00000090009820F0E0600090009840F00070A3 -:100D1000009000980860FFE703B0704780B582B08C -:100D20008DF807009DF9070003F046F902B080BD79 -:100D300080B586B08DF817000491039200200290D0 -:100D400003F052F902909DF917000190029804995E -:100D5000039A02F079F80146019803F04DF906B0C4 -:100D600080BD000080B582B00190019803F066F963 -:100D700002B080BD2021C4F20E210120086070471E -:100D800080B588B0079000200690059004900390ED -:100D9000029007980190012866D0FFE70198022889 -:100DA00000F0A580FFE70198102840F0B080FFE731 -:100DB00041F20400C4F202000068039041F2000016 -:100DC000C4F202000068C00100284CD5FFE7039878 -:100DD000C0F3834144F2CC00C0F60000405C0490B4 -:100DE0009DF80E00C007F0B1FFE741F20400C4F225 -:100DF00002000068C0F3404144F2DC00C0F600008D -:100E0000405C06909DF80E00C00758B1FFE70699B8 -:100E100041F20020C0F27A00B0FBF1F0049948439F -:100E20000590FFE707E0049840F60011C0F23D018D -:100E300048430590FFE741F20400C4F20200006855 -:100E40004002002803D5FFE7059802900AE00598C4 -:100E500040004AF6AB21CAF6AA21A0FB01104008C7 -:100E60000290FFE7FFE753E041F22000C4F20200E6 -:100E700000680390039800F44070B0F5807F0AD1B9 -:100E8000FFE79DF80C008007002804D5FFE74FF42A -:100E9000004002902AE0039800F44070B0F5007F13 -:100EA0000DD1FFE741F22400C4F202000068800780 -:100EB000002804D5FFE749F64040029015E003986A -:100EC00000F44070B0F5407F0DD1FFE741F2000023 -:100ED000C4F2020000688003002804D5FFE74FF247 -:100EE0002440029000E0FFE7FFE7FFE710E000F09A -:100EF00029FA41F20401C4F20201096801F44042F6 -:100F0000022101EB5231B0FBF1F0029000E0FFE76B -:100F1000029808B080BD000080B586B00490002023 -:100F20000390029004980078C007002800F0AC807D -:100F3000FFE700208DF8070041F21C00C4F2020018 -:100F40000068C000002813D4FFE7FFE741F21C004F -:100F5000C4F20200016841F080510160006800F0B5 -:100F6000805000900098FFE701208DF80700FFE710 -:100F700047F20000C4F200000068C005002822D437 -:100F8000FFE747F20001C4F20001086840F48070F6 -:100F90000860FFF731FE0390FFE747F20000C4F25C -:100FA00000000068C00500280CD4FFE7FFF724FE0E -:100FB0000399401A652804D3FFE703208DF8170032 -:100FC0008AE0EAE7FFE741F22000C4F2020000688D -:100FD00000F4407002900298E0B3FFE70298049991 -:100FE000496801F44071884234D0FFE741F22001A2 -:100FF000C4F20201086820F44070029040F24042BE -:10100000C4F24222012010600020106002980860A3 -:101010009DF80800C007E0B1FFE7FFF7EDFD039082 -:10102000FFE741F22000C4F20200006880070028B8 -:101030000ED4FFE7FFF7E0FD0399401A41F2893132 -:10104000884204D3FFE703208DF8170044E0E8E767 -:10105000FFE7FFE741F22001C4F20201086820F433 -:101060004070049A5268104308609DF807000128F8 -:1010700009D1FFE741F21C01C4F20201086820F027 -:1010800080500860FFE7FFE7049800788007002899 -:101090000CD5FFE741F20401C4F20201086820F414 -:1010A0004040049A926810430860FFE70498007873 -:1010B000C00600280CD5FFE741F20401C4F202018A -:1010C000086820F48000049AD26810430860FFE7A3 -:1010D00000208DF81700FFE79DF8170006B080BDCF -:1010E00080B584B002900191029820B9FFE70120F9 -:1010F0008DF80F001BE1019842F20001C4F20201D9 -:10110000096801F00701884216D9FFE742F20000A2 -:10111000C4F20200016821F00701019A1143016045 -:10112000006800F007000199884204D0FFE7012021 -:101130008DF80F00FBE0FFE7029800788007002899 -:101140002AD5FFE7029800784007002809D5FFE775 -:1011500041F20401C4F20201086840F4E060086052 -:10116000FFE7029800780007002809D5FFE741F261 -:101170000401C4F20201086840F460500860FFE70F -:1011800041F20401C4F20201086820F0F000029A62 -:10119000926810430860FFE702980078C0070028B3 -:1011A00060D0FFE70298406801280ED1FFE741F2C6 -:1011B0000000C4F2020000688003002804D4FFE7A6 -:1011C00001208DF80F00B2E021E00298406802286B -:1011D0000ED1FFE741F20000C4F202000068800176 -:1011E000002804D4FFE701208DF80F009FE00DE0F8 -:1011F00041F20000C4F2020000688007002804D415 -:10120000FFE701208DF80F0091E0FFE7FFE741F2D3 -:101210000401C4F20201086820F00300029A526837 -:1012200010430860FFF7E8FC0090FFE741F204007C -:10123000C4F20200006800F00C0002994968B0EBAB -:10124000810F0ED0FFE7FFF7D7FC0099401A41F25B -:101250008931884204D3FFE703208DF80F0066E050 -:10126000E4E7FFE7019842F20001C4F202010968D5 -:1012700001F00701884216D2FFE742F20000C4F2F3 -:101280000200016821F00701019A11430160006822 -:1012900000F007000199884204D0FFE701208DF893 -:1012A0000F0044E0FFE702980078400700280CD5C3 -:1012B000FFE741F20401C4F20201086820F4E06093 -:1012C000029AD26810430860FFE70298007800078E -:1012D00000280DD5FFE741F20401C4F202010868BD -:1012E00020F46050029A126940EAC2000860FFE7E9 -:1012F00000F03AF841F20401C4F202010968C9B2EF -:101300000A0944F2B401C0F60001895CC84040F209 -:101310000801C2F20001086040F21000C2F20000B1 -:101320000068FFF791FC00208DF80F00FFE79DF8A3 -:101330000F0004B080BD000040F20800C2F20000BF -:101340000068704780B5FFF7F7FF41F20401C4F26F -:1013500002010968C1F3C22244F2C401C0F60001CF -:10136000895CC84080BD000086B0002005900490D4 -:1013700003900290019041F20400C4F20200006860 -:101380000590059800F00C000146009100283FD020 -:10139000FFE70098042804D0FFE70098082806D04B -:1013A00037E041F20020C0F27A00019037E0059862 -:1013B000C0F3834144F2DE00C0F60000405C0290BE -:1013C0009DF81600C007C0B1FFE741F20400C4F267 -:1013D00002000068C0F3404144F2EE00C0F6000095 -:1013E000405C0490029841F20021C0F27A01484327 -:1013F0000499B0FBF1F0039007E0029840F6001169 -:10140000C0F23D0148430390FFE70398019006E0D6 -:10141000FFE741F20020C0F27A000190FFE7019857 -:1014200006B0704780B586B00490049820B9FFE7F5 -:1014300001208DF817002EE304980078C0070028DB -:1014400000F0AE80FFE741F20400C4F20200006841 -:1014500000F00C00042813D0FFE741F20400C4F2AE -:101460000200006800F00C0008281BD1FFE741F2E1 -:101470000400C4F202000068C003002812D5FFE790 -:1014800041F20000C4F2020000688003002808D581 -:10149000FFE70498406820B9FFE701208DF81700A6 -:1014A000F9E27CE0FFE704984068B0F5803F09D19D -:1014B000FFE741F20001C4F20201086840F4803005 -:1014C000086032E00498406868B9FFE741F2000123 -:1014D000C4F20201086820F480300860086820F433 -:1014E0008020086020E004984068B0F5A02F0DD15E -:1014F000FFE741F20001C4F20201086840F48020D5 -:101500000860086840F4803008600CE041F2000197 -:10151000C4F20201086820F480300860086820F4F2 -:1015200080200860FFE7FFE7FFE7FFE704984068D7 -:10153000D0B1FFE7FFF760FB0390FFE741F2000047 -:10154000C4F202000068800300280CD4FFE7FFF714 -:1015500053FB0399401A652804D3FFE703208DF855 -:10156000170098E2EAE719E0FFF746FB0390FFE770 -:1015700041F20000C4F202000068800300280CD58C -:10158000FFE7FFF739FB0399401A652804D3FFE70B -:1015900003208DF817007EE2EAE7FFE7FFE7FFE7A9 -:1015A000049800788007002840F18D80FFE741F221 -:1015B0000400C4F20200006810F00C0F13D0FFE723 -:1015C00041F20400C4F20200006800F00C00082898 -:1015D00029D1FFE741F20400C4F202000068C00311 -:1015E000002820D4FFE741F20000C4F202000068A6 -:1015F0008007002809D5FFE704980069012804D076 -:10160000FFE701208DF8170045E241F20001C4F226 -:101610000201086820F0F800049A526940EAC2000A -:101620000860FFE74EE00498006958B3FFE7002127 -:10163000C4F2422101200860FFF7DEFA0390FFE7C1 -:1016400041F20000C4F202000068800700280CD4B8 -:10165000FFE7FFF7D1FA0399401A032804D3FFE705 -:1016600003208DF8170016E2EAE741F20001C4F208 -:101670000201086820F0F800049A526940EAC200AA -:1016800008601EE00021C4F2422100200860FFF73C -:10169000B3FA0390FFE741F20000C4F202000068D1 -:1016A000800700280CD5FFE7FFF7A6FA0399401A38 -:1016B000032804D3FFE703208DF81700EBE1EAE7E6 -:1016C000FFE7FFE7FFE7049800780007002848D508 -:1016D000FFE70498806918B3FFE740F28041C4F245 -:1016E000422101200860FFF787FA0390FFE741F2EB -:1016F0002400C4F202000068800700280CD4FFE731 -:10170000FFF77AFA0399401A032804D3FFE703206E -:101710008DF81700BFE1EAE7012001F0E7FD1FE0C7 -:1017200040F28041C4F2422100200860FFF764FAD1 -:101730000390FFE741F22400C4F202000068800732 -:1017400000280CD5FFE7FFF757FA0399401A032842 -:1017500004D3FFE703208DF817009CE1EAE7FFE7D9 -:10176000FFE7049800784007002840F1D880FFE7A1 -:1017700000208DF8070041F21C00C4F2020000684E -:10178000C000002813D4FFE7FFE741F21C00C4F2B9 -:101790000200016841F080510160006800F0805053 -:1017A00000900098FFE701208DF80700FFE747F25F -:1017B0000000C4F200000068C005002822D4FFE742 -:1017C00047F20001C4F20001086840F4807008602C -:1017D000FFF712FA0390FFE747F20000C4F200009F -:1017E0000068C00500280CD4FFE7FFF705FA03994D -:1017F000401A652804D3FFE703208DF817004AE15B -:10180000EAE7FFE7FFE70498C068012809D1FFE78E -:1018100041F22001C4F20201086840F001000860B2 -:1018200031E00498C06868B9FFE741F22001C4F2D2 -:101830000201086820F001000860086820F0040038 -:1018400008601FE00498C06805280DD1FFE741F249 -:101850002001C4F20201086840F004000860086832 -:1018600040F0010008600CE041F22001C4F20201E6 -:10187000086820F001000860086820F00400086093 -:10188000FFE7FFE7FFE7FFE70498C068E0B1FFE785 -:10189000FFF7B2F90390FFE741F22000C4F2020023 -:1018A0000068800700280ED4FFE7FFF7A5F9039929 -:1018B000401A41F28931884204D3FFE703208DF8B2 -:1018C0001700E8E0E8E71BE0FFF796F90390FFE771 -:1018D00041F22000C4F202000068800700280ED503 -:1018E000FFE7FFF789F90399401A41F289318842ED -:1018F00004D3FFE703208DF81700CCE0E8E7FFE70B -:101900009DF80700012809D1FFE741F21C01C4F24C -:101910000201086820F080500860FFE7FFE70498A4 -:10192000C069002800F0B380FFE741F20400C4F270 -:101930000200006800F00C00082800F08280FFE739 -:101940000498C06902285CD1FFE76021C4F24221FB -:1019500000200860FFF750F90390FFE741F2000014 -:10196000C4F202000068800100280CD5FFE7FFF7F1 -:1019700043F90399401A032804D3FFE703208DF8A5 -:10198000170088E0EAE70498006AB0F5803F0CD1C0 -:10199000FFE741F20401C4F20201086820F40030BC -:1019A000049A926810430860FFE741F20401C4F210 -:1019B0000201086820F47410049B1A6A5B6A1A43D7 -:1019C000104308606021C4F2422101200860FFF743 -:1019D00013F90390FFE741F20000C4F2020000682F -:1019E000800100280CD4FFE7FFF706F90399401A9D -:1019F000032804D3FFE703208DF817004BE0EAE744 -:101A00001EE06021C4F2422100200860FFF7F4F8D4 -:101A10000390FFE741F20000C4F202000068800179 -:101A200000280CD5FFE7FFF7E7F80399401A0328D1 -:101A300004D3FFE703208DF817002CE0EAE7FFE767 -:101A400024E00498C069012804D1FFE701208DF843 -:101A5000170020E041F20400C4F202000068029086 -:101A6000029800F480300499096A884208D1FFE79F -:101A7000029800F470100499496A884204D0FFE784 -:101A800001208DF8170006E0FFE7FFE7FFE70020E1 -:101A90008DF81700FFE79DF8170006B080BD000025 -:101AA00084B00390029100200190009046F600401F -:101AB000C4F2000001900299019800EB81000190AE -:101AC0000198006880B20090009804B07047000050 -:101AD00084B00390029101920020009046F60040ED -:101AE000C4F2000000900299009800EB8100009081 -:101AF000BDF804000099086004B0704780B588B054 -:101B000006900591049200200390029001900090AD -:101B1000069818B1FFE7059820B9FFE701208DF876 -:101B20001F00C0E00698006840684007002803D501 -:101B3000FFE7012018B906E0012020B9FFE70120E6 -:101B40008DF81F00AFE0069801F08AFD039003991D -:101B50004BF2C530C9F2A210A1FB0021C90A0091C5 -:101B6000039BA3FB0021C90A4FF4616201FB1233FE -:101B700048F68901C8F68801A3FB01C35B09DDF8BB -:101B800014C08CF80130039BA3FB00C0C00A00FB0B -:101B90001230A0FB011251090901A1EB5211A0EB77 -:101BA000810005998870009818285ED3FFE7009897 -:101BB0004AF6AB21CAF6AA21A0FB01200009019038 -:101BC0000098A0FB0121090901EB4101A0EBC10034 -:101BD00005990870069801F029FD029002980130DD -:101BE00050B1FFE702980399884205D9FFE70399AE -:101BF0000298401A029003E04FF0FF300290FFE796 -:101C0000019840F2A32141430398A0EBC110039037 -:101C10000698039901F0F4FD20B1FFE701208DF84B -:101C20001F0040E00298013078B1FFE70399029865 -:101C3000084402900698029901F0BAFD20B1FFE72E -:101C400001208DF81F002EE00AE00698029901F0AD -:101C5000AFFD20B1FFE701208DF81F0023E0FFE773 -:101C60000698019901F094FB03E00098059908702B -:101C7000FFE7049898B1FFE70598007801F06AFB48 -:101C8000059908700598407801F064FB0599487043 -:101C90000598807801F05EFB05998870FFE70020C9 -:101CA0008DF81F00FFE79DF81F0008B080BD000001 -:101CB00080B584B0029000200190029820B9FFE71F -:101CC00001208DF80F0084E00298407C38B9FFE7CE -:101CD000029900200874029800F080F8FFE702994A -:101CE00002204874029800F041F938B1FFE70299E8 -:101CF0000420487401208DF80F006AE0029801F07A -:101D000001FC38B1FFE702990420487401208DF8E6 -:101D10000F005EE002980168486820F00700486004 -:101D20000298806848B1FFE746F63041C4F20001EE -:101D3000086820F001000860FFE746F62C41C4F275 -:101D40000001086820F46070029A926810430860ED -:101D500002984068013020B1FFE702984068019086 -:101D600012E00120FFF70CF80190019838B9FFE765 -:101D700002990420487401208DF80F0029E0019891 -:101D800001380190FFE7FFE7BDF8060000F00F0003 -:101D9000029909688860BDF8040002990968C86062 -:101DA000029801F0DBFB38B1FFE702990420487488 -:101DB00001208DF80F000CE002990020C873029AF0 -:101DC00001215173029A9173029A51748DF80F0098 -:101DD000FFE79DF80F0004B080BD000080B582B021 -:101DE00001900198006842F60001C4F200018842A7 -:101DF00018D1FFE7FEF7BEFFFFE741F21C00C4F277 -:101E00000200016841F000610160006800F00060BC -:101E100000900098FFE740F23C41C4F242210120CB -:101E20000860FFE702B080BD80B588B006900591DC -:101E30000492002003900290069818B1FFE70598DD -:101E400020B9FFE701208DF81F008AE0FFE7069820 -:101E5000007C012804D1FFE702208DF81F0080E0FC -:101E6000069901200874FFE7FFE7069902204874ED -:101E7000049870B9FFE7059908784A7889784FF493 -:101E800061635843C2EB021200EB820008440390E6 -:101E90001BE00598007801F047FA4FF46161484370 -:101EA00000900598407801F03FFA01460098C1EB98 -:101EB000011100EB810001900598807801F034FA5F -:101EC0000146019808440390FFE70698039901F042 -:101ED00097FC60B1FFE7069904204874FFE7069974 -:101EE00000200874FFE701208DF81F0039E00698F4 -:101EF0000168486820F005004860069801F096FBEC -:101F000002900298013000B3FFE7029803998842DB -:101F10001AD2FFE7029845F28011C0F2010108448D -:101F200002900698029901F043FC60B1FFE7069920 -:101F300004204874FFE7069900200874FFE7012099 -:101F40008DF81F000DE0FFE7FFE7069901204874B8 -:101F5000FFE7069900200874FFE700208DF81F00B6 -:101F6000FFE79DF81F0008B080BD000080B584B079 -:101F7000029000200190029820B9FFE701208DF81F -:101F80000F0021E002980168486820F008004860CE -:101F9000FEF732FE0190FFE70298006840680007F4 -:101FA00000280DD4FFE7FEF727FE0199401AB0F58F -:101FB0007A7F04D9FFE703208DF80F0004E0EBE7F8 -:101FC00000208DF80F00FFE79DF80F0004B080BDE2 -:101FD00080B582B00190019801F060FD02B080BD33 -:101FE00081B0009001B0704781B0009001B070479F -:101FF00085B003900291FFE7039890F83C00012818 -:1020000004D1FFE702208DF813005BE00399012063 -:1020100081F83C00FFE7FFE70399022081F83D00CB -:1020200003980068406801900398006880680090F9 -:10203000019820F07000019002980168019808430F -:10204000019001980399096848600398006842F676 -:102050000041C4F20101884218D0FFE703980068EC -:10206000B0F1804F12D0FFE70398006840F20041C2 -:10207000C4F20001884209D0FFE70398006840F6E7 -:102080000001C4F2000188420ED1FFE7009820F061 -:1020900080000090029841680098084300900098E2 -:1020A000039909688860FFE70399012081F83D00E2 -:1020B000FFE70399002081F83C00FFE700208DF83E -:1020C0001300FFE79DF8130005B0704780B582B09C -:1020D0000090009820B9FFE701208DF807003FE04D -:1020E000009890F83D0040B9FFE70099002081F882 -:1020F0003C00009800F038F8FFE70099022081F8D2 -:102100003D00009951F8040B01F04AFD00990120AF -:1021100081F84600FFE70099012081F83E00009910 -:1021200081F83F00009981F84000009981F8410052 -:10213000FFE7FFE70099012081F84200009981F84C -:102140004300009981F84400009981F84500FFE7B9 -:102150000099012081F83D0000208DF80700FFE77D -:102160009DF8070002B080BD80B584B0039003984D -:102170000068B0F1804F19D1FFE7FFE741F21C0082 -:10218000C4F20200016841F001010160006800F042 -:10219000010002900298FFE71C20019000221146E6 -:1021A000FEF7C6FD0198FEF7B9FDFFE704B080BD5C -:1021B00083B00190019890F83D00012804D0FFE71A -:1021C00001208DF80B0047E00199022081F83D00C5 -:1021D00001980168C86840F00100C8600198006873 -:1021E00042F60041C4F20101884218D0FFE701988D -:1021F0000068B0F1804F12D0FFE70198006840F20C -:102200000041C4F20001884209D0FFE7019800684C -:1022100040F60001C4F20001884212D1FFE70198A4 -:102220000068806800F0070000900098062807D03A -:10223000FFE701980168086840F001000860FFE7C7 -:1022400006E001980168086840F001000860FFE7B7 -:1022500000208DF80B00FFE79DF80B0003B07047DE -:1022600080B586B00490039100208DF80B00FFE745 -:10227000049890F83C00012804D1FFE702208DF873 -:102280001700ABE00499012081F83C00FFE7FFE76D -:102290000499022081F83D0004980068806801904C -:1022A000019820F077000190019820F47F40019080 -:1022B00001980499096888600398006800900028D4 -:1022C00072D0FFE7009810286ED0FFE70098202812 -:1022D0006AD0FFE70098302866D0FFE700984028D2 -:1022E00055D0FFE70098502837D0FFE700986028C6 -:1022F00040D0FFE7009870280BD0FFE70098B0F5BA -:10230000805F05D0FFE70098B0F5005F16D052E07F -:1023100055E004980068039B5A689968DB6801F0EF -:10232000C3FC0498006880680190019840F0770031 -:102330000190019804990968886040E00498006859 -:10234000039B5A689968DB6801F0AEFC0498016849 -:10235000886840F48040886031E004980068039AFF -:102360005168D26801F0D0FC04980068502101F057 -:10237000B5FC24E004980068039A5168D26801F023 -:10238000EBFC04980068602101F0A8FC17E00498B9 -:102390000068039A5168D26801F0B6FC049800689E -:1023A000402101F09BFC0AE0049800680399096849 -:1023B00001F094FC03E001208DF80B00FFE7049985 -:1023C000012081F83D00FFE70499002081F83C00DE -:1023D000FFE79DF80B008DF81700FFE79DF8170049 -:1023E00006B080BD81B0009001B0704780B584B068 -:1023F000039003980068C068029003980068006921 -:1024000001909DF804008007002824D5FFE79DF87F -:102410000800800700281DD5FFE7039801686FF0CA -:102420000200086103990120087703980068806919 -:10243000800720B1FFE70398FFF7D4FF06E0039879 -:1024400000F0E2F8039800F0E3F8FFE703990020BA -:102450000877FFE7FFE79DF804004007002825D52F -:10246000FFE79DF80800400700281ED5FFE7039806 -:1024700001686FF00400086103990220087703984F -:102480000068806910F4407F04D0FFE70398FFF7ED -:10249000A9FF06E0039800F0B7F8039800F0B8F839 -:1024A000FFE7039900200877FFE7FFE79DF80400A6 -:1024B0000007002824D5FFE79DF808000007002842 -:1024C0001DD5FFE7039801686FF0080008610399C4 -:1024D0000420087703980068C069800720B1FFE7EF -:1024E0000398FFF77FFF06E0039800F08DF803984C -:1024F00000F08EF8FFE7039900200877FFE7FFE779 -:102500009DF80400C006002825D5FFE79DF80800C7 -:10251000C00600281ED5FFE7039801686FF0100081 -:10252000086103990820087703980068C06910F4CF -:10253000407F04D0FFE70398FFF754FF06E00398BD -:1025400000F062F8039800F063F8FFE703990020B9 -:102550000877FFE7FFE79DF80400C00778B1FFE7C1 -:102560009DF80800C00748B1FFE7039801686FF0C5 -:1025700001000861039800F04FF8FFE7FFE79DF8BE -:1025800004000006002810D5FFE79DF808000006AB -:10259000002809D5FFE7039801686FF08000086103 -:1025A0000398FFF71DFDFFE7FFE79DF804004006D5 -:1025B000002810D5FFE79DF808004006002809D53F -:1025C000FFE7039801686FF040000861039800F08E -:1025D00031F8FFE7FFE79DF804008006002810D5DA -:1025E000FFE79DF808008006002809D5FFE703985B -:1025F00001686FF0200008610398FFF7F5FCFFE722 -:10260000FFE704B080BD000081B0009001B07047CA -:1026100081B0009001B0704780B582B00190019800 -:102620000068B0F1804F03D1FFE701F095F9FFE7B3 -:1026300002B080BD81B0009001B07047FFE7FEE7B7 -:1026400080B582B040F2F000C2F20000007A01468C -:102650000091052800F22F810099DFE811F00600B3 -:102660003A007C00AE00D400060140F2F000C2F255 -:10267000000042794CF6CD41CCF6CC41A2FB0132B0 -:10268000D2088DF807204079A0FB0121C90801EB91 -:102690008101A0EB41008DF806009DF80700013094 -:1026A0008DF807009DF80700032804DBFFE70020F2 -:1026B0008DF80700FFE79DF8070000EB80019DF80B -:1026C000060000EB410040F2F001C2F20001487147 -:1026D000F1E040F2F000C2F2000042794CF6CD4148 -:1026E000CCF6CC41A2FB0132D2088DF8072040790C -:1026F000A0FB0121C90801EB8101A0EB41008DF88D -:1027000006009DF8060001308DF806009DF80700D0 -:10271000022809D1FFE79DF80600042804DBFFE743 -:1027200000208DF80600FFE79DF806000A2804DB6C -:10273000FFE700208DF80600FFE79DF8070000EB9B -:1027400080019DF8060000EB410040F2F001C2F26A -:1027500000014871AFE040F2F001C2F20001887957 -:102760004CF6CD42CCF6CC42A0FB0230C0088DF82E -:1027700007008879A0FB0232D20802EB8202A0EBAC -:1027800042008DF806009DF8070001304AF6AB22A2 -:10279000CAF6AA22A0FB0232920802EB4202A0EB88 -:1027A00042008DF807009DF8070000EB80029DF8BD -:1027B000060000EB420088717DE040F2F001C2F2B9 -:1027C000000188794CF6CD42CCF6CC42A0FB02C386 -:1027D000DB0803EB8303A0EB43000130A0FB02C343 -:1027E000DB0803EB8303A0EB43008DF80600887938 -:1027F000A0FB0220C00800EB80029DF8060000EB61 -:102800004200887157E040F2F001C2F20001C8793D -:102810004CF6CD42CCF6CC42A0FB0230C0088DF87D -:102820000700C879A0FB0232D20802EB8202A0EBBB -:1028300042008DF806009DF8070001304AF6AB22F1 -:10284000CAF6AA22A0FB0232920802EB4202A0EBD7 -:1028500042008DF807009DF8070000EB80029DF80C -:10286000060000EB4200C87125E040F2F001C2F220 -:102870000001C8794CF6CD42CCF6CC42A0FB02C395 -:10288000DB0803EB8303A0EB43000130A0FB02C392 -:10289000DB0803EB8303A0EB43008DF80600C87947 -:1028A000A0FB0220C00800EB80029DF8060000EBB0 -:1028B0004200C871FFE701F079FA02B080BD000064 -:1028C00080B582B040F29400C2F200000121FFF70F -:1028D000E7F8019001980A2807D8FFE7019820B18E -:1028E000FFE79DF80400009002E005200090FFE75C -:1028F000009840F20C01C2F20001087002B080BDE5 -:1029000080B590B000200F900E900D900C90FFE7D6 -:1029100041F21800C4F20200016841F010010160A8 -:10292000006800F010000B900B98FFE7FFE741F202 -:102930001800C4F20200016841F020010160006843 -:1029400000F020000A900A98FFE7FFE741F2180024 -:10295000C4F20200016841F004010160006800F067 -:10296000040009900998FFE7FFE741F21800C4F25C -:102970000200016841F008010160006800F00800F1 -:1029800008900898FFE740F60000C4F201000690A6 -:102990003F21009100220592FEF716F9059A40F6B4 -:1029A0000040C4F20100039048F2D8310491FEF7D0 -:1029B0000BF9009A059906980C92012201920D924A -:1029C0000E91022102910F910CA90791FDF754FF7E -:1029D000DDF804C0029A0398059B0799DDF810E022 -:1029E000CDF830E0CDF834C00E930F92FDF744FFE0 -:1029F000059A069807994FF4F0530C930D920E9296 -:102A0000FDF73AFF10B080BD80B540F29400C2F2ED -:102A1000000042F60001C4F2000101604FF0FF31F6 -:102A200041604FF480718160FFF742F918B1FFE710 -:102A3000FDF7A2FEFFE780BD80B588B000210191BF -:102A400007910691059104910391029140F2A8002B -:102A5000C2F200004FF0804202604160816040F2AB -:102A6000CF22C26001618161FFF730FB18B1FFE73F -:102A7000FDF782FEFFE74FF48050049040F2A8007B -:102A8000C2F2000004A9FFF7EBFB18B1FFE7FDF766 -:102A900073FEFFE700200290039040F2A800C2F20C -:102AA000000002A9FFF7A4FA18B1FFE7FDF764FEE2 -:102AB000FFE708B080BD0000FFE7FEE781B040F20D -:102AC000F001C2F2000100200870487008724872DC -:102AD000C8600090FFE70098032821DCFFE700981A -:102AE00040F2F001C2F200010A1800209074009A2E -:102AF00001EB82029061009A0A4482F82800009A51 -:102B00000A4482F82C00009A01EB82021064009AB9 -:102B1000114481F85000FFE7009801300090DAE797 -:102B200001B0704780B584B0FEF766F8039040F2BC -:102B3000F000C2F200000078022819D1FFE70398E4 -:102B400040F2F001C2F20001C968401AB0F5FA7F04 -:102B50000DD3FFE7039840F2F001C2F20001C86014 -:102B60004A7A01209043487201F020F9FFE7FFE71D -:102B700000200290FFE70298032800F34781FFE757 -:102B8000029800F065FE002818BF01208DF80700AC -:102B90009DF8070000F00100029A40F2F001C2F235 -:102BA0000001114491F8501001F00101884212D047 -:102BB000FFE70398029A40F2F001C2F2000101EB34 -:102BC000820210649DF80700029A114400F001008F -:102BD00081F85000FFE70398029A40F2F001C2F238 -:102BE000000101EB8201096C401A1E280DD3FFE79A -:102BF000029940F2F000C2F20000084490F8500040 -:102C000000F001008DF806000BE0029940F2F000A0 -:102C1000C2F200000844807C00F001008DF806003C -:102C2000FFE7029940F2F000C2F200000844807C05 -:102C300000F001008DF805009DF80600C007C0B146 -:102C4000FFE79DF80500C00798B9FFE70398029ACF -:102C500040F2F001C2F2000101EB820290610298A1 -:102C60000A18002082F82800029A114481F82C00EA -:102C7000BCE09DF80600C007002800F09080FFE748 -:102C80009DF80500C007002800F08980FFE7029941 -:102C900040F2F000C2F20000084490F82800C0079B -:102CA000E0B9FFE70398029A40F2F001C2F2000196 -:102CB00001EB82018969401AB0F5FA7F0ED3FFE774 -:102CC000029940F2F000C2F200000844012180F8AD -:102CD00028109DF8080000F061F95FE0029940F2C9 -:102CE000F000C2F20000084490F82800C00760B36A -:102CF000FFE7029940F2F000C2F20000084490F8A9 -:102D00002C00C00708BBFFE70398029A40F2F001CD -:102D1000C2F2000101EB82018969401AB0F5FA7F25 -:102D200013D3FFE7029840F2F002C2F2000210440F -:102D3000012180F82C100398029B02EB83021063A0 -:102D40009DF8080000F02AF927E0029940F2F0000F -:102D5000C2F20000084490F82C00C007E0B1FFE781 -:102D60000398029A40F2F001C2F2000101EB8201E5 -:102D7000096B401A64280FD3FFE70398029A40F2C8 -:102D8000F001C2F2000101EB820108639DF8080026 -:102D9000012100F003F9FFE7FFE7FFE725E09DF8D9 -:102DA0000600C00700BBFFE79DF80500C007D8B1CB -:102DB000FFE7029940F2F000C2F20000084490F8E8 -:102DC0002800C00730B9FFE79DF80800002100F097 -:102DD000E5F8FFE7029940F2F000C2F2000001447A -:102DE000002081F82C00FFE7FFE7FFE79DF80600D1 -:102DF000029A40F2F001C2F20001114400F0010019 -:102E00008874FFE7029801300290B4E640F2F000C7 -:102E1000C2F20000007898B9FFE7039840F2780109 -:102E2000C2F200010968401AC82809D3FFE70398D5 -:102E300040F27801C2F20001086000F0B7FFFFE73E -:102E400004B080BDFFE7FEE788B0079006910592C9 -:102E5000079800F0070004900498C0F107000528C7 -:102E600003D3FFE70420019004E00498C0F10700B9 -:102E70000190FFE70198039004980430062803D8D6 -:102E8000FFE70020009003E0049803380090FFE77C -:102E90000098029006980399012202FA01F1013983 -:102EA0000840029B984005999A40013A1140084316 -:102EB00008B0704781B040F28000C2F20000017893 -:102EC000013101700078062807DBFFE740F280013E -:102ED000C2F2000100200870FFE740F20400C2F2D5 -:102EE0000000006838B9FFE740F20401C2F20001B7 -:102EF00001200860FFE740F20400C2F20000016810 -:102F000044F24020C0F20F00B0FBF1F04CF6CD418E -:102F1000CCF6CC41A0FB0110C00800900098052819 -:102F200003D8FFE706200090FFE700984AF6AB21A0 -:102F3000CAF6AA21A0FB0110810840F27C00C2F26F -:102F400000000160006838B9FFE740F27C01C2F27E -:102F5000000101200860FFE740F27C00C2F200009F -:102F6000006840F20001C2F200010978484348F2CB -:102F70001F51C5F2EB11A0FB0110400940F2840182 -:102F8000C2F20001086040F24411C2F200010020C8 -:102F9000086001B0704700007047000080B58AB03B -:102FA0008DF827008DF8261040F2F000C2F20000E4 -:102FB0000078A8B9FFE79DF82600C00780B1FFE7B9 -:102FC0009DF8270002280BD1FFE740F2F001C2F282 -:102FD0000001012008700020487000F0E7FE83E146 -:102FE00040F2F000C2F2000000780138014606917C -:102FF000032800F278810699DFE811F00400A900A7 -:10300000EB0052019DF82700A8B9FFE740F2F0005D -:10301000C2F200004178013141704078032807DB9B -:10302000FFE740F2F001C2F2000100204870FFE724 -:1030300000F0BCFE8AE09DF82700012819D1FFE7C7 -:1030400040F2F000C2F20000407838B9FFE740F2E9 -:10305000F001C2F200010220487007E040F2F001E6 -:10306000C2F20001487801384870FFE700F09EFE88 -:103070006BE09DF82700022857D1FFE79DF8260056 -:10308000C007002851D1FFE740F2F000C2F2000073 -:1030900040780146059140B1FFE7059801282BD003 -:1030A000FFE70598022835D03BE040F2F001C2F27C -:1030B0000001049102200870FDF7F2F804990790CE -:1030C0009DF81E008DF82200BDF81C00ADF8200010 -:1030D0009DF822000871BDF8200048800879C87169 -:1030E0004888A1F805000020087201204872FDF709 -:1030F00083FD0499C86015E040F2F001C2F20001BE -:10310000039103200870FDF7C5F803990874087C43 -:10311000487407E040F2F001C2F200010420087098 -:1031200000E0FFE700F042FE0EE09DF827000328D4 -:1031300009D1FFE740F2F001C2F20001002008705F -:1031400000F034FEFFE7FFE7FFE7FFE7CCE09DF884 -:10315000270018B9FFE7FFF773FA39E09DF8270059 -:10316000012803D1FFE7FDF72DF930E09DF8270096 -:1031700002281CD1FFE740F2F000C2F20000017A01 -:1031800001310172007A06280EDBFFE740F2F002FF -:10319000C2F20002029250799179D279FDF7F2F8E9 -:1031A000029900200870FFE700F000FE0EE09DF895 -:1031B0002700032809D1FFE740F2F001C2F2000125 -:1031C0000020087000F0F2FDFFE7FFE7FFE7FFE7F0 -:1031D0008AE09DF82700C8B9FFE740F2F000C2F28C -:1031E0000000407C092811DCFFE740F2F000C2F249 -:1031F0000000417C01314174407C00EB80004000C4 -:10320000C0B200F0ADFB00F0D1FD48E09DF8270012 -:10321000012819D1FFE740F2F000C2F20000407C23 -:10322000012811DBFFE740F2F000C2F20000417C10 -:1032300001394174407C00EB80004000C0B200F0D6 -:103240008FFB00F0B3FD29E09DF8270002280ED186 -:10325000FFE740F2F000C2F200000190407CFDF771 -:1032600071F801990020087000F0A0FD15E09DF8AC -:103270002700032810D1FFE740F2F000C2F200005F -:1032800000210170007C00EB80004000C0B200F023 -:1032900067FB00F08BFDFFE7FFE7FFE7FFE723E0B9 -:1032A0009DF8270002280ED1FFE7FDF743F808201C -:1032B000FDF748F840F2F001C2F20001002008706A -:1032C00000F074FD0EE09DF82700032809D1FFE708 -:1032D00040F2F001C2F200010020087000F066FD2B -:1032E000FFE7FFE700E0FFE70AB080BD82B0019092 -:1032F000019840F20801C2F200010968C90844F6C9 -:10330000D352C1F26202A1FB022189094843009015 -:10331000FFE700BFFFE70098411E00910028F8D1A9 -:10332000FFE702B07047000082B08DF80700002070 -:1033300000909DF80700000900EB8000400000901D -:1033400000989DF8071001F00F010844C0B202B0C8 -:103350007047000082B08DF8070000200090FFE762 -:103360009DF807000A2809D3FFE700980130009074 -:103370009DF807000A388DF80700F1E7009800F083 -:103380000F019DF8070040EA011002B070470000ED -:1033900080B586B0059004910020039002900190C2 -:1033A00000900599C97B03910599497B0291059984 -:1033B000897B01910090FFE700980499884280F092 -:1033C0008C80FFE70298012818D0FFE702980328B5 -:1033D00014D0FFE70298052810D0FFE702980728CD -:1033E0000CD0FFE70298082808D0FFE702980A28C7 -:1033F00004D0FFE702980C281BD1FFE701981E2894 -:1034000004D8FFE701980130019011E002980C28E0 -:1034100006D0FFE70298013002900120019006E0FB -:10342000012002900190039801300390FFE7FFE72D -:103430004EE0029804280CD0FFE70298062808D036 -:10344000FFE70298092804D0FFE702980B280FD164 -:10345000FFE701981D2804D8FFE70198013001908B -:1034600005E002980130029001200190FFE72EE074 -:10347000029802282AD1FFE701981B2804D8FFE709 -:1034800001980130019020E001981C2811D1FFE73C -:10349000BDF80C0000F08EF820B1FFE70198013074 -:1034A000019005E002980130029001200190FFE7B1 -:1034B0000AE001981D2806D1FFE70298013002902A -:1034C00001200190FFE7FFE7FFE7FFE7FFE7FFE7E6 -:1034D000FFE70098013000906EE703980599C873E4 -:1034E00002980599487301980599887303989DF887 -:1034F00008109DF8042000F0E9F80599087306B05B -:1035000080BD000080B584B0029000200190FDF7DE -:1035100073FB0190FFE7029800684068800600286E -:103520000DD4FFE7FDF768FB0199401AB0F57A7FEB -:1035300004D9FFE703208DF80F000AE0EBE70298BB -:103540000168486840F01000486000208DF80F00C6 -:10355000FFE79DF80F0004B080BD000080B584B087 -:1035600002900020019002980168486820F0100045 -:103570004860FDF741FB0190FFE702980068406852 -:10358000800600280DD4FFE7FDF736FB0199401AAD -:10359000B0F57A7F04D9FFE703208DF80F0004E02F -:1035A000EBE700208DF80F00FFE79DF80F0004B057 -:1035B00080BD000081B0ADF80000BDF800008007BC -:1035C00020B1FFE700208DF803002BE0BDF80000DC -:1035D00045F62941CCF28F2148434FEAB00045F629 -:1035E0002941C0F28F21884204D3FFE701208DF8E2 -:1035F000030017E0BDF8000045F62941CCF28F2109 -:1036000048434FEA30104DF20A71C0F2A3018842DC -:1036100004D8FFE701208DF8030003E000208DF8B7 -:103620000300FFE79DF8030001B0704782B00190EE -:103630000020ADF80200ADF8000001980068006AB3 -:10364000ADF8020001980068406AADF80000BDF8CE -:103650000210BDF8000040EA014002B070470000CF -:1036600084B003900020ADF80A00ADF80800ADF872 -:1036700006000090039800688069ADF80A0003987E -:103680000068C069ADF80600039800688069ADF86D -:103690000800BDF80A00BDF8081088420AD0FFE70C -:1036A000BDF8081003980068C06980B240EA014084 -:1036B000009007E0BDF80A10BDF8060040EA01409E -:1036C0000090FFE7009804B07047000084B00390BA -:1036D0008DF80B108DF80A200020019000900398BF -:1036E00000F5FA6001909DF80B0002282ED8FFE744 -:1036F0009DF80B001721484348F63961C3F6E301F2 -:10370000A0FB01019DF80A0000EB5100019908445B -:10371000013900EB910048F21F52C5F2EB12A1FBF8 -:103720000221A0EB511000EBD110043044F625111A -:10373000C2F29241A0FB0121421A01EB5202910810 -:10374000C900A1EB9201401A00902CE09DF80B00FB -:103750001721484348F63961C3F6E301A0FB010194 -:103760009DF80A0000EB51000199084400EB91001C -:1037700048F21F52C5F2EB12A1FB0221A0EB51103F -:1037800000EBD110023044F62511C2F29241A0FBA9 -:103790000121421A01EB52029108C900A1EB9201EA -:1037A000401A0090FFE79DF8000004B07047000049 -:1037B00080B584B00390029100208DF80700039833 -:1037C000FFF7A0FE20B1FFE701208DF8070013E00E -:1037D000BDF80A00039909680862BDF8080003995A -:1037E000096848620398FFF7B9FE20B1FFE701209E -:1037F0008DF80700FFE7FFE79DF8070004B080BDE4 -:1038000080B584B00390029100208DF807000398E2 -:10381000FFF778FE20B1FFE701208DF8070013E0E5 -:10382000BDF80A00039909688861BDF8080003998A -:103830000968C8610398FFF791FE20B1FFE70120F6 -:103840008DF80700FFE7FFE79DF8070004B080BD93 -:1038500080B584B0029002980190032838D801996D -:10386000DFE801F0020F1C2940F60000C4F201005D -:103870004FF48061FDF790F9B0FA80F040090390B1 -:1038800029E040F60000C4F201004FF40061FDF7AA -:1038900083F9B0FA80F0400903901CE040F6000084 -:1038A000C4F201004FF40071FDF776F9B0FA80F030 -:1038B000400903900FE040F60000C4F201004FF40D -:1038C0008051FDF769F9B0FA80F04009039002E0F9 -:1038D00000200390FFE7039804B080BD704700000C -:1038E00080B540F20C00C2F20000027840F2940071 -:1038F000C2F200000121FEF7EBF880BD80B582B076 -:1039000040F28001C2F200010020087040F2441130 -:10391000C2F20001086040F27C02C2F20002012102 -:10392000116040F28402C2F2000211600190FFE7D0 -:10393000019805280CDCFFE7019A40F28B01C2F2E6 -:103940000001FF208854FFE7019801300190EFE764 -:10395000FFF7B0FA02B080BD80B500F0CBFA80BDB1 -:1039600081B08DF803009DF80300652804DBFFE7B4 -:1039700064208DF80300FFE79DF80300002804DCB5 -:10398000FFE701208DF80300FFE79DF8030040F2F8 -:103990000001C2F20001087001B0704780B582B02A -:1039A000019000200090FFE7009805281EDCFFE74B -:1039B00001980099405C40B9FFE7009A40F28B0102 -:1039C000C2F20001FF2088540BE001980099405C8E -:1039D000FCF724FF009A40F28B01C2F200018854E8 -:1039E000FFE7FFE7009801300090DDE702B080BDFF -:1039F00081B08DF803009DF80300C1074FF08020CF -:103A0000002918BF4FF0004040F61041C4F20101F8 -:103A100008609DF803004008C2074FF01010002A0C -:103A200018BF4FF4801008609DF803008008C2079B -:103A30004FF00810002A18BF4FF4002008609DF8CE -:103A40000300C008C2074FF04010002A18BF4FF40F -:103A5000800008609DF803000009C2074FF0801045 -:103A6000002A18BF4FF4000008609DF803004009C9 -:103A7000C2074FF00120002A18BF4FF08070086085 -:103A80009DF803008009C2074FF00220002A18BFEA -:103A90004FF00070086001B07047000080B582B040 -:103AA000009000980138B0F1807F03D3FFE7012038 -:103AB000019019E0009801384EF21401CEF2000195 -:103AC00008604FF0FF300F2100F096FA4EF2180117 -:103AD000CEF20001002008604EF21002CEF2000289 -:103AE000072111600190FFE7019802B080BD00003E -:103AF00080B5FDF787F880BD80B596B00CA8019021 -:103B00002821FCF761FB0198002202920B920A9295 -:103B10000992089207920692059204920392052157 -:103B20000C914FF480310D910E9201220F92109260 -:103B30000222139214914FF4E0111591FDF772FCDB -:103B400018B1FFE7FCF718FEFFE70F2007900221EE -:103B50000891002009904FF480620A920B9007A808 -:103B6000FDF7BEFA18B1FFE7FCF706FEFFE70120FC -:103B700003904FF48070049003A8FDF7CDF918B1BD -:103B8000FFE7FCF7F9FDFFE716B080BD70470000C6 -:103B900080B540F2A800C2F20000FEF727FC80BD0D -:103BA00083B002900191029800680090029842F65A -:103BB0000041C4F20101884215D0FFE70298B0F13C -:103BC000804F10D0FFE7029840F20041C4F200019C -:103BD000884208D0FFE7029840F60001C4F20001D5 -:103BE00088420AD1FFE7009820F070000090019809 -:103BF0004168009808430090FFE7029842F60041B0 -:103C0000C4F20101884215D0FFE70298B0F1804F5D -:103C100010D0FFE7029840F20041C4F20001884250 -:103C200008D0FFE7029840F60001C4F20001884284 -:103C30000AD1FFE7009820F4407000900198C16815 -:103C4000009808430090FFE7009820F08000019959 -:103C500049690843009000980299086001988068BB -:103C60000299C8620198006802998862029842F637 -:103C70000041C4F20101884205D1FFE701980069C3 -:103C800002990863FFE702990120486102980069E0 -:103C9000C00730B1FFE70299086920F00100086110 -:103CA000FFE703B07047000085B0049003910292D3 -:103CB0000193049880680090009820F47F40009061 -:103CC00003980299019A41EA0221014300980843AE -:103CD000009000980499886005B0704783B0029006 -:103CE0000191029880680090009820F07000009088 -:103CF00001980099084340F007000090009802994D -:103D0000886003B07047000085B004900391029270 -:103D10000498006A00900499086A20F00100086283 -:103D2000049880690190019820F0F00001900299B8 -:103D3000019840EA01100190009820F00A000090DC -:103D400003990098084300900198049988610098AD -:103D50000499086205B0704785B0049003910292FF -:103D60000498006A00900499086A20F01000086224 -:103D7000049880690190019820F4704001900299A4 -:103D8000019840EA01300190009820F0A0000090D6 -:103D90000399009840EA0110009001980499886105 -:103DA00000980499086205B07047000080B58CB097 -:103DB00040F2F000C2F200000078014604910428AD -:103DC00000F295800499DFE801F0031840668B004B -:103DD000FCF766FA0A909DF82A008DF82E00BDF8CF -:103DE0002800ADF82C000DF1210003900BA9FCF781 -:103DF000CBFC0398FFF7D2FD79E040F2F000C2F26D -:103E0000000040780146029140B1FFE70298012886 -:103E10000BD0FFE7029802280ED014E044F26110A4 -:103E2000C0F60000FFF7BAFD0EE044F25A10C0F6EB -:103E30000000FFF7B3FD07E044F26810C0F6000091 -:103E4000FFF7ACFD00E0FFE751E040F2F000C2F206 -:103E500000000190411D0DF11A00FCF795FC01983E -:103E6000407AC00790B1FFE740F2F000C2F20000D4 -:103E7000007A05280ADCFFE740F2F000C2F20000F9 -:103E8000027A0DF11A0120208854FFE70DF11A0083 -:103E9000FFF784FD2BE042F22000ADF8180045F258 -:103EA0004450C5F65410059040F2F000C2F20000F4 -:103EB000407C0A2807D1FFE731208DF81800302018 -:103EC0008DF8190008E040F2F000C2F20000407CDA -:103ED00030308DF81900FFE705A8FFF75FFD06E019 -:103EE00044F26810C0F60000FFF758FDFFE70CB081 -:103EF00080BD000080B582B040F24410C2F20000E4 -:103F0000006878BBFFE7FCF7CFFB00BF00BF40F2C3 -:103F10008000C2F20000027840F28B01C2F2000180 -:103F2000895C8DF80710007805280FD1FFE79DF810 -:103F3000071001F09F0001F0200240EA420001F06A -:103F4000400140EA51008DF80700FFE79DF80700A7 -:103F5000FFF74EFD40F28000C2F200000078FCF74F -:103F6000CFFBFFE740F24410C2F20000006840F2CD -:103F70008401C2F200010968884206D3FFE7FCF71A -:103F800093FBFF20FFF734FDFFE740F24410C2F23D -:103F90000000016801310160006840F27C01C2F25A -:103FA00000010968884203D3FFE7FEF783FFFFE7BC -:103FB00002B080BDFFE7FEE781B08DF803009DF9F8 -:103FC000030000280ED4FFE79DF9031001F01F0243 -:103FD000012090404A094EF20011CEF2000141F852 -:103FE0002200FFE701B070474EF60C50CEF2000001 -:103FF0000068C0F30220704782B08DF8070000917E -:104000009DF9070000280AD4FFE7009800019DF9F8 -:1040100007104EF20042CEF2000288540BE00098E6 -:1040200000019DF8071001F00F014EF61452CEF278 -:1040300000028854FFE702B07047000083B002908E -:10404000029800F0070000904EF60C51CEF20001ED -:104050000868019001984FF6FF0210400190019806 -:10406000009A40EA02200022C0F2FA521043019066 -:104070000198086003B0704780B582B000200190BD -:10408000FCF7CEFDFFF738FDFEF73AFCFEF7BCFC6F -:10409000FEF7D2FCFFF732FCFCF72CF9FEF70EFD21 -:1040A00040F2A800C2F20000FEF782F8FFE7FEF738 -:1040B00039FDFCE7000000000000000001020304DD -:1040C00006070809000000000102030402030405BA -:1040D000060708090A0B0C0D0E0F1010010202034F -:1040E0000405060708090A0B0C0D0E0F101001023B -:1040F00030C031F932A433B034993592368237F872 -:1041000038803990418861884283628343C663C6A0 -:1041100044A164A145866586468E668E47C267C205 -:104120004889688949F969F94AF16AF14CC76CC74D -:104130004EAB6EAB4FC06FC0508C708C5198719865 -:1041400052AF72AF539273925487748755C175C141 -:10415000599179912DBF5FF720FF5345542044209A -:10416000005345542054200052455345542000002C -:1041700090410008000000201800000028010008FD -:10418000A84100081800002038070000440100087A -:10419000640000005000000000127A0005010000D9 -:0841A000100000000000000007 -:04000005080000ED02 -:00000001FF diff --git a/MDK-ARM/lamp/lamp.htm b/MDK-ARM/lamp/lamp.htm deleted file mode 100644 index d87c82d..0000000 --- a/MDK-ARM/lamp/lamp.htm +++ /dev/null @@ -1,1217 +0,0 @@ - - -Static Call Graph - [lamp\lamp.axf] -
-

Static Call Graph for image lamp\lamp.axf


-

#<CALLGRAPH># ARM Linker, 6190004: Last Updated: Fri Apr 10 01:41:09 2026 -

-

Maximum Stack Usage = 288 bytes + Unknown(Functions without stacksize, Cycles, Untraceable Function Pointers)

-Call chain for Maximum Stack Depth:

-__rt_entry_main ⇒ main ⇒ Menu_Process ⇒ ProcessButton ⇒ DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -

-

-Functions with no stack information -

- -

-

-Mutually Recursive functions -

  • ADC1_2_IRQHandler   ⇒   ADC1_2_IRQHandler
    - -

    -

    -Function Pointers -

      -
    • ADC1_2_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • BusFault_Handler from stm32f1xx_it.o(.text.BusFault_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • CAN1_RX1_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • CAN1_SCE_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel1_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel2_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel3_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel4_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel5_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel6_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DMA1_Channel7_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • DebugMon_Handler from stm32f1xx_it.o(.text.DebugMon_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI0_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI15_10_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI1_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI2_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI3_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI4_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • EXTI9_5_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • FLASH_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • HardFault_Handler from stm32f1xx_it.o(.text.HardFault_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • I2C1_ER_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • I2C1_EV_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • I2C2_ER_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • I2C2_EV_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • MemManage_Handler from stm32f1xx_it.o(.text.MemManage_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • NMI_Handler from stm32f1xx_it.o(.text.NMI_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • PVD_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • PendSV_Handler from stm32f1xx_it.o(.text.PendSV_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • RCC_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • RTC_Alarm_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • RTC_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • Reset_Handler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • SPI1_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • SPI2_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • SVC_Handler from stm32f1xx_it.o(.text.SVC_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • SysTick_Handler from stm32f1xx_it.o(.text.SysTick_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • SystemInit from system_stm32f1xx.o(.text.SystemInit) referenced from startup_stm32f103xb.o(.text) -
    • TAMPER_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM1_BRK_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM1_CC_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM1_TRG_COM_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM1_UP_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM2_IRQHandler from stm32f1xx_it.o(.text.TIM2_IRQHandler) referenced from startup_stm32f103xb.o(RESET) -
    • TIM3_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • TIM4_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USART1_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USART2_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USART3_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USBWakeUp_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USB_HP_CAN1_TX_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • USB_LP_CAN1_RX0_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • UsageFault_Handler from stm32f1xx_it.o(.text.UsageFault_Handler) referenced from startup_stm32f103xb.o(RESET) -
    • WWDG_IRQHandler from startup_stm32f103xb.o(.text) referenced from startup_stm32f103xb.o(RESET) -
    • __main from __main.o(!!!main) referenced from startup_stm32f103xb.o(.text) -
    -

    -

    -Global Symbols -

    -

    __main (Thumb, 8 bytes, Stack size 0 bytes, __main.o(!!!main)) -

    [Calls]

    • >>   __scatterload -
    • >>   __rt_entry -
    -
    [Address Reference Count : 1]
    • startup_stm32f103xb.o(.text) -
    -

    __scatterload (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter)) -

    [Called By]

    • >>   __main -
    - -

    __scatterload_rt2 (Thumb, 44 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) -

    [Calls]

    • >>   __rt_entry -
    - -

    __scatterload_rt2_thumb_only (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) - -

    __scatterload_null (Thumb, 0 bytes, Stack size unknown bytes, __scatter.o(!!!scatter), UNUSED) - -

    __scatterload_copy (Thumb, 26 bytes, Stack size unknown bytes, __scatter_copy.o(!!handler_copy), UNUSED) -

    [Calls]

    • >>   __scatterload_copy -
    -
    [Called By]
    • >>   __scatterload_copy -
    - -

    __scatterload_zeroinit (Thumb, 28 bytes, Stack size unknown bytes, __scatter_zi.o(!!handler_zi), UNUSED) - -

    __rt_lib_init (Thumb, 0 bytes, Stack size unknown bytes, libinit.o(.ARM.Collect$$libinit$$00000000)) -

    [Called By]

    • >>   __rt_entry_li -
    - -

    __rt_lib_init_alloca_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000030)) - -

    __rt_lib_init_argv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000002E)) - -

    __rt_lib_init_atexit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001D)) - -

    __rt_lib_init_clock_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000023)) - -

    __rt_lib_init_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000034)) - -

    __rt_lib_init_exceptions_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000032)) - -

    __rt_lib_init_fp_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000002)) - -

    __rt_lib_init_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000021)) - -

    __rt_lib_init_getenv_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000025)) - -

    __rt_lib_init_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000C)) - -

    __rt_lib_init_lc_collate_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000013)) - -

    __rt_lib_init_lc_ctype_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000015)) - -

    __rt_lib_init_lc_monetary_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000017)) - -

    __rt_lib_init_lc_numeric_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000019)) - -

    __rt_lib_init_lc_time_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001B)) - -

    __rt_lib_init_preinit_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000006)) - -

    __rt_lib_init_rand_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000010)) - -

    __rt_lib_init_relocate_pie_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000004)) - -

    __rt_lib_init_return (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000035)) - -

    __rt_lib_init_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000001F)) - -

    __rt_lib_init_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$00000027)) - -

    __rt_lib_init_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libinit2.o(.ARM.Collect$$libinit$$0000000E)) - -

    __rt_lib_shutdown (Thumb, 0 bytes, Stack size unknown bytes, libshutdown.o(.ARM.Collect$$libshutdown$$00000000)) -

    [Called By]

    • >>   __rt_exit_ls -
    - -

    __rt_lib_shutdown_cpp_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)) - -

    __rt_lib_shutdown_fp_trap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000007)) - -

    __rt_lib_shutdown_heap_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F)) - -

    __rt_lib_shutdown_return (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000010)) - -

    __rt_lib_shutdown_signal_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A)) - -

    __rt_lib_shutdown_stdio_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)) - -

    __rt_lib_shutdown_user_alloc_1 (Thumb, 0 bytes, Stack size unknown bytes, libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)) - -

    __rt_entry (Thumb, 0 bytes, Stack size unknown bytes, __rtentry.o(.ARM.Collect$$rtentry$$00000000)) -

    [Called By]

    • >>   __scatterload_rt2 -
    • >>   __main -
    - -

    __rt_entry_presh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000002)) - -

    __rt_entry_sh (Thumb, 0 bytes, Stack size unknown bytes, __rtentry4.o(.ARM.Collect$$rtentry$$00000004)) -

    [Stack]

    • Max Depth = 8 + Unknown Stack Size -
    • Call Chain = __rt_entry_sh ⇒ __user_setup_stackheap -
    -
    [Calls]
    • >>   __user_setup_stackheap -
    - -

    __rt_entry_li (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)) -

    [Calls]

    • >>   __rt_lib_init -
    - -

    __rt_entry_postsh_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$00000009)) - -

    __rt_entry_main (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)) -

    [Stack]

    • Max Depth = 288 + Unknown Stack Size -
    • Call Chain = __rt_entry_main ⇒ main ⇒ Menu_Process ⇒ ProcessButton ⇒ DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   main -
    • >>   exit -
    - -

    __rt_entry_postli_1 (Thumb, 0 bytes, Stack size unknown bytes, __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)) - -

    __rt_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit.o(.ARM.Collect$$rtexit$$00000000)) -

    [Called By]

    • >>   exit -
    - -

    __rt_exit_ls (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000003)) -

    [Calls]

    • >>   __rt_lib_shutdown -
    - -

    __rt_exit_prels_1 (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000002)) - -

    __rt_exit_exit (Thumb, 0 bytes, Stack size unknown bytes, rtexit2.o(.ARM.Collect$$rtexit$$00000004)) -

    [Calls]

    • >>   _sys_exit -
    - -

    Reset_Handler (Thumb, 8 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    ADC1_2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -

    [Calls]

    • >>   ADC1_2_IRQHandler -
    -
    [Called By]
    • >>   ADC1_2_IRQHandler -
    -
    [Address Reference Count : 1]
    • startup_stm32f103xb.o(RESET) -
    -

    CAN1_RX1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    CAN1_SCE_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel4_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel5_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel6_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DMA1_Channel7_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI0_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI15_10_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI4_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    EXTI9_5_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    FLASH_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    I2C1_ER_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    I2C1_EV_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    I2C2_ER_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    I2C2_EV_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    PVD_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    RCC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    RTC_Alarm_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    RTC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    SPI1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    SPI2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TAMPER_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM1_BRK_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM1_CC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM1_TRG_COM_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM1_UP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    TIM4_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USART1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USART2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USART3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USBWakeUp_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USB_HP_CAN1_TX_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    USB_LP_CAN1_RX0_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    WWDG_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32f103xb.o(.text)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    __user_initial_stackheap (Thumb, 0 bytes, Stack size unknown bytes, startup_stm32f103xb.o(.text)) -

    [Called By]

    • >>   __user_setup_stackheap -
    - -

    __aeabi_memclr4 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text)) -

    [Called By]

    • >>   SystemClock_Config -
    - -

    __aeabi_memclr8 (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text), UNUSED) - -

    __rt_memclr_w (Thumb, 0 bytes, Stack size unknown bytes, rt_memclr_w.o(.text), UNUSED) - -

    _memset_w (Thumb, 74 bytes, Stack size 4 bytes, rt_memclr_w.o(.text), UNUSED) - -

    __use_two_region_memory (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) - -

    __rt_heap_escrow$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) - -

    __rt_heap_expand$2region (Thumb, 2 bytes, Stack size 0 bytes, heapauxi.o(.text), UNUSED) - -

    __user_setup_stackheap (Thumb, 74 bytes, Stack size 8 bytes, sys_stackheap_outer.o(.text)) -

    [Stack]

    • Max Depth = 8 + Unknown Stack Size -
    • Call Chain = __user_setup_stackheap -
    -
    [Calls]
    • >>   __user_initial_stackheap -
    • >>   __user_perproc_libspace -
    -
    [Called By]
    • >>   __rt_entry_sh -
    - -

    exit (Thumb, 18 bytes, Stack size 8 bytes, exit.o(.text)) -

    [Stack]

    • Max Depth = 8 + Unknown Stack Size -
    • Call Chain = exit -
    -
    [Calls]
    • >>   __rt_exit -
    -
    [Called By]
    • >>   __rt_entry_main -
    - -

    __user_libspace (Thumb, 8 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) - -

    __user_perproc_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text)) -

    [Called By]

    • >>   __user_setup_stackheap -
    - -

    __user_perthread_libspace (Thumb, 0 bytes, Stack size 0 bytes, libspace.o(.text), UNUSED) - -

    _sys_exit (Thumb, 8 bytes, Stack size 0 bytes, sys_exit.o(.text)) -

    [Called By]

    • >>   __rt_exit_exit -
    - -

    __I$use$semihosting (Thumb, 0 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) - -

    __use_no_semihosting_swi (Thumb, 2 bytes, Stack size 0 bytes, use_no_semi.o(.text), UNUSED) - -

    __semihosting_library_function (Thumb, 0 bytes, Stack size unknown bytes, indicate_semi.o(.text), UNUSED) - -

    BusFault_Handler (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.BusFault_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    ClockManager_GetDuty (Thumb, 12 bytes, Stack size 0 bytes, clock_manager.o(.text.ClockManager_GetDuty)) -

    [Called By]

    • >>   ProcessButton -
    - -

    ClockManager_GetTime (Thumb, 84 bytes, Stack size 24 bytes, clock_manager.o(.text.ClockManager_GetTime)) -

    [Stack]

    • Max Depth = 112
    • Call Chain = ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   HAL_RTC_GetTime -
    -
    [Called By]
    • >>   ProcessButton -
    • >>   UpdateDisplay -
    - -

    ClockManager_Init (Thumb, 62 bytes, Stack size 8 bytes, clock_manager.o(.text.ClockManager_Init)) -

    [Stack]

    • Max Depth = 120
    • Call Chain = ClockManager_Init ⇒ ClockManager_ResetTime ⇒ ClockManager_SetTime ⇒ HAL_RTC_SetTime ⇒ RTC_WriteAlarmCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   LoadDuty -
    • >>   HAL_RTC_GetTime -
    • >>   ClockManager_ResetTime -
    • >>   Segment_SetBrightness -
    -
    [Called By]
    • >>   main -
    - -

    ClockManager_ResetTime (Thumb, 14 bytes, Stack size 8 bytes, clock_manager.o(.text.ClockManager_ResetTime)) -

    [Stack]

    • Max Depth = 112
    • Call Chain = ClockManager_ResetTime ⇒ ClockManager_SetTime ⇒ HAL_RTC_SetTime ⇒ RTC_WriteAlarmCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   ClockManager_SetTime -
    -
    [Called By]
    • >>   ClockManager_Init -
    • >>   ProcessButton -
    - -

    ClockManager_SetDuty (Thumb, 62 bytes, Stack size 16 bytes, clock_manager.o(.text.ClockManager_SetDuty)) -

    [Stack]

    • Max Depth = 40
    • Call Chain = ClockManager_SetDuty ⇒ SaveDuty ⇒ HAL_RTCEx_BKUPWrite -
    -
    [Calls]
    • >>   SaveDuty -
    • >>   Segment_SetBrightness -
    -
    [Called By]
    • >>   ProcessButton -
    - -

    ClockManager_SetTime (Thumb, 60 bytes, Stack size 16 bytes, clock_manager.o(.text.ClockManager_SetTime)) -

    [Stack]

    • Max Depth = 104
    • Call Chain = ClockManager_SetTime ⇒ HAL_RTC_SetTime ⇒ RTC_WriteAlarmCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   HAL_RTC_SetTime -
    -
    [Called By]
    • >>   ProcessButton -
    • >>   ClockManager_ResetTime -
    - -

    DebugMon_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.DebugMon_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    DisableAllDigits (Thumb, 88 bytes, Stack size 0 bytes, segment.o(.text.DisableAllDigits)) -

    [Called By]

    • >>   UpdateOneDigit -
    - -

    EnableDigit (Thumb, 118 bytes, Stack size 8 bytes, segment.o(.text.EnableDigit)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = EnableDigit -
    -
    [Called By]
    • >>   UpdateOneDigit -
    - -

    Error_Handler (Thumb, 14 bytes, Stack size 4 bytes, main.o(.text.Error_Handler)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = Error_Handler -
    -
    [Called By]
    • >>   MX_TIM2_Init -
    • >>   MX_RTC_Init -
    • >>   SystemClock_Config -
    - -

    HAL_GPIO_Init (Thumb, 798 bytes, Stack size 64 bytes, stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init)) -

    [Stack]

    • Max Depth = 64
    • Call Chain = HAL_GPIO_Init -
    -
    [Called By]
    • >>   MX_GPIO_Init -
    - -

    HAL_GPIO_ReadPin (Thumb, 46 bytes, Stack size 8 bytes, stm32f1xx_hal_gpio.o(.text.HAL_GPIO_ReadPin)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = HAL_GPIO_ReadPin -
    -
    [Called By]
    • >>   ReadButton -
    - -

    HAL_GPIO_WritePin (Thumb, 46 bytes, Stack size 8 bytes, stm32f1xx_hal_gpio.o(.text.HAL_GPIO_WritePin)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = HAL_GPIO_WritePin -
    -
    [Called By]
    • >>   MX_GPIO_Init -
    - -

    HAL_GetTick (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text.HAL_GetTick)) -

    [Called By]

    • >>   HAL_RTC_WaitForSynchro -
    • >>   RTC_ExitInitMode -
    • >>   RTC_EnterInitMode -
    • >>   HAL_RCCEx_PeriphCLKConfig -
    • >>   HAL_RCC_ClockConfig -
    • >>   HAL_RCC_OscConfig -
    • >>   Menu_Process -
    • >>   ProcessButton -
    - -

    HAL_IncTick (Thumb, 26 bytes, Stack size 0 bytes, stm32f1xx_hal.o(.text.HAL_IncTick)) -

    [Called By]

    • >>   SysTick_Handler -
    - -

    HAL_Init (Thumb, 38 bytes, Stack size 8 bytes, stm32f1xx_hal.o(.text.HAL_Init)) -

    [Stack]

    • Max Depth = 88
    • Call Chain = HAL_Init ⇒ HAL_InitTick ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_InitTick -
    • >>   HAL_NVIC_SetPriorityGrouping -
    • >>   HAL_MspInit -
    -
    [Called By]
    • >>   main -
    - -

    HAL_InitTick (Thumb, 112 bytes, Stack size 16 bytes, stm32f1xx_hal.o(.text.HAL_InitTick)) -

    [Stack]

    • Max Depth = 80
    • Call Chain = HAL_InitTick ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_SYSTICK_Config -
    • >>   HAL_NVIC_SetPriority -
    -
    [Called By]
    • >>   HAL_RCC_ClockConfig -
    • >>   HAL_Init -
    - -

    HAL_MspInit (Thumb, 100 bytes, Stack size 12 bytes, stm32f1xx_hal_msp.o(.text.HAL_MspInit)) -

    [Stack]

    • Max Depth = 12
    • Call Chain = HAL_MspInit -
    -
    [Called By]
    • >>   HAL_Init -
    - -

    HAL_NVIC_EnableIRQ (Thumb, 20 bytes, Stack size 16 bytes, stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = HAL_NVIC_EnableIRQ ⇒ __NVIC_EnableIRQ -
    -
    [Calls]
    • >>   __NVIC_EnableIRQ -
    -
    [Called By]
    • >>   HAL_TIM_Base_MspInit -
    - -

    HAL_NVIC_SetPriority (Thumb, 50 bytes, Stack size 32 bytes, stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority)) -

    [Stack]

    • Max Depth = 64
    • Call Chain = HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   __NVIC_SetPriority -
    • >>   NVIC_EncodePriority -
    • >>   __NVIC_GetPriorityGrouping -
    -
    [Called By]
    • >>   HAL_InitTick -
    • >>   HAL_TIM_Base_MspInit -
    - -

    HAL_NVIC_SetPriorityGrouping (Thumb, 16 bytes, Stack size 16 bytes, stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping)) -

    [Stack]

    • Max Depth = 28
    • Call Chain = HAL_NVIC_SetPriorityGrouping ⇒ __NVIC_SetPriorityGrouping -
    -
    [Calls]
    • >>   __NVIC_SetPriorityGrouping -
    -
    [Called By]
    • >>   HAL_Init -
    - -

    HAL_PWR_EnableBkUpAccess (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableBkUpAccess)) -

    [Called By]

    • >>   HAL_RTC_MspInit -
    - -

    HAL_RCCEx_GetPeriphCLKFreq (Thumb, 406 bytes, Stack size 40 bytes, stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq)) -

    [Stack]

    • Max Depth = 48
    • Call Chain = HAL_RCCEx_GetPeriphCLKFreq ⇒ HAL_RCC_GetPCLK2Freq -
    -
    [Calls]
    • >>   HAL_RCC_GetPCLK2Freq -
    -
    [Called By]
    • >>   HAL_RTC_Init -
    - -

    HAL_RCCEx_PeriphCLKConfig (Thumb, 456 bytes, Stack size 32 bytes, stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig)) -

    [Stack]

    • Max Depth = 32
    • Call Chain = HAL_RCCEx_PeriphCLKConfig -
    -
    [Calls]
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   SystemClock_Config -
    - -

    HAL_RCC_ClockConfig (Thumb, 598 bytes, Stack size 24 bytes, stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig)) -

    [Stack]

    • Max Depth = 104
    • Call Chain = HAL_RCC_ClockConfig ⇒ HAL_InitTick ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_RCC_GetSysClockFreq -
    • >>   HAL_InitTick -
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   SystemClock_Config -
    - -

    HAL_RCC_GetHCLKFreq (Thumb, 12 bytes, Stack size 0 bytes, stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq)) -

    [Called By]

    • >>   HAL_RCC_GetPCLK2Freq -
    - -

    HAL_RCC_GetPCLK2Freq (Thumb, 34 bytes, Stack size 8 bytes, stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = HAL_RCC_GetPCLK2Freq -
    -
    [Calls]
    • >>   HAL_RCC_GetHCLKFreq -
    -
    [Called By]
    • >>   HAL_RCCEx_GetPeriphCLKFreq -
    - -

    HAL_RCC_GetSysClockFreq (Thumb, 188 bytes, Stack size 24 bytes, stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = HAL_RCC_GetSysClockFreq -
    -
    [Called By]
    • >>   HAL_RCC_ClockConfig -
    - -

    HAL_RCC_OscConfig (Thumb, 1658 bytes, Stack size 32 bytes, stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig)) -

    [Stack]

    • Max Depth = 40
    • Call Chain = HAL_RCC_OscConfig ⇒ RCC_Delay -
    -
    [Calls]
    • >>   RCC_Delay -
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   SystemClock_Config -
    - -

    HAL_RTCEx_BKUPRead (Thumb, 46 bytes, Stack size 16 bytes, stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPRead)) -

    [Stack]

    • Max Depth = 16
    • Call Chain = HAL_RTCEx_BKUPRead -
    -
    [Called By]
    • >>   LoadDuty -
    - -

    HAL_RTCEx_BKUPWrite (Thumb, 44 bytes, Stack size 16 bytes, stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPWrite)) -

    [Stack]

    • Max Depth = 16
    • Call Chain = HAL_RTCEx_BKUPWrite -
    -
    [Called By]
    • >>   SaveDuty -
    - -

    HAL_RTC_GetTime (Thumb, 434 bytes, Stack size 40 bytes, stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime)) -

    [Stack]

    • Max Depth = 88
    • Call Chain = HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   RTC_ByteToBcd2 -
    • >>   RTC_DateUpdate -
    • >>   RTC_ReadTimeCounter -
    • >>   RTC_WriteAlarmCounter -
    • >>   RTC_ReadAlarmCounter -
    • >>   RTC_WriteTimeCounter -
    -
    [Called By]
    • >>   ClockManager_Init -
    • >>   ClockManager_GetTime -
    - -

    HAL_RTC_Init (Thumb, 298 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init)) -

    [Stack]

    • Max Depth = 72
    • Call Chain = HAL_RTC_Init ⇒ HAL_RCCEx_GetPeriphCLKFreq ⇒ HAL_RCC_GetPCLK2Freq -
    -
    [Calls]
    • >>   HAL_RCCEx_GetPeriphCLKFreq -
    • >>   HAL_RTC_WaitForSynchro -
    • >>   RTC_ExitInitMode -
    • >>   RTC_EnterInitMode -
    • >>   HAL_RTC_MspInit -
    -
    [Called By]
    • >>   MX_RTC_Init -
    - -

    HAL_RTC_MspInit (Thumb, 76 bytes, Stack size 16 bytes, rtc.o(.text.HAL_RTC_MspInit)) -

    [Stack]

    • Max Depth = 16
    • Call Chain = HAL_RTC_MspInit -
    -
    [Calls]
    • >>   HAL_PWR_EnableBkUpAccess -
    -
    [Called By]
    • >>   HAL_RTC_Init -
    - -

    HAL_RTC_SetTime (Thumb, 322 bytes, Stack size 40 bytes, stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime)) -

    [Stack]

    • Max Depth = 88
    • Call Chain = HAL_RTC_SetTime ⇒ RTC_WriteAlarmCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   RTC_WriteAlarmCounter -
    • >>   RTC_ReadAlarmCounter -
    • >>   RTC_WriteTimeCounter -
    • >>   RTC_Bcd2ToByte -
    -
    [Called By]
    • >>   ClockManager_SetTime -
    - -

    HAL_RTC_WaitForSynchro (Thumb, 100 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = HAL_RTC_WaitForSynchro -
    -
    [Calls]
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   HAL_RTC_Init -
    - -

    HAL_SYSTICK_Config (Thumb, 16 bytes, Stack size 16 bytes, stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config)) -

    [Stack]

    • Max Depth = 40
    • Call Chain = HAL_SYSTICK_Config ⇒ SysTick_Config ⇒ __NVIC_SetPriority -
    -
    [Calls]
    • >>   SysTick_Config -
    -
    [Called By]
    • >>   HAL_InitTick -
    - -

    HAL_TIMEx_BreakCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIMEx_BreakCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIMEx_CommutCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIMEx_CommutCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIMEx_MasterConfigSynchronization (Thumb, 220 bytes, Stack size 20 bytes, stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = HAL_TIMEx_MasterConfigSynchronization -
    -
    [Called By]
    • >>   MX_TIM2_Init -
    - -

    HAL_TIM_Base_Init (Thumb, 156 bytes, Stack size 16 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init)) -

    [Stack]

    • Max Depth = 104
    • Call Chain = HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   TIM_Base_SetConfig -
    • >>   HAL_TIM_Base_MspInit -
    -
    [Called By]
    • >>   MX_TIM2_Init -
    - -

    HAL_TIM_Base_MspInit (Thumb, 72 bytes, Stack size 24 bytes, tim.o(.text.HAL_TIM_Base_MspInit)) -

    [Stack]

    • Max Depth = 88
    • Call Chain = HAL_TIM_Base_MspInit ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_NVIC_EnableIRQ -
    • >>   HAL_NVIC_SetPriority -
    -
    [Called By]
    • >>   HAL_TIM_Base_Init -
    - -

    HAL_TIM_Base_Start_IT (Thumb, 176 bytes, Stack size 12 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_IT)) -

    [Stack]

    • Max Depth = 12
    • Call Chain = HAL_TIM_Base_Start_IT -
    -
    [Called By]
    • >>   main -
    - -

    HAL_TIM_ConfigClockSource (Thumb, 388 bytes, Stack size 32 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource)) -

    [Stack]

    • Max Depth = 52
    • Call Chain = HAL_TIM_ConfigClockSource ⇒ TIM_ETR_SetConfig -
    -
    [Calls]
    • >>   TIM_ETR_SetConfig -
    • >>   TIM_TI2_ConfigInputStage -
    • >>   TIM_ITRx_SetConfig -
    • >>   TIM_TI1_ConfigInputStage -
    -
    [Called By]
    • >>   MX_TIM2_Init -
    - -

    HAL_TIM_IC_CaptureCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIM_IC_CaptureCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIM_IRQHandler (Thumb, 538 bytes, Stack size 24 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler)) -

    [Stack]

    • Max Depth = 72
    • Call Chain = HAL_TIM_IRQHandler ⇒ HAL_TIM_PeriodElapsedCallback ⇒ Segment_Process ⇒ UpdateOneDigit ⇒ EnableDigit -
    -
    [Calls]
    • >>   HAL_TIMEx_CommutCallback -
    • >>   HAL_TIM_TriggerCallback -
    • >>   HAL_TIMEx_BreakCallback -
    • >>   HAL_TIM_OC_DelayElapsedCallback -
    • >>   HAL_TIM_IC_CaptureCallback -
    • >>   HAL_TIM_PWM_PulseFinishedCallback -
    • >>   HAL_TIM_PeriodElapsedCallback -
    -
    [Called By]
    • >>   TIM2_IRQHandler -
    - -

    HAL_TIM_OC_DelayElapsedCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIM_OC_DelayElapsedCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIM_PWM_PulseFinishedCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIM_PWM_PulseFinishedCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIM_PeriodElapsedCallback (Thumb, 28 bytes, Stack size 16 bytes, main.o(.text.HAL_TIM_PeriodElapsedCallback)) -

    [Stack]

    • Max Depth = 48
    • Call Chain = HAL_TIM_PeriodElapsedCallback ⇒ Segment_Process ⇒ UpdateOneDigit ⇒ EnableDigit -
    -
    [Calls]
    • >>   Segment_Process -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HAL_TIM_TriggerCallback (Thumb, 8 bytes, Stack size 4 bytes, stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = HAL_TIM_TriggerCallback -
    -
    [Called By]
    • >>   HAL_TIM_IRQHandler -
    - -

    HardFault_Handler (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.HardFault_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    MX_GPIO_Init (Thumb, 264 bytes, Stack size 72 bytes, gpio.o(.text.MX_GPIO_Init)) -

    [Stack]

    • Max Depth = 136
    • Call Chain = MX_GPIO_Init ⇒ HAL_GPIO_Init -
    -
    [Calls]
    • >>   HAL_GPIO_Init -
    • >>   HAL_GPIO_WritePin -
    -
    [Called By]
    • >>   main -
    - -

    MX_RTC_Init (Thumb, 48 bytes, Stack size 8 bytes, rtc.o(.text.MX_RTC_Init)) -

    [Stack]

    • Max Depth = 80
    • Call Chain = MX_RTC_Init ⇒ HAL_RTC_Init ⇒ HAL_RCCEx_GetPeriphCLKFreq ⇒ HAL_RCC_GetPCLK2Freq -
    -
    [Calls]
    • >>   HAL_RTC_Init -
    • >>   Error_Handler -
    -
    [Called By]
    • >>   main -
    - -

    MX_TIM2_Init (Thumb, 126 bytes, Stack size 40 bytes, tim.o(.text.MX_TIM2_Init)) -

    [Stack]

    • Max Depth = 144
    • Call Chain = MX_TIM2_Init ⇒ HAL_TIM_Base_Init ⇒ HAL_TIM_Base_MspInit ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_TIMEx_MasterConfigSynchronization -
    • >>   HAL_TIM_ConfigClockSource -
    • >>   HAL_TIM_Base_Init -
    • >>   Error_Handler -
    -
    [Called By]
    • >>   main -
    - -

    MemManage_Handler (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.MemManage_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    Menu_Init (Thumb, 104 bytes, Stack size 4 bytes, menu.o(.text.Menu_Init)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = Menu_Init -
    -
    [Called By]
    • >>   main -
    - -

    Menu_Process (Thumb, 800 bytes, Stack size 24 bytes, menu.o(.text.Menu_Process)) -

    [Stack]

    • Max Depth = 272
    • Call Chain = Menu_Process ⇒ ProcessButton ⇒ DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   HAL_GetTick -
    • >>   ReadButton -
    • >>   ProcessButton -
    • >>   UpdateDisplay -
    -
    [Called By]
    • >>   main -
    - -

    NMI_Handler (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.NMI_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    PendSV_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.PendSV_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    ReadButton (Thumb, 140 bytes, Stack size 24 bytes, main.o(.text.ReadButton)) -

    [Stack]

    • Max Depth = 32
    • Call Chain = ReadButton ⇒ HAL_GPIO_ReadPin -
    -
    [Calls]
    • >>   HAL_GPIO_ReadPin -
    -
    [Called By]
    • >>   Menu_Process -
    - -

    SVC_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.SVC_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    Segment_Init (Thumb, 92 bytes, Stack size 16 bytes, segment.o(.text.Segment_Init)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = Segment_Init ⇒ NextDigit -
    -
    [Calls]
    • >>   NextDigit -
    -
    [Called By]
    • >>   main -
    - -

    Segment_Process (Thumb, 8 bytes, Stack size 8 bytes, segment.o(.text.Segment_Process)) -

    [Stack]

    • Max Depth = 32
    • Call Chain = Segment_Process ⇒ UpdateOneDigit ⇒ EnableDigit -
    -
    [Calls]
    • >>   UpdateOneDigit -
    -
    [Called By]
    • >>   HAL_TIM_PeriodElapsedCallback -
    - -

    Segment_SetBrightness (Thumb, 60 bytes, Stack size 4 bytes, segment.o(.text.Segment_SetBrightness)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = Segment_SetBrightness -
    -
    [Called By]
    • >>   ClockManager_Init -
    • >>   ProcessButton -
    • >>   ClockManager_SetDuty -
    - -

    Segment_SetString (Thumb, 84 bytes, Stack size 16 bytes, segment.o(.text.Segment_SetString)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = Segment_SetString ⇒ GetCharMask -
    -
    [Calls]
    • >>   GetCharMask -
    -
    [Called By]
    • >>   UpdateDisplay -
    - -

    SysTick_Handler (Thumb, 8 bytes, Stack size 8 bytes, stm32f1xx_it.o(.text.SysTick_Handler)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = SysTick_Handler -
    -
    [Calls]
    • >>   HAL_IncTick -
    -
    [Address Reference Count : 1]
    • startup_stm32f103xb.o(RESET) -
    -

    SystemClock_Config (Thumb, 148 bytes, Stack size 96 bytes, main.o(.text.SystemClock_Config)) -

    [Stack]

    • Max Depth = 200 + Unknown Stack Size -
    • Call Chain = SystemClock_Config ⇒ HAL_RCC_ClockConfig ⇒ HAL_InitTick ⇒ HAL_NVIC_SetPriority ⇒ NVIC_EncodePriority -
    -
    [Calls]
    • >>   HAL_RCCEx_PeriphCLKConfig -
    • >>   HAL_RCC_ClockConfig -
    • >>   Error_Handler -
    • >>   HAL_RCC_OscConfig -
    • >>   __aeabi_memclr4 -
    -
    [Called By]
    • >>   main -
    - -

    SystemInit (Thumb, 2 bytes, Stack size 0 bytes, system_stm32f1xx.o(.text.SystemInit)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(.text) -
    -

    TIM2_IRQHandler (Thumb, 16 bytes, Stack size 8 bytes, stm32f1xx_it.o(.text.TIM2_IRQHandler)) -

    [Stack]

    • Max Depth = 80
    • Call Chain = TIM2_IRQHandler ⇒ HAL_TIM_IRQHandler ⇒ HAL_TIM_PeriodElapsedCallback ⇒ Segment_Process ⇒ UpdateOneDigit ⇒ EnableDigit -
    -
    [Calls]
    • >>   HAL_TIM_IRQHandler -
    -
    [Address Reference Count : 1]
    • startup_stm32f103xb.o(RESET) -
    -

    TIM_Base_SetConfig (Thumb, 262 bytes, Stack size 12 bytes, stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig)) -

    [Stack]

    • Max Depth = 12
    • Call Chain = TIM_Base_SetConfig -
    -
    [Called By]
    • >>   HAL_TIM_Base_Init -
    - -

    TIM_ETR_SetConfig (Thumb, 52 bytes, Stack size 20 bytes, stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = TIM_ETR_SetConfig -
    -
    [Called By]
    • >>   HAL_TIM_ConfigClockSource -
    - -

    UsageFault_Handler (Thumb, 4 bytes, Stack size 0 bytes, stm32f1xx_it.o(.text.UsageFault_Handler)) -
    [Address Reference Count : 1]

    • startup_stm32f103xb.o(RESET) -
    -

    main (Thumb, 60 bytes, Stack size 16 bytes, main.o(.text.main)) -

    [Stack]

    • Max Depth = 288 + Unknown Stack Size -
    • Call Chain = main ⇒ Menu_Process ⇒ ProcessButton ⇒ DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   Menu_Process -
    • >>   HAL_TIM_Base_Start_IT -
    • >>   Menu_Init -
    • >>   ClockManager_Init -
    • >>   Segment_Init -
    • >>   MX_TIM2_Init -
    • >>   MX_RTC_Init -
    • >>   MX_GPIO_Init -
    • >>   SystemClock_Config -
    • >>   HAL_Init -
    -
    [Called By]
    • >>   __rt_entry_main -
    -

    -

    -Local Symbols -

    -

    RTC_EnterInitMode (Thumb, 86 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = RTC_EnterInitMode -
    -
    [Calls]
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   RTC_WriteAlarmCounter -
    • >>   RTC_WriteTimeCounter -
    • >>   HAL_RTC_Init -
    - -

    RTC_ExitInitMode (Thumb, 86 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = RTC_ExitInitMode -
    -
    [Calls]
    • >>   HAL_GetTick -
    -
    [Called By]
    • >>   RTC_WriteAlarmCounter -
    • >>   RTC_WriteTimeCounter -
    • >>   HAL_RTC_Init -
    - -

    RTC_Bcd2ToByte (Thumb, 42 bytes, Stack size 8 bytes, stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = RTC_Bcd2ToByte -
    -
    [Called By]
    • >>   HAL_RTC_SetTime -
    - -

    RTC_WriteTimeCounter (Thumb, 80 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter)) -

    [Stack]

    • Max Depth = 48
    • Call Chain = RTC_WriteTimeCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   RTC_ExitInitMode -
    • >>   RTC_EnterInitMode -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    • >>   HAL_RTC_SetTime -
    - -

    RTC_ReadAlarmCounter (Thumb, 50 bytes, Stack size 8 bytes, stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = RTC_ReadAlarmCounter -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    • >>   HAL_RTC_SetTime -
    - -

    RTC_WriteAlarmCounter (Thumb, 80 bytes, Stack size 24 bytes, stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter)) -

    [Stack]

    • Max Depth = 48
    • Call Chain = RTC_WriteAlarmCounter ⇒ RTC_ExitInitMode -
    -
    [Calls]
    • >>   RTC_ExitInitMode -
    • >>   RTC_EnterInitMode -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    • >>   HAL_RTC_SetTime -
    - -

    RTC_ReadTimeCounter (Thumb, 106 bytes, Stack size 16 bytes, stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter)) -

    [Stack]

    • Max Depth = 16
    • Call Chain = RTC_ReadTimeCounter -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    - -

    RTC_DateUpdate (Thumb, 370 bytes, Stack size 32 bytes, stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate)) -

    [Stack]

    • Max Depth = 48
    • Call Chain = RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   RTC_WeekDayNum -
    • >>   RTC_IsLeapYear -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    - -

    RTC_ByteToBcd2 (Thumb, 58 bytes, Stack size 8 bytes, stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = RTC_ByteToBcd2 -
    -
    [Called By]
    • >>   HAL_RTC_GetTime -
    - -

    RTC_IsLeapYear (Thumb, 120 bytes, Stack size 4 bytes, stm32f1xx_hal_rtc.o(.text.RTC_IsLeapYear)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = RTC_IsLeapYear -
    -
    [Called By]
    • >>   RTC_DateUpdate -
    - -

    RTC_WeekDayNum (Thumb, 226 bytes, Stack size 16 bytes, stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum)) -

    [Stack]

    • Max Depth = 16
    • Call Chain = RTC_WeekDayNum -
    -
    [Called By]
    • >>   RTC_DateUpdate -
    - -

    RCC_Delay (Thumb, 58 bytes, Stack size 8 bytes, stm32f1xx_hal_rcc.o(.text.RCC_Delay)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = RCC_Delay -
    -
    [Called By]
    • >>   HAL_RCC_OscConfig -
    - -

    __NVIC_SetPriorityGrouping (Thumb, 60 bytes, Stack size 12 bytes, stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping)) -

    [Stack]

    • Max Depth = 12
    • Call Chain = __NVIC_SetPriorityGrouping -
    -
    [Called By]
    • >>   HAL_NVIC_SetPriorityGrouping -
    - -

    __NVIC_GetPriorityGrouping (Thumb, 16 bytes, Stack size 0 bytes, stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping)) -

    [Called By]

    • >>   HAL_NVIC_SetPriority -
    - -

    NVIC_EncodePriority (Thumb, 108 bytes, Stack size 32 bytes, stm32f1xx_hal_cortex.o(.text.NVIC_EncodePriority)) -

    [Stack]

    • Max Depth = 32
    • Call Chain = NVIC_EncodePriority -
    -
    [Called By]
    • >>   HAL_NVIC_SetPriority -
    - -

    __NVIC_SetPriority (Thumb, 66 bytes, Stack size 8 bytes, stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = __NVIC_SetPriority -
    -
    [Called By]
    • >>   SysTick_Config -
    • >>   HAL_NVIC_SetPriority -
    - -

    __NVIC_EnableIRQ (Thumb, 48 bytes, Stack size 4 bytes, stm32f1xx_hal_cortex.o(.text.__NVIC_EnableIRQ)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = __NVIC_EnableIRQ -
    -
    [Called By]
    • >>   HAL_NVIC_EnableIRQ -
    - -

    SysTick_Config (Thumb, 82 bytes, Stack size 16 bytes, stm32f1xx_hal_cortex.o(.text.SysTick_Config)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = SysTick_Config ⇒ __NVIC_SetPriority -
    -
    [Calls]
    • >>   __NVIC_SetPriority -
    -
    [Called By]
    • >>   HAL_SYSTICK_Config -
    - -

    TIM_TI1_ConfigInputStage (Thumb, 80 bytes, Stack size 20 bytes, stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = TIM_TI1_ConfigInputStage -
    -
    [Called By]
    • >>   HAL_TIM_ConfigClockSource -
    - -

    TIM_ITRx_SetConfig (Thumb, 42 bytes, Stack size 12 bytes, stm32f1xx_hal_tim.o(.text.TIM_ITRx_SetConfig)) -

    [Stack]

    • Max Depth = 12
    • Call Chain = TIM_ITRx_SetConfig -
    -
    [Called By]
    • >>   HAL_TIM_ConfigClockSource -
    - -

    TIM_TI2_ConfigInputStage (Thumb, 82 bytes, Stack size 20 bytes, stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage)) -

    [Stack]

    • Max Depth = 20
    • Call Chain = TIM_TI2_ConfigInputStage -
    -
    [Called By]
    • >>   HAL_TIM_ConfigClockSource -
    - -

    LoadDuty (Thumb, 64 bytes, Stack size 16 bytes, clock_manager.o(.text.LoadDuty)) -

    [Stack]

    • Max Depth = 32
    • Call Chain = LoadDuty ⇒ HAL_RTCEx_BKUPRead -
    -
    [Calls]
    • >>   HAL_RTCEx_BKUPRead -
    -
    [Called By]
    • >>   ClockManager_Init -
    - -

    SaveDuty (Thumb, 28 bytes, Stack size 8 bytes, clock_manager.o(.text.SaveDuty)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = SaveDuty ⇒ HAL_RTCEx_BKUPWrite -
    -
    [Calls]
    • >>   HAL_RTCEx_BKUPWrite -
    -
    [Called By]
    • >>   ClockManager_SetDuty -
    - -

    UpdateDisplay (Thumb, 326 bytes, Stack size 56 bytes, menu.o(.text.UpdateDisplay)) -

    [Stack]

    • Max Depth = 168
    • Call Chain = UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   Segment_SetString -
    • >>   FormatTime -
    • >>   ClockManager_GetTime -
    -
    [Called By]
    • >>   Menu_Process -
    • >>   DecreaseTimeDigit -
    • >>   IncreaseTimeDigit -
    • >>   ProcessButton -
    - -

    ProcessButton (Thumb, 848 bytes, Stack size 48 bytes, menu.o(.text.ProcessButton)) -

    [Stack]

    • Max Depth = 248
    • Call Chain = ProcessButton ⇒ DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   HAL_GetTick -
    • >>   DecreaseTimeDigit -
    • >>   IncreaseTimeDigit -
    • >>   UpdateDisplay -
    • >>   ClockManager_SetDuty -
    • >>   ClockManager_GetDuty -
    • >>   ClockManager_GetTime -
    • >>   ClockManager_SetTime -
    • >>   ClockManager_ResetTime -
    • >>   Segment_SetBrightness -
    -
    [Called By]
    • >>   Menu_Process -
    - -

    FormatTime (Thumb, 146 bytes, Stack size 8 bytes, menu.o(.text.FormatTime)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = FormatTime -
    -
    [Called By]
    • >>   UpdateDisplay -
    - -

    IncreaseTimeDigit (Thumb, 638 bytes, Stack size 16 bytes, menu.o(.text.IncreaseTimeDigit)) -

    [Stack]

    • Max Depth = 184
    • Call Chain = IncreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   UpdateDisplay -
    -
    [Called By]
    • >>   ProcessButton -
    - -

    DecreaseTimeDigit (Thumb, 740 bytes, Stack size 32 bytes, menu.o(.text.DecreaseTimeDigit)) -

    [Stack]

    • Max Depth = 200
    • Call Chain = DecreaseTimeDigit ⇒ UpdateDisplay ⇒ ClockManager_GetTime ⇒ HAL_RTC_GetTime ⇒ RTC_DateUpdate ⇒ RTC_WeekDayNum -
    -
    [Calls]
    • >>   UpdateDisplay -
    -
    [Called By]
    • >>   ProcessButton -
    - -

    NextDigit (Thumb, 226 bytes, Stack size 4 bytes, segment.o(.text.NextDigit)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = NextDigit -
    -
    [Called By]
    • >>   Segment_Init -
    • >>   UpdateOneDigit -
    - -

    GetCharMask (Thumb, 92 bytes, Stack size 8 bytes, segment.o(.text.GetCharMask)) -

    [Stack]

    • Max Depth = 8
    • Call Chain = GetCharMask -
    -
    [Called By]
    • >>   Segment_SetString -
    - -

    UpdateOneDigit (Thumb, 192 bytes, Stack size 16 bytes, segment.o(.text.UpdateOneDigit)) -

    [Stack]

    • Max Depth = 24
    • Call Chain = UpdateOneDigit ⇒ EnableDigit -
    -
    [Calls]
    • >>   EnableDigit -
    • >>   DisableAllDigits -
    • >>   SetSegments -
    • >>   NextDigit -
    -
    [Called By]
    • >>   Segment_Process -
    - -

    SetSegments (Thumb, 170 bytes, Stack size 4 bytes, segment.o(.text.SetSegments)) -

    [Stack]

    • Max Depth = 4
    • Call Chain = SetSegments -
    -
    [Called By]
    • >>   UpdateOneDigit -
    -

    -

    -Undefined Global Symbols -


    diff --git a/MDK-ARM/lamp/lamp.lnp b/MDK-ARM/lamp/lamp.lnp deleted file mode 100644 index 6af663c..0000000 --- a/MDK-ARM/lamp/lamp.lnp +++ /dev/null @@ -1,31 +0,0 @@ ---cpu Cortex-M3 -"lamp\startup_stm32f103xb.o" -"lamp\main.o" -"lamp\gpio.o" -"lamp\rtc.o" -"lamp\tim.o" -"lamp\stm32f1xx_it.o" -"lamp\stm32f1xx_hal_msp.o" -"lamp\stm32f1xx_hal_gpio_ex.o" -"lamp\stm32f1xx_hal_rtc.o" -"lamp\stm32f1xx_hal_rtc_ex.o" -"lamp\stm32f1xx_hal.o" -"lamp\stm32f1xx_hal_rcc.o" -"lamp\stm32f1xx_hal_rcc_ex.o" -"lamp\stm32f1xx_hal_gpio.o" -"lamp\stm32f1xx_hal_dma.o" -"lamp\stm32f1xx_hal_cortex.o" -"lamp\stm32f1xx_hal_pwr.o" -"lamp\stm32f1xx_hal_flash.o" -"lamp\stm32f1xx_hal_flash_ex.o" -"lamp\stm32f1xx_hal_exti.o" -"lamp\stm32f1xx_hal_tim.o" -"lamp\stm32f1xx_hal_tim_ex.o" -"lamp\system_stm32f1xx.o" -"lamp\clock_manager.o" -"lamp\menu.o" -"lamp\segment.o" ---strict --scatter "lamp\lamp.sct" ---summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols ---info sizes --info totals --info unused --info veneers ---list "lamp.map" -o lamp\lamp.axf \ No newline at end of file diff --git a/MDK-ARM/lamp/lamp.map b/MDK-ARM/lamp/lamp.map deleted file mode 100644 index 3b843b5..0000000 --- a/MDK-ARM/lamp/lamp.map +++ /dev/null @@ -1,2687 +0,0 @@ -Component: Arm Compiler for Embedded 6.19 Tool: armlink [5e73cb00] - -============================================================================== - -Section Cross References - - startup_stm32f103xb.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory - startup_stm32f103xb.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory - startup_stm32f103xb.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory - startup_stm32f103xb.o(RESET) refers to startup_stm32f103xb.o(STACK) for __initial_sp - startup_stm32f103xb.o(RESET) refers to startup_stm32f103xb.o(.text) for Reset_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.NMI_Handler) for NMI_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.HardFault_Handler) for HardFault_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.MemManage_Handler) for MemManage_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.BusFault_Handler) for BusFault_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.UsageFault_Handler) for UsageFault_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.SVC_Handler) for SVC_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.DebugMon_Handler) for DebugMon_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.PendSV_Handler) for PendSV_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.SysTick_Handler) for SysTick_Handler - startup_stm32f103xb.o(RESET) refers to stm32f1xx_it.o(.text.TIM2_IRQHandler) for TIM2_IRQHandler - startup_stm32f103xb.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory - startup_stm32f103xb.o(.text) refers to system_stm32f1xx.o(.text.SystemInit) for SystemInit - startup_stm32f103xb.o(.text) refers to __main.o(!!!main) for __main - startup_stm32f103xb.o(.text) refers to startup_stm32f103xb.o(HEAP) for Heap_Mem - startup_stm32f103xb.o(.text) refers to startup_stm32f103xb.o(STACK) for Stack_Mem - main.o(.text.ReadButton) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) for HAL_GPIO_ReadPin - main.o(.ARM.exidx.text.ReadButton) refers to main.o(.text.ReadButton) for [Anonymous Symbol] - main.o(.text.HAL_TIM_PeriodElapsedCallback) refers to segment.o(.text.Segment_Process) for Segment_Process - main.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedCallback) refers to main.o(.text.HAL_TIM_PeriodElapsedCallback) for [Anonymous Symbol] - main.o(.text.main) refers to stm32f1xx_hal.o(.text.HAL_Init) for HAL_Init - main.o(.text.main) refers to main.o(.text.SystemClock_Config) for SystemClock_Config - main.o(.text.main) refers to gpio.o(.text.MX_GPIO_Init) for MX_GPIO_Init - main.o(.text.main) refers to rtc.o(.text.MX_RTC_Init) for MX_RTC_Init - main.o(.text.main) refers to tim.o(.text.MX_TIM2_Init) for MX_TIM2_Init - main.o(.text.main) refers to segment.o(.text.Segment_Init) for Segment_Init - main.o(.text.main) refers to clock_manager.o(.text.ClockManager_Init) for ClockManager_Init - main.o(.text.main) refers to menu.o(.text.Menu_Init) for Menu_Init - main.o(.text.main) refers to tim.o(.bss.htim2) for htim2 - main.o(.text.main) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_IT) for HAL_TIM_Base_Start_IT - main.o(.text.main) refers to menu.o(.text.Menu_Process) for Menu_Process - main.o(.ARM.exidx.text.main) refers to main.o(.text.main) for [Anonymous Symbol] - main.o(.text.SystemClock_Config) refers to rt_memclr_w.o(.text) for __aeabi_memclr4 - main.o(.text.SystemClock_Config) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) for HAL_RCC_OscConfig - main.o(.text.SystemClock_Config) refers to main.o(.text.Error_Handler) for Error_Handler - main.o(.text.SystemClock_Config) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) for HAL_RCC_ClockConfig - main.o(.text.SystemClock_Config) refers to stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig) for HAL_RCCEx_PeriphCLKConfig - main.o(.ARM.exidx.text.SystemClock_Config) refers to main.o(.text.SystemClock_Config) for [Anonymous Symbol] - main.o(.ARM.exidx.text.Error_Handler) refers to main.o(.text.Error_Handler) for [Anonymous Symbol] - gpio.o(.text.MX_GPIO_Init) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_WritePin) for HAL_GPIO_WritePin - gpio.o(.text.MX_GPIO_Init) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init) for HAL_GPIO_Init - gpio.o(.ARM.exidx.text.MX_GPIO_Init) refers to gpio.o(.text.MX_GPIO_Init) for [Anonymous Symbol] - rtc.o(.text.MX_RTC_Init) refers to rtc.o(.bss.hrtc) for hrtc - rtc.o(.text.MX_RTC_Init) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) for HAL_RTC_Init - rtc.o(.text.MX_RTC_Init) refers to main.o(.text.Error_Handler) for Error_Handler - rtc.o(.ARM.exidx.text.MX_RTC_Init) refers to rtc.o(.text.MX_RTC_Init) for [Anonymous Symbol] - rtc.o(.text.HAL_RTC_MspInit) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableBkUpAccess) for HAL_PWR_EnableBkUpAccess - rtc.o(.ARM.exidx.text.HAL_RTC_MspInit) refers to rtc.o(.text.HAL_RTC_MspInit) for [Anonymous Symbol] - rtc.o(.ARM.exidx.text.HAL_RTC_MspDeInit) refers to rtc.o(.text.HAL_RTC_MspDeInit) for [Anonymous Symbol] - tim.o(.text.MX_TIM2_Init) refers to tim.o(.bss.htim2) for htim2 - tim.o(.text.MX_TIM2_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) for HAL_TIM_Base_Init - tim.o(.text.MX_TIM2_Init) refers to main.o(.text.Error_Handler) for Error_Handler - tim.o(.text.MX_TIM2_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) for HAL_TIM_ConfigClockSource - tim.o(.text.MX_TIM2_Init) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) for HAL_TIMEx_MasterConfigSynchronization - tim.o(.ARM.exidx.text.MX_TIM2_Init) refers to tim.o(.text.MX_TIM2_Init) for [Anonymous Symbol] - tim.o(.text.HAL_TIM_Base_MspInit) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority - tim.o(.text.HAL_TIM_Base_MspInit) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) for HAL_NVIC_EnableIRQ - tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit) refers to tim.o(.text.HAL_TIM_Base_MspInit) for [Anonymous Symbol] - tim.o(.text.HAL_TIM_Base_MspDeInit) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) for HAL_NVIC_DisableIRQ - tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit) refers to tim.o(.text.HAL_TIM_Base_MspDeInit) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.NMI_Handler) refers to stm32f1xx_it.o(.text.NMI_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.HardFault_Handler) refers to stm32f1xx_it.o(.text.HardFault_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.MemManage_Handler) refers to stm32f1xx_it.o(.text.MemManage_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.BusFault_Handler) refers to stm32f1xx_it.o(.text.BusFault_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.UsageFault_Handler) refers to stm32f1xx_it.o(.text.UsageFault_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.SVC_Handler) refers to stm32f1xx_it.o(.text.SVC_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.DebugMon_Handler) refers to stm32f1xx_it.o(.text.DebugMon_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.ARM.exidx.text.PendSV_Handler) refers to stm32f1xx_it.o(.text.PendSV_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.text.SysTick_Handler) refers to stm32f1xx_hal.o(.text.HAL_IncTick) for HAL_IncTick - stm32f1xx_it.o(.ARM.exidx.text.SysTick_Handler) refers to stm32f1xx_it.o(.text.SysTick_Handler) for [Anonymous Symbol] - stm32f1xx_it.o(.text.TIM2_IRQHandler) refers to tim.o(.bss.htim2) for htim2 - stm32f1xx_it.o(.text.TIM2_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) for HAL_TIM_IRQHandler - stm32f1xx_it.o(.ARM.exidx.text.TIM2_IRQHandler) refers to stm32f1xx_it.o(.text.TIM2_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_msp.o(.ARM.exidx.text.HAL_MspInit) refers to stm32f1xx_hal_msp.o(.text.HAL_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_ConfigEventout) refers to stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_ConfigEventout) for [Anonymous Symbol] - stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_EnableEventout) refers to stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_EnableEventout) for [Anonymous Symbol] - stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_DisableEventout) refers to stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_DisableEventout) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) refers to rtc.o(.text.HAL_RTC_MspInit) for HAL_RTC_MspInit - stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) for HAL_RTC_WaitForSynchro - stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for RTC_EnterInitMode - stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) refers to stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) for HAL_RCCEx_GetPeriphCLKFreq - stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for RTC_ExitInitMode - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_Init) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_MspInit) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_WaitForSynchro) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_EnterInitMode) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ExitInitMode) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for RTC_EnterInitMode - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for RTC_ExitInitMode - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) for HAL_RTC_WaitForSynchro - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit) refers to rtc.o(.text.HAL_RTC_MspDeInit) for HAL_RTC_MspDeInit - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_DeInit) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_MspDeInit) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) for RTC_Bcd2ToByte - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) for RTC_WriteTimeCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) for RTC_ReadAlarmCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for RTC_WriteAlarmCounter - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetTime) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_Bcd2ToByte) refers to stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for RTC_EnterInitMode - stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for RTC_ExitInitMode - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WriteTimeCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ReadAlarmCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for RTC_EnterInitMode - stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for RTC_ExitInitMode - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WriteAlarmCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter) for RTC_ReadTimeCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) for RTC_ReadAlarmCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) for RTC_WriteTimeCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for RTC_WriteAlarmCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) for RTC_DateUpdate - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) for RTC_ByteToBcd2 - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetTime) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ReadTimeCounter) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) refers to stm32f1xx_hal_rtc.o(.text.RTC_IsLeapYear) for RTC_IsLeapYear - stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) refers to stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum) for RTC_WeekDayNum - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_DateUpdate) refers to stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ByteToBcd2) refers to stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) for RTC_Bcd2ToByte - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum) for RTC_WeekDayNum - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter) for RTC_ReadTimeCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) for RTC_WriteTimeCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) for RTC_ReadAlarmCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for RTC_WriteAlarmCounter - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetDate) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WeekDayNum) refers to stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetDate) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for HAL_RTC_GetTime - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetDate) refers to stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) for RTC_ByteToBcd2 - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetDate) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetDate) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for HAL_RTC_GetTime - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) for RTC_Bcd2ToByte - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for RTC_WriteAlarmCounter - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetAlarm) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm_IT) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for HAL_RTC_GetTime - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm_IT) refers to stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) for RTC_Bcd2ToByte - stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm_IT) refers to stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) for RTC_WriteAlarmCounter - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetAlarm_IT) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm_IT) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) for RTC_ReadAlarmCounter - stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) for RTC_ByteToBcd2 - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetAlarm) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetAlarm) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeactivateAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) for RTC_EnterInitMode - stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeactivateAlarm) refers to stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) for RTC_ExitInitMode - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_DeactivateAlarm) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeactivateAlarm) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmIRQHandler) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmAEventCallback) for HAL_RTC_AlarmAEventCallback - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_AlarmIRQHandler) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmIRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_AlarmAEventCallback) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmAEventCallback) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.text.HAL_RTC_PollForAlarmAEvent) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_PollForAlarmAEvent) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_PollForAlarmAEvent) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetState) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetState) for [Anonymous Symbol] - stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_IsLeapYear) refers to stm32f1xx_hal_rtc.o(.text.RTC_IsLeapYear) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetTamper) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetTamper) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetTamper_IT) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetTamper_IT) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_DeactivateTamper) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_DeactivateTamper) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_TamperIRQHandler) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_Tamper1EventCallback) for HAL_RTCEx_Tamper1EventCallback - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_TamperIRQHandler) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_TamperIRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_Tamper1EventCallback) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_Tamper1EventCallback) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_PollForTamper1Event) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_PollForTamper1Event) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_PollForTamper1Event) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetSecond_IT) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetSecond_IT) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_DeactivateSecond) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_DeactivateSecond) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCIRQHandler) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventErrorCallback) for HAL_RTCEx_RTCEventErrorCallback - stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCIRQHandler) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventCallback) for HAL_RTCEx_RTCEventCallback - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCIRQHandler) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCIRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCEventErrorCallback) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventErrorCallback) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCEventCallback) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventCallback) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_BKUPWrite) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPWrite) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_BKUPRead) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPRead) for [Anonymous Symbol] - stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetSmoothCalib) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetSmoothCalib) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_Init) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) for HAL_NVIC_SetPriorityGrouping - stm32f1xx_hal.o(.text.HAL_Init) refers to stm32f1xx_hal.o(.text.HAL_InitTick) for HAL_InitTick - stm32f1xx_hal.o(.text.HAL_Init) refers to stm32f1xx_hal_msp.o(.text.HAL_MspInit) for HAL_MspInit - stm32f1xx_hal.o(.ARM.exidx.text.HAL_Init) refers to stm32f1xx_hal.o(.text.HAL_Init) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_InitTick) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - stm32f1xx_hal.o(.text.HAL_InitTick) refers to stm32f1xx_hal.o(.data.uwTickFreq) for uwTickFreq - stm32f1xx_hal.o(.text.HAL_InitTick) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config) for HAL_SYSTICK_Config - stm32f1xx_hal.o(.text.HAL_InitTick) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) for HAL_NVIC_SetPriority - stm32f1xx_hal.o(.text.HAL_InitTick) refers to stm32f1xx_hal.o(.data.uwTickPrio) for uwTickPrio - stm32f1xx_hal.o(.ARM.exidx.text.HAL_InitTick) refers to stm32f1xx_hal.o(.text.HAL_InitTick) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_MspInit) refers to stm32f1xx_hal.o(.text.HAL_MspInit) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_DeInit) refers to stm32f1xx_hal.o(.text.HAL_MspDeInit) for HAL_MspDeInit - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DeInit) refers to stm32f1xx_hal.o(.text.HAL_DeInit) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_MspDeInit) refers to stm32f1xx_hal.o(.text.HAL_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_IncTick) refers to stm32f1xx_hal.o(.data.uwTickFreq) for uwTickFreq - stm32f1xx_hal.o(.text.HAL_IncTick) refers to stm32f1xx_hal.o(.bss.uwTick) for uwTick - stm32f1xx_hal.o(.ARM.exidx.text.HAL_IncTick) refers to stm32f1xx_hal.o(.text.HAL_IncTick) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_GetTick) refers to stm32f1xx_hal.o(.bss.uwTick) for uwTick - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTick) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_GetTickPrio) refers to stm32f1xx_hal.o(.data.uwTickPrio) for uwTickPrio - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTickPrio) refers to stm32f1xx_hal.o(.text.HAL_GetTickPrio) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_SetTickFreq) refers to stm32f1xx_hal.o(.data.uwTickFreq) for uwTickFreq - stm32f1xx_hal.o(.text.HAL_SetTickFreq) refers to stm32f1xx_hal.o(.data.uwTickPrio) for uwTickPrio - stm32f1xx_hal.o(.text.HAL_SetTickFreq) refers to stm32f1xx_hal.o(.text.HAL_InitTick) for HAL_InitTick - stm32f1xx_hal.o(.ARM.exidx.text.HAL_SetTickFreq) refers to stm32f1xx_hal.o(.text.HAL_SetTickFreq) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_GetTickFreq) refers to stm32f1xx_hal.o(.data.uwTickFreq) for uwTickFreq - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTickFreq) refers to stm32f1xx_hal.o(.text.HAL_GetTickFreq) for [Anonymous Symbol] - stm32f1xx_hal.o(.text.HAL_Delay) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal.o(.text.HAL_Delay) refers to stm32f1xx_hal.o(.data.uwTickFreq) for uwTickFreq - stm32f1xx_hal.o(.ARM.exidx.text.HAL_Delay) refers to stm32f1xx_hal.o(.text.HAL_Delay) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_SuspendTick) refers to stm32f1xx_hal.o(.text.HAL_SuspendTick) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_ResumeTick) refers to stm32f1xx_hal.o(.text.HAL_ResumeTick) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetHalVersion) refers to stm32f1xx_hal.o(.text.HAL_GetHalVersion) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetREVID) refers to stm32f1xx_hal.o(.text.HAL_GetREVID) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetDEVID) refers to stm32f1xx_hal.o(.text.HAL_GetDEVID) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw0) refers to stm32f1xx_hal.o(.text.HAL_GetUIDw0) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw1) refers to stm32f1xx_hal.o(.text.HAL_GetUIDw1) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw2) refers to stm32f1xx_hal.o(.text.HAL_GetUIDw2) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGSleepMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGSleepMode) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGSleepMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGSleepMode) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGStopMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGStopMode) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGStopMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGStopMode) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGStandbyMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGStandbyMode) for [Anonymous Symbol] - stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGStandbyMode) refers to stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGStandbyMode) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit) refers to stm32f1xx_hal.o(.data.uwTickPrio) for uwTickPrio - stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit) refers to stm32f1xx_hal.o(.text.HAL_InitTick) for HAL_InitTick - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_DeInit) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) refers to stm32f1xx_hal_rcc.o(.text.RCC_Delay) for RCC_Delay - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_OscConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.RCC_Delay) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - stm32f1xx_hal_rcc.o(.ARM.exidx.text.RCC_Delay) refers to stm32f1xx_hal_rcc.o(.text.RCC_Delay) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) for HAL_RCC_GetSysClockFreq - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to system_stm32f1xx.o(.rodata.AHBPrescTable) for AHBPrescTable - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to stm32f1xx_hal.o(.data.uwTickPrio) for uwTickPrio - stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) refers to stm32f1xx_hal.o(.text.HAL_InitTick) for HAL_InitTick - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_ClockConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) refers to stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPLLMULFactorTable) for HAL_RCC_GetSysClockFreq.aPLLMULFactorTable - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) refers to stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPredivFactorTable) for HAL_RCC_GetSysClockFreq.aPredivFactorTable - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetSysClockFreq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_MCOConfig) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init) for HAL_GPIO_Init - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_MCOConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_MCOConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_EnableCSS) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_EnableCSS) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_DisableCSS) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_DisableCSS) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetHCLKFreq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) for HAL_RCC_GetHCLKFreq - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) refers to system_stm32f1xx.o(.rodata.APBPrescTable) for APBPrescTable - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetPCLK1Freq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) for HAL_RCC_GetHCLKFreq - stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) refers to system_stm32f1xx.o(.rodata.APBPrescTable) for APBPrescTable - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetPCLK2Freq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetOscConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetOscConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetClockConfig) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetClockConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.text.HAL_RCC_NMI_IRQHandler) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_CSSCallback) for HAL_RCC_CSSCallback - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_NMI_IRQHandler) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_NMI_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_CSSCallback) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_CSSCallback) for [Anonymous Symbol] - stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_PeriphCLKConfig) refers to stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_GetPeriphCLKConfig) refers to stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKConfig) for [Anonymous Symbol] - stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable) for HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable - stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable) for HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable - stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) for HAL_RCC_GetPCLK2Freq - stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_GetPeriphCLKFreq) refers to stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_Init) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_DeInit) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_ReadPin) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_WritePin) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_WritePin) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_TogglePin) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_TogglePin) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_LockPin) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_LockPin) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_Callback) for HAL_GPIO_EXTI_Callback - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_EXTI_IRQHandler) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_EXTI_Callback) refers to stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_Callback) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Init) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Init) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_DeInit) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.text.HAL_DMA_Start) refers to stm32f1xx_hal_dma.o(.text.DMA_SetConfig) for DMA_SetConfig - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Start) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.DMA_SetConfig) refers to stm32f1xx_hal_dma.o(.text.DMA_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) refers to stm32f1xx_hal_dma.o(.text.DMA_SetConfig) for DMA_SetConfig - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Start_IT) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Abort) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Abort_IT) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.text.HAL_DMA_PollForTransfer) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_PollForTransfer) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_PollForTransfer) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_IRQHandler) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_RegisterCallback) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_RegisterCallback) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_UnRegisterCallback) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_UnRegisterCallback) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_GetState) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_GetState) for [Anonymous Symbol] - stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_GetError) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_GetError) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) for __NVIC_SetPriorityGrouping - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) for __NVIC_GetPriorityGrouping - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) refers to stm32f1xx_hal_cortex.o(.text.NVIC_EncodePriority) for NVIC_EncodePriority - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPriority) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPriority) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.NVIC_EncodePriority) refers to stm32f1xx_hal_cortex.o(.text.NVIC_EncodePriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_EnableIRQ) for __NVIC_EnableIRQ - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_EnableIRQ) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_EnableIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_EnableIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_DisableIRQ) for __NVIC_DisableIRQ - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_DisableIRQ) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_DisableIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_DisableIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SystemReset) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SystemReset) for __NVIC_SystemReset - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SystemReset) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SystemReset) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SystemReset) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SystemReset) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config) refers to stm32f1xx_hal_cortex.o(.text.SysTick_Config) for SysTick_Config - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_Config) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.SysTick_Config) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority) for __NVIC_SetPriority - stm32f1xx_hal_cortex.o(.ARM.exidx.text.SysTick_Config) refers to stm32f1xx_hal_cortex.o(.text.SysTick_Config) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) for __NVIC_GetPriorityGrouping - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPriorityGrouping) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriorityGrouping) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriority) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriority) for __NVIC_GetPriority - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriority) refers to stm32f1xx_hal_cortex.o(.text.NVIC_DecodePriority) for NVIC_DecodePriority - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPriority) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.NVIC_DecodePriority) refers to stm32f1xx_hal_cortex.o(.text.NVIC_DecodePriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPriority) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriority) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPendingIRQ) for __NVIC_SetPendingIRQ - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_SetPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPendingIRQ) for __NVIC_GetPendingIRQ - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_ClearPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_ClearPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_ClearPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_ClearPendingIRQ) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetActive) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetActive) for __NVIC_GetActive - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetActive) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetActive) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetActive) refers to stm32f1xx_hal_cortex.o(.text.__NVIC_GetActive) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_CLKSourceConfig) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_CLKSourceConfig) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_IRQHandler) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Callback) for HAL_SYSTICK_Callback - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_IRQHandler) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_Callback) refers to stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Callback) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DeInit) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableBkUpAccess) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableBkUpAccess) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableBkUpAccess) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableBkUpAccess) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_ConfigPVD) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_ConfigPVD) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnablePVD) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnablePVD) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisablePVD) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisablePVD) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableWakeUpPin) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableWakeUpPin) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableWakeUpPin) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableWakeUpPin) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSLEEPMode) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSLEEPMode) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSTOPMode) refers to stm32f1xx_hal_pwr.o(.text.PWR_OverloadWfe) for PWR_OverloadWfe - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSTOPMode) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSTOPMode) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.PWR_OverloadWfe) refers to stm32f1xx_hal_pwr.o(.text.PWR_OverloadWfe) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSTANDBYMode) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSTANDBYMode) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableSleepOnExit) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableSleepOnExit) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableSleepOnExit) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableSleepOnExit) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableSEVOnPend) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableSEVOnPend) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableSEVOnPend) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableSEVOnPend) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVD_IRQHandler) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVDCallback) for HAL_PWR_PVDCallback - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_PVD_IRQHandler) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVD_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_PVDCallback) refers to stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVDCallback) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program) refers to stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord) for FLASH_Program_HalfWord - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Program) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) refers to stm32f1xx_hal_flash.o(.text.FLASH_SetErrorCode) for FLASH_SetErrorCode - stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_WaitForLastOperation) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_Program_HalfWord) refers to stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program_IT) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program_IT) refers to stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord) for FLASH_Program_HalfWord - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Program_IT) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program_IT) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.text.FLASH_SetErrorCode) for FLASH_SetErrorCode - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_OperationErrorCallback) for HAL_FLASH_OperationErrorCallback - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_EndOfOperationCallback) for HAL_FLASH_EndOfOperationCallback - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase) for FLASH_PageErase - stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord) for FLASH_Program_HalfWord - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_IRQHandler) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.FLASH_SetErrorCode) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_SetErrorCode) refers to stm32f1xx_hal_flash.o(.text.FLASH_SetErrorCode) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OperationErrorCallback) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_OperationErrorCallback) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_EndOfOperationCallback) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_EndOfOperationCallback) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Unlock) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_Unlock) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Lock) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_Lock) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Unlock) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Unlock) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Lock) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Lock) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Launch) refers to stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SystemReset) for HAL_NVIC_SystemReset - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Launch) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Launch) for [Anonymous Symbol] - stm32f1xx_hal_flash.o(.text.HAL_FLASH_GetError) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_GetError) refers to stm32f1xx_hal_flash.o(.text.HAL_FLASH_GetError) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_MassErase) for FLASH_MassErase - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase) for FLASH_PageErase - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_Erase) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_MassErase) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_MassErase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_MassErase) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_PageErase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase_IT) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase_IT) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_MassErase) for FLASH_MassErase - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase_IT) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase) for FLASH_PageErase - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_Erase_IT) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase_IT) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetRDP) for FLASH_OB_GetRDP - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig) for FLASH_OB_RDP_LevelConfig - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBErase) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetRDP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetRDP) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_RDP_LevelConfig) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) for FLASH_OB_EnableWRP - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) for FLASH_OB_DisableWRP - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig) for FLASH_OB_RDP_LevelConfig - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_UserConfig) for FLASH_OB_UserConfig - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_ProgramData) for FLASH_OB_ProgramData - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBProgram) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetWRP) for FLASH_OB_GetWRP - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) for HAL_FLASHEx_OBErase - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_EnableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetWRP) for FLASH_OB_GetWRP - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase) for HAL_FLASHEx_OBErase - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_DisableWRP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_UserConfig) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_UserConfig) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_UserConfig) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_UserConfig) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_ProgramData) refers to stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation - stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_ProgramData) refers to stm32f1xx_hal_flash.o(.bss.pFlash) for pFlash - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_ProgramData) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_ProgramData) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetConfig) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetWRP) for FLASH_OB_GetWRP - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetConfig) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetRDP) for FLASH_OB_GetRDP - stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetConfig) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetUser) for FLASH_OB_GetUser - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBGetConfig) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetConfig) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetWRP) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetWRP) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetUser) refers to stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetUser) for [Anonymous Symbol] - stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBGetUserData) refers to stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetUserData) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_SetConfigLine) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_SetConfigLine) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetConfigLine) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetConfigLine) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_ClearConfigLine) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_ClearConfigLine) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_RegisterCallback) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_RegisterCallback) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetHandle) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetHandle) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_IRQHandler) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetPending) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetPending) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_ClearPending) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_ClearPending) for [Anonymous Symbol] - stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GenerateSWI) refers to stm32f1xx_hal_exti.o(.text.HAL_EXTI_GenerateSWI) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) refers to tim.o(.text.HAL_TIM_Base_MspInit) for HAL_TIM_Base_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_Base_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_DeInit) refers to tim.o(.text.HAL_TIM_Base_MspDeInit) for HAL_TIM_Base_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt) refers to main.o(.text.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAPeriodElapsedCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedHalfCpltCallback) for HAL_TIM_PeriodElapsedHalfCpltCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAPeriodElapsedHalfCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMAError) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ErrorCallback) for HAL_TIM_ErrorCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAError) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspInit) for HAL_TIM_OC_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspDeInit) for HAL_TIM_OC_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_CCxChannelCmd) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMADelayPulseCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback) for HAL_TIM_PWM_PulseFinishedHalfCpltCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMADelayPulseHalfCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) for HAL_TIM_PWM_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspDeInit) for HAL_TIM_PWM_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspInit) for HAL_TIM_IC_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspDeInit) for HAL_TIM_IC_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) for TIM_DMACaptureCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMACaptureCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureHalfCpltCallback) for HAL_TIM_IC_CaptureHalfCpltCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMACaptureHalfCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspInit) for HAL_TIM_OnePulse_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspDeInit) for HAL_TIM_OnePulse_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspInit) for HAL_TIM_Encoder_MspInit - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Init) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_MspInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspDeInit) for HAL_TIM_Encoder_MspDeInit - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_DeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_MspDeInit) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) for TIM_DMACaptureCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) for HAL_TIM_IC_CaptureCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) for HAL_TIM_OC_DelayElapsedCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to main.o(.text.HAL_TIM_PeriodElapsedCallback) for HAL_TIM_PeriodElapsedCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) for HAL_TIMEx_BreakCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback - stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) for HAL_TIMEx_CommutCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IRQHandler) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_CaptureCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_DelayElapsedCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_PulseFinishedCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_TriggerCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC1_SetConfig) for TIM_OC1_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig) for TIM_OC2_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC3_SetConfig) for TIM_OC3_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC4_SetConfig) for TIM_OC4_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC1_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_OC1_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC2_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC3_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_OC3_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC4_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_OC4_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_SetConfig) for TIM_TI1_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_SetConfig) for TIM_TI2_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI3_SetConfig) for TIM_TI3_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI4_SetConfig) for TIM_TI4_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI1_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI2_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI3_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI3_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI4_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI4_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC1_SetConfig) for TIM_OC1_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig) for TIM_OC2_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC3_SetConfig) for TIM_OC3_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC4_SetConfig) for TIM_OC4_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC1_SetConfig) for TIM_OC1_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig) for TIM_OC2_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_SetConfig) for TIM_TI1_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_SetConfig) for TIM_TI2_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_ConfigChannel) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) for HAL_TIM_DMABurst_MultiWriteStart - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_WriteStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStart) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt) for TIM_DMADelayPulseCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerCplt) for TIM_DMATriggerCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_MultiWriteStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMATriggerCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) for HAL_TIM_TriggerCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMATriggerCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_DMATriggerHalfCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerHalfCpltCallback) for HAL_TIM_TriggerHalfCpltCallback - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMATriggerHalfCplt) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerHalfCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStop) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_WriteStop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) for HAL_TIM_DMABurst_MultiReadStart - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_ReadStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStart) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt) for TIM_DMAPeriodElapsedCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt) for TIM_DMAPeriodElapsedHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) for TIM_DMACaptureCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerCplt) for TIM_DMATriggerCplt - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.TIM_DMATriggerHalfCplt) for TIM_DMATriggerHalfCplt - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_MultiReadStart) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStop) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_ReadStop) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStop) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GenerateEvent) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_GenerateEvent) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigOCrefClear) refers to stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) for TIM_ETR_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigOCrefClear) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigOCrefClear) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_ETR_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) refers to stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) for TIM_ETR_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage - stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) refers to stm32f1xx_hal_tim.o(.text.TIM_ITRx_SetConfig) for TIM_ITRx_SetConfig - stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigClockSource) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI1_ConfigInputStage) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_ITRx_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_ITRx_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI2_ConfigInputStage) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigTI1Input) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigTI1Input) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro) refers to stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_SlaveConfigSynchro) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) for TIM_ETR_SetConfig - stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) for TIM_TI1_ConfigInputStage - stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) for TIM_TI2_ConfigInputStage - stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_SlaveTimer_SetConfig) refers to stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig) for TIM_SlaveTimer_SetConfig - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_SlaveConfigSynchro_IT) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ReadCapturedValue) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ReadCapturedValue) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedHalfCpltCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedHalfCpltCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_CaptureHalfCpltCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureHalfCpltCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_TriggerHalfCpltCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerHalfCpltCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ErrorCallback) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ErrorCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_GetState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GetActiveChannel) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_GetActiveChannel) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GetChannelState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_GetChannelState) for [Anonymous Symbol] - stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurstState) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurstState) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspInit) for HAL_TIMEx_HallSensor_MspInit - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) for TIM_Base_SetConfig - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_TI1_SetConfig) for TIM_TI1_SetConfig - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init) refers to stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig) for TIM_OC2_SetConfig - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Init) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_MspInit) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspInit) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_DeInit) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspDeInit) for HAL_TIMEx_HallSensor_MspDeInit - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_DeInit) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_DeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_MspDeInit) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspDeInit) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt) for TIM_DMACaptureCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt) for TIM_DMACaptureHalfCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_CCxNChannelCmd) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMADelayPulseNCplt) for TIM_DMADelayPulseNCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMAErrorCCxN) for TIM_DMAErrorCCxN - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.TIM_DMADelayPulseNCplt) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) for HAL_TIM_PWM_PulseFinishedCallback - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_DMADelayPulseNCplt) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMADelayPulseNCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.TIM_DMAErrorCCxN) refers to stm32f1xx_hal_tim.o(.text.HAL_TIM_ErrorCallback) for HAL_TIM_ErrorCallback - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_DMAErrorCCxN) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMAErrorCCxN) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMADelayPulseNCplt) for TIM_DMADelayPulseNCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt) for TIM_DMADelayPulseHalfCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_DMAErrorCCxN) for TIM_DMAErrorCCxN - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT) for HAL_DMA_Start_IT - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_DMA) refers to stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT) for HAL_DMA_Abort_IT - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Start) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Stop) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Start_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd) for TIM_CCxNChannelCmd - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop_IT) refers to stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd) for TIM_CCxChannelCmd - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Stop_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent_IT) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_IT) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt) for TIMEx_DMACommutationCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt) for TIMEx_DMACommutationHalfCplt - stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32f1xx_hal_tim.o(.text.TIM_DMAError) for TIM_DMAError - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent_DMA) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_DMA) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) for HAL_TIMEx_CommutCallback - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIMEx_DMACommutationCplt) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutHalfCpltCallback) for HAL_TIMEx_CommutHalfCpltCallback - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIMEx_DMACommutationHalfCplt) refers to stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_MasterConfigSynchronization) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigBreakDeadTime) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_RemapConfig) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_RemapConfig) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_CommutCallback) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_CommutHalfCpltCallback) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutHalfCpltCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_BreakCallback) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_GetState) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_GetState) for [Anonymous Symbol] - stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_GetChannelNState) refers to stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_GetChannelNState) for [Anonymous Symbol] - system_stm32f1xx.o(.ARM.exidx.text.SystemInit) refers to system_stm32f1xx.o(.text.SystemInit) for [Anonymous Symbol] - system_stm32f1xx.o(.text.SystemCoreClockUpdate) refers to system_stm32f1xx.o(.data.SystemCoreClock) for SystemCoreClock - system_stm32f1xx.o(.text.SystemCoreClockUpdate) refers to system_stm32f1xx.o(.rodata.AHBPrescTable) for AHBPrescTable - system_stm32f1xx.o(.ARM.exidx.text.SystemCoreClockUpdate) refers to system_stm32f1xx.o(.text.SystemCoreClockUpdate) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_Init) refers to clock_manager.o(.text.LoadDuty) for LoadDuty - clock_manager.o(.text.ClockManager_Init) refers to clock_manager.o(.data.dutyValue) for dutyValue - clock_manager.o(.text.ClockManager_Init) refers to segment.o(.text.Segment_SetBrightness) for Segment_SetBrightness - clock_manager.o(.text.ClockManager_Init) refers to rtc.o(.bss.hrtc) for hrtc - clock_manager.o(.text.ClockManager_Init) refers to clock_manager.o(.bss.rtc_time) for rtc_time - clock_manager.o(.text.ClockManager_Init) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for HAL_RTC_GetTime - clock_manager.o(.text.ClockManager_Init) refers to clock_manager.o(.text.ClockManager_ResetTime) for ClockManager_ResetTime - clock_manager.o(.ARM.exidx.text.ClockManager_Init) refers to clock_manager.o(.text.ClockManager_Init) for [Anonymous Symbol] - clock_manager.o(.text.LoadDuty) refers to rtc.o(.bss.hrtc) for hrtc - clock_manager.o(.text.LoadDuty) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPRead) for HAL_RTCEx_BKUPRead - clock_manager.o(.text.LoadDuty) refers to clock_manager.o(.data.dutyValue) for dutyValue - clock_manager.o(.ARM.exidx.text.LoadDuty) refers to clock_manager.o(.text.LoadDuty) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_ResetTime) refers to clock_manager.o(.text.ClockManager_SetTime) for ClockManager_SetTime - clock_manager.o(.ARM.exidx.text.ClockManager_ResetTime) refers to clock_manager.o(.text.ClockManager_ResetTime) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_GetTime) refers to rtc.o(.bss.hrtc) for hrtc - clock_manager.o(.text.ClockManager_GetTime) refers to clock_manager.o(.bss.rtc_time) for rtc_time - clock_manager.o(.text.ClockManager_GetTime) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) for HAL_RTC_GetTime - clock_manager.o(.text.ClockManager_GetTime) refers to clock_manager.o(.bss.currentTime) for currentTime - clock_manager.o(.ARM.exidx.text.ClockManager_GetTime) refers to clock_manager.o(.text.ClockManager_GetTime) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_SetTime) refers to rtc.o(.bss.hrtc) for hrtc - clock_manager.o(.text.ClockManager_SetTime) refers to stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) for HAL_RTC_SetTime - clock_manager.o(.ARM.exidx.text.ClockManager_SetTime) refers to clock_manager.o(.text.ClockManager_SetTime) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_GetDuty) refers to clock_manager.o(.data.dutyValue) for dutyValue - clock_manager.o(.ARM.exidx.text.ClockManager_GetDuty) refers to clock_manager.o(.text.ClockManager_GetDuty) for [Anonymous Symbol] - clock_manager.o(.text.ClockManager_SetDuty) refers to clock_manager.o(.data.dutyValue) for dutyValue - clock_manager.o(.text.ClockManager_SetDuty) refers to segment.o(.text.Segment_SetBrightness) for Segment_SetBrightness - clock_manager.o(.text.ClockManager_SetDuty) refers to clock_manager.o(.text.SaveDuty) for SaveDuty - clock_manager.o(.ARM.exidx.text.ClockManager_SetDuty) refers to clock_manager.o(.text.ClockManager_SetDuty) for [Anonymous Symbol] - clock_manager.o(.text.SaveDuty) refers to clock_manager.o(.data.dutyValue) for dutyValue - clock_manager.o(.text.SaveDuty) refers to rtc.o(.bss.hrtc) for hrtc - clock_manager.o(.text.SaveDuty) refers to stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPWrite) for HAL_RTCEx_BKUPWrite - clock_manager.o(.ARM.exidx.text.SaveDuty) refers to clock_manager.o(.text.SaveDuty) for [Anonymous Symbol] - menu.o(.text.Menu_Init) refers to menu.o(.bss.menu) for menu - menu.o(.ARM.exidx.text.Menu_Init) refers to menu.o(.text.Menu_Init) for [Anonymous Symbol] - menu.o(.text.Menu_Process) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - menu.o(.text.Menu_Process) refers to menu.o(.bss.menu) for menu - menu.o(.text.Menu_Process) refers to menu.o(.text.UpdateDisplay) for UpdateDisplay - menu.o(.text.Menu_Process) refers to main.o(.text.ReadButton) for ReadButton - menu.o(.text.Menu_Process) refers to menu.o(.text.ProcessButton) for ProcessButton - menu.o(.text.Menu_Process) refers to menu.o(.bss.Menu_Process.lastClockUpdate) for Menu_Process.lastClockUpdate - menu.o(.ARM.exidx.text.Menu_Process) refers to menu.o(.text.Menu_Process) for [Anonymous Symbol] - menu.o(.text.UpdateDisplay) refers to menu.o(.bss.menu) for menu - menu.o(.text.UpdateDisplay) refers to clock_manager.o(.text.ClockManager_GetTime) for ClockManager_GetTime - menu.o(.text.UpdateDisplay) refers to menu.o(.text.FormatTime) for FormatTime - menu.o(.text.UpdateDisplay) refers to segment.o(.text.Segment_SetString) for Segment_SetString - menu.o(.text.UpdateDisplay) refers to menu.o(.rodata.str1.1) for .L.str - menu.o(.ARM.exidx.text.UpdateDisplay) refers to menu.o(.text.UpdateDisplay) for [Anonymous Symbol] - menu.o(.text.ProcessButton) refers to menu.o(.bss.menu) for menu - menu.o(.text.ProcessButton) refers to menu.o(.text.UpdateDisplay) for UpdateDisplay - menu.o(.text.ProcessButton) refers to clock_manager.o(.text.ClockManager_GetTime) for ClockManager_GetTime - menu.o(.text.ProcessButton) refers to stm32f1xx_hal.o(.text.HAL_GetTick) for HAL_GetTick - menu.o(.text.ProcessButton) refers to clock_manager.o(.text.ClockManager_GetDuty) for ClockManager_GetDuty - menu.o(.text.ProcessButton) refers to menu.o(.text.IncreaseTimeDigit) for IncreaseTimeDigit - menu.o(.text.ProcessButton) refers to menu.o(.text.DecreaseTimeDigit) for DecreaseTimeDigit - menu.o(.text.ProcessButton) refers to clock_manager.o(.text.ClockManager_SetTime) for ClockManager_SetTime - menu.o(.text.ProcessButton) refers to segment.o(.text.Segment_SetBrightness) for Segment_SetBrightness - menu.o(.text.ProcessButton) refers to clock_manager.o(.text.ClockManager_SetDuty) for ClockManager_SetDuty - menu.o(.text.ProcessButton) refers to clock_manager.o(.text.ClockManager_ResetTime) for ClockManager_ResetTime - menu.o(.ARM.exidx.text.ProcessButton) refers to menu.o(.text.ProcessButton) for [Anonymous Symbol] - menu.o(.text.Menu_GetState) refers to menu.o(.bss.menu) for menu - menu.o(.ARM.exidx.text.Menu_GetState) refers to menu.o(.text.Menu_GetState) for [Anonymous Symbol] - menu.o(.ARM.exidx.text.FormatTime) refers to menu.o(.text.FormatTime) for [Anonymous Symbol] - menu.o(.text.IncreaseTimeDigit) refers to menu.o(.bss.menu) for menu - menu.o(.text.IncreaseTimeDigit) refers to menu.o(.text.UpdateDisplay) for UpdateDisplay - menu.o(.ARM.exidx.text.IncreaseTimeDigit) refers to menu.o(.text.IncreaseTimeDigit) for [Anonymous Symbol] - menu.o(.text.DecreaseTimeDigit) refers to menu.o(.bss.menu) for menu - menu.o(.text.DecreaseTimeDigit) refers to menu.o(.text.UpdateDisplay) for UpdateDisplay - menu.o(.ARM.exidx.text.DecreaseTimeDigit) refers to menu.o(.text.DecreaseTimeDigit) for [Anonymous Symbol] - segment.o(.ARM.exidx.text.DisableAllDigits) refers to segment.o(.text.DisableAllDigits) for [Anonymous Symbol] - segment.o(.ARM.exidx.text.EnableDigit) refers to segment.o(.text.EnableDigit) for [Anonymous Symbol] - segment.o(.text.Segment_Init) refers to segment.o(.bss.currentPos) for currentPos - segment.o(.text.Segment_Init) refers to segment.o(.bss.pwmCounter) for pwmCounter - segment.o(.text.Segment_Init) refers to segment.o(.bss.currentDigitTime) for currentDigitTime - segment.o(.text.Segment_Init) refers to segment.o(.bss.currentPwmThreshold) for currentPwmThreshold - segment.o(.text.Segment_Init) refers to segment.o(.bss.displayBuffer) for displayBuffer - segment.o(.text.Segment_Init) refers to segment.o(.text.NextDigit) for NextDigit - segment.o(.ARM.exidx.text.Segment_Init) refers to segment.o(.text.Segment_Init) for [Anonymous Symbol] - segment.o(.text.NextDigit) refers to segment.o(.bss.currentPos) for currentPos - segment.o(.text.NextDigit) refers to segment.o(.data.REFRESH_RATE) for REFRESH_RATE - segment.o(.text.NextDigit) refers to segment.o(.bss.currentDigitTime) for currentDigitTime - segment.o(.text.NextDigit) refers to segment.o(.data.GLOBAL_BRIGHTNESS) for GLOBAL_BRIGHTNESS - segment.o(.text.NextDigit) refers to segment.o(.bss.currentPwmThreshold) for currentPwmThreshold - segment.o(.text.NextDigit) refers to segment.o(.bss.pwmCounter) for pwmCounter - segment.o(.ARM.exidx.text.NextDigit) refers to segment.o(.text.NextDigit) for [Anonymous Symbol] - segment.o(.text.Segment_SetChar) refers to segment.o(.text.GetCharMask) for GetCharMask - segment.o(.text.Segment_SetChar) refers to segment.o(.bss.displayBuffer) for displayBuffer - segment.o(.ARM.exidx.text.Segment_SetChar) refers to segment.o(.text.Segment_SetChar) for [Anonymous Symbol] - segment.o(.text.GetCharMask) refers to segment.o(.rodata.charTable) for charTable - segment.o(.ARM.exidx.text.GetCharMask) refers to segment.o(.text.GetCharMask) for [Anonymous Symbol] - segment.o(.text.Segment_SetRaw) refers to segment.o(.bss.displayBuffer) for displayBuffer - segment.o(.ARM.exidx.text.Segment_SetRaw) refers to segment.o(.text.Segment_SetRaw) for [Anonymous Symbol] - segment.o(.text.Segment_SetString) refers to segment.o(.bss.displayBuffer) for displayBuffer - segment.o(.text.Segment_SetString) refers to segment.o(.text.GetCharMask) for GetCharMask - segment.o(.ARM.exidx.text.Segment_SetString) refers to segment.o(.text.Segment_SetString) for [Anonymous Symbol] - segment.o(.text.Segment_SetBrightness) refers to segment.o(.data.GLOBAL_BRIGHTNESS) for GLOBAL_BRIGHTNESS - segment.o(.ARM.exidx.text.Segment_SetBrightness) refers to segment.o(.text.Segment_SetBrightness) for [Anonymous Symbol] - segment.o(.text.Segment_Process) refers to segment.o(.text.UpdateOneDigit) for UpdateOneDigit - segment.o(.ARM.exidx.text.Segment_Process) refers to segment.o(.text.Segment_Process) for [Anonymous Symbol] - segment.o(.text.UpdateOneDigit) refers to segment.o(.bss.pwmCounter) for pwmCounter - segment.o(.text.UpdateOneDigit) refers to segment.o(.text.DisableAllDigits) for DisableAllDigits - segment.o(.text.UpdateOneDigit) refers to segment.o(.bss.currentPos) for currentPos - segment.o(.text.UpdateOneDigit) refers to segment.o(.bss.displayBuffer) for displayBuffer - segment.o(.text.UpdateOneDigit) refers to segment.o(.text.SetSegments) for SetSegments - segment.o(.text.UpdateOneDigit) refers to segment.o(.text.EnableDigit) for EnableDigit - segment.o(.text.UpdateOneDigit) refers to segment.o(.bss.currentPwmThreshold) for currentPwmThreshold - segment.o(.text.UpdateOneDigit) refers to segment.o(.bss.currentDigitTime) for currentDigitTime - segment.o(.text.UpdateOneDigit) refers to segment.o(.text.NextDigit) for NextDigit - segment.o(.ARM.exidx.text.UpdateOneDigit) refers to segment.o(.text.UpdateOneDigit) for [Anonymous Symbol] - segment.o(.ARM.exidx.text.SetSegments) refers to segment.o(.text.SetSegments) for [Anonymous Symbol] - __main.o(!!!main) refers to __rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1 - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1 - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1 - __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh - __rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init - __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init - __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init - __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to main.o(.text.main) for main - __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit - __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001 - __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008 - __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A - __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B - __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D - __rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap - __rtentry4.o(.ARM.exidx) refers to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004 - sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace - sys_stackheap_outer.o(.text) refers to startup_stm32f103xb.o(.text) for __user_initial_stackheap - exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_alloca_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_argv_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_atexit_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_clock_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000034) for __rt_lib_init_cpp_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000032) for __rt_lib_init_exceptions_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000002) for __rt_lib_init_fp_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_fp_trap_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000025) for __rt_lib_init_getenv_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_heap_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_collate_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_ctype_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_monetary_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_lc_numeric_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_lc_time_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000006) for __rt_lib_init_preinit_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000010) for __rt_lib_init_rand_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000004) for __rt_lib_init_relocate_pie_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000035) for __rt_lib_init_return - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_signal_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000027) for __rt_lib_init_stdio_1 - libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000E) for __rt_lib_init_user_alloc_1 - libspace.o(.text) refers to libspace.o(.bss) for __libspace_start - rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit - rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls - rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1 - rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit - rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls - rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1 - rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000 - libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$00000011) for .ARM.Collect$$libinit$$00000011 - libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$00000011) for .ARM.Collect$$libinit$$00000011 - libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$00000011) for .ARM.Collect$$libinit$$00000011 - libinit2.o(.ARM.Collect$$libinit$$00000018) refers to libinit2.o(.ARM.Collect$$libinit$$00000011) for .ARM.Collect$$libinit$$00000011 - libinit2.o(.ARM.Collect$$libinit$$0000001A) refers to libinit2.o(.ARM.Collect$$libinit$$00000011) for .ARM.Collect$$libinit$$00000011 - libinit2.o(.ARM.Collect$$libinit$$00000028) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer - libinit2.o(.ARM.Collect$$libinit$$00000029) refers to argv_veneer.o(.emb_text) for __ARM_argv_veneer - rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown - rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit - rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001 - rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003 - rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004 - argv_veneer.o(.emb_text) refers to no_argv.o(.text) for __ARM_get_argv - sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - sys_exit_hlt.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_exit_hlt.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - _get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard - _get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM - _get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_cpp_1 - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) for __rt_lib_shutdown_fp_trap_1 - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) for __rt_lib_shutdown_heap_1 - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) for __rt_lib_shutdown_return - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) for __rt_lib_shutdown_signal_1 - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) for __rt_lib_shutdown_stdio_1 - libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) for __rt_lib_shutdown_user_alloc_1 - sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - sys_command_hlt.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_command_hlt.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner - defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit - defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise - rt_raise.o(.text) refers to __raise.o(.text) for __raise - rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit - defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit - defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - __raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler - defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch - sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - sys_wrch_hlt.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting - sys_wrch_hlt.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function - defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner - defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display - defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display - - -============================================================================== - -Removing Unused input sections from the image. - - Removing main.o(.text), (0 bytes). - Removing main.o(.ARM.exidx.text.ReadButton), (8 bytes). - Removing main.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedCallback), (8 bytes). - Removing main.o(.ARM.exidx.text.main), (8 bytes). - Removing main.o(.ARM.exidx.text.SystemClock_Config), (8 bytes). - Removing main.o(.ARM.exidx.text.Error_Handler), (8 bytes). - Removing main.o(.ARM.use_no_argv), (4 bytes). - Removing gpio.o(.text), (0 bytes). - Removing gpio.o(.ARM.exidx.text.MX_GPIO_Init), (8 bytes). - Removing rtc.o(.text), (0 bytes). - Removing rtc.o(.ARM.exidx.text.MX_RTC_Init), (8 bytes). - Removing rtc.o(.ARM.exidx.text.HAL_RTC_MspInit), (8 bytes). - Removing rtc.o(.text.HAL_RTC_MspDeInit), (40 bytes). - Removing rtc.o(.ARM.exidx.text.HAL_RTC_MspDeInit), (8 bytes). - Removing tim.o(.text), (0 bytes). - Removing tim.o(.ARM.exidx.text.MX_TIM2_Init), (8 bytes). - Removing tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit), (8 bytes). - Removing tim.o(.text.HAL_TIM_Base_MspDeInit), (46 bytes). - Removing tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit), (8 bytes). - Removing stm32f1xx_it.o(.text), (0 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.NMI_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.HardFault_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.MemManage_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.BusFault_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.UsageFault_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.SVC_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.DebugMon_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.PendSV_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.SysTick_Handler), (8 bytes). - Removing stm32f1xx_it.o(.ARM.exidx.text.TIM2_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_msp.o(.text), (0 bytes). - Removing stm32f1xx_hal_msp.o(.ARM.exidx.text.HAL_MspInit), (8 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.text), (0 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_ConfigEventout), (32 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_ConfigEventout), (8 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_EnableEventout), (16 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_EnableEventout), (8 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.text.HAL_GPIOEx_DisableEventout), (16 bytes). - Removing stm32f1xx_hal_gpio_ex.o(.ARM.exidx.text.HAL_GPIOEx_DisableEventout), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text), (0 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_Init), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_MspInit), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_MspInit), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_WaitForSynchro), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_EnterInitMode), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ExitInitMode), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeInit), (194 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_DeInit), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetTime), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_Bcd2ToByte), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WriteTimeCounter), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ReadAlarmCounter), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WriteAlarmCounter), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetTime), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ReadTimeCounter), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_DateUpdate), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_ByteToBcd2), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetDate), (382 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetDate), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_WeekDayNum), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetDate), (154 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetDate), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm), (314 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetAlarm), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetAlarm_IT), (370 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_SetAlarm_IT), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetAlarm), (216 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetAlarm), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_DeactivateAlarm), (216 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_DeactivateAlarm), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmIRQHandler), (98 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_AlarmIRQHandler), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_AlarmAEventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_AlarmAEventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_PollForAlarmAEvent), (130 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_PollForAlarmAEvent), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetState), (12 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.HAL_RTC_GetState), (8 bytes). - Removing stm32f1xx_hal_rtc.o(.ARM.exidx.text.RTC_IsLeapYear), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text), (0 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetTamper), (162 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetTamper), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetTamper_IT), (178 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetTamper_IT), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_DeactivateTamper), (136 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_DeactivateTamper), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_TamperIRQHandler), (96 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_TamperIRQHandler), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_Tamper1EventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_Tamper1EventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_PollForTamper1Event), (138 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_PollForTamper1Event), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetSecond_IT), (98 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetSecond_IT), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_DeactivateSecond), (98 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_DeactivateSecond), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCIRQHandler), (138 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCIRQHandler), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventErrorCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCEventErrorCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_RTCEventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_RTCEventCallback), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_BKUPWrite), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_BKUPRead), (8 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_SetSmoothCalib), (112 bytes). - Removing stm32f1xx_hal_rtc_ex.o(.ARM.exidx.text.HAL_RTCEx_SetSmoothCalib), (8 bytes). - Removing stm32f1xx_hal.o(.text), (0 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_Init), (8 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_InitTick), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_MspInit), (2 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_MspInit), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DeInit), (46 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DeInit), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_MspDeInit), (2 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_MspDeInit), (8 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_IncTick), (8 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTick), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetTickPrio), (12 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTickPrio), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_SetTickFreq), (106 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_SetTickFreq), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetTickFreq), (12 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetTickFreq), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_Delay), (66 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_Delay), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_SuspendTick), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_SuspendTick), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_ResumeTick), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_ResumeTick), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetHalVersion), (10 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetHalVersion), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetREVID), (14 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetREVID), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetDEVID), (16 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetDEVID), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetUIDw0), (12 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw0), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetUIDw1), (12 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw1), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_GetUIDw2), (12 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_GetUIDw2), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGSleepMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGSleepMode), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGSleepMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGSleepMode), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGStopMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGStopMode), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGStopMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGStopMode), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_EnableDBGStandbyMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_EnableDBGStandbyMode), (8 bytes). - Removing stm32f1xx_hal.o(.text.HAL_DBGMCU_DisableDBGStandbyMode), (18 bytes). - Removing stm32f1xx_hal.o(.ARM.exidx.text.HAL_DBGMCU_DisableDBGStandbyMode), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text), (0 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_DeInit), (400 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_DeInit), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_OscConfig), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.RCC_Delay), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_ClockConfig), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetSysClockFreq), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_MCOConfig), (104 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_MCOConfig), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_EnableCSS), (12 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_EnableCSS), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_DisableCSS), (12 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_DisableCSS), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetHCLKFreq), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK1Freq), (34 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetPCLK1Freq), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetPCLK2Freq), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetOscConfig), (302 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetOscConfig), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetClockConfig), (84 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_GetClockConfig), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_NMI_IRQHandler), (40 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_NMI_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_rcc.o(.text.HAL_RCC_CSSCallback), (2 bytes). - Removing stm32f1xx_hal_rcc.o(.ARM.exidx.text.HAL_RCC_CSSCallback), (8 bytes). - Removing stm32f1xx_hal_rcc_ex.o(.text), (0 bytes). - Removing stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_PeriphCLKConfig), (8 bytes). - Removing stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKConfig), (88 bytes). - Removing stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_GetPeriphCLKConfig), (8 bytes). - Removing stm32f1xx_hal_rcc_ex.o(.ARM.exidx.text.HAL_RCCEx_GetPeriphCLKFreq), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text), (0 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_Init), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text.HAL_GPIO_DeInit), (414 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_DeInit), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_ReadPin), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_WritePin), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text.HAL_GPIO_TogglePin), (38 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_TogglePin), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text.HAL_GPIO_LockPin), (86 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_LockPin), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_IRQHandler), (56 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_EXTI_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_gpio.o(.text.HAL_GPIO_EXTI_Callback), (10 bytes). - Removing stm32f1xx_hal_gpio.o(.ARM.exidx.text.HAL_GPIO_EXTI_Callback), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text), (0 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_Init), (174 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Init), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_DeInit), (170 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_DeInit), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_Start), (154 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Start), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.DMA_SetConfig), (80 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.DMA_SetConfig), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_Start_IT), (202 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Start_IT), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort), (124 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Abort), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_Abort_IT), (284 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_Abort_IT), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_PollForTransfer), (1168 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_PollForTransfer), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_IRQHandler), (646 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_RegisterCallback), (164 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_RegisterCallback), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_UnRegisterCallback), (184 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_UnRegisterCallback), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_GetState), (14 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_GetState), (8 bytes). - Removing stm32f1xx_hal_dma.o(.text.HAL_DMA_GetError), (12 bytes). - Removing stm32f1xx_hal_dma.o(.ARM.exidx.text.HAL_DMA_GetError), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text), (0 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPriorityGrouping), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPriorityGrouping), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPriorityGrouping), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.NVIC_EncodePriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_EnableIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_EnableIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_DisableIRQ), (20 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_DisableIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_DisableIRQ), (56 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_DisableIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SystemReset), (4 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SystemReset), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_SystemReset), (38 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SystemReset), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_Config), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.SysTick_Config), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriorityGrouping), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPriorityGrouping), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPriority), (36 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.NVIC_DecodePriority), (118 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.NVIC_DecodePriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriority), (66 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPriority), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPendingIRQ), (20 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_SetPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_SetPendingIRQ), (48 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_SetPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetPendingIRQ), (20 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_GetPendingIRQ), (64 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_ClearPendingIRQ), (20 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_ClearPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_ClearPendingIRQ), (48 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_ClearPendingIRQ), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_NVIC_GetActive), (20 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_NVIC_GetActive), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.__NVIC_GetActive), (64 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.__NVIC_GetActive), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_CLKSourceConfig), (52 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_CLKSourceConfig), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Callback), (2 bytes). - Removing stm32f1xx_hal_cortex.o(.ARM.exidx.text.HAL_SYSTICK_Callback), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text), (0 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DeInit), (26 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DeInit), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableBkUpAccess), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableBkUpAccess), (12 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableBkUpAccess), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_ConfigPVD), (210 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_ConfigPVD), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnablePVD), (12 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnablePVD), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisablePVD), (12 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisablePVD), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableWakeUpPin), (30 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableWakeUpPin), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableWakeUpPin), (30 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableWakeUpPin), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSLEEPMode), (50 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSLEEPMode), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSTOPMode), (100 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSTOPMode), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.PWR_OverloadWfe), (6 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.PWR_OverloadWfe), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnterSTANDBYMode), (36 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnterSTANDBYMode), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableSleepOnExit), (18 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableSleepOnExit), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableSleepOnExit), (18 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableSleepOnExit), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableSEVOnPend), (18 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_EnableSEVOnPend), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_DisableSEVOnPend), (18 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_DisableSEVOnPend), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVD_IRQHandler), (42 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_PVD_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_pwr.o(.text.HAL_PWR_PVDCallback), (2 bytes). - Removing stm32f1xx_hal_pwr.o(.ARM.exidx.text.HAL_PWR_PVDCallback), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text), (0 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program), (300 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Program), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.FLASH_WaitForLastOperation), (280 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_WaitForLastOperation), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.FLASH_Program_HalfWord), (48 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_Program_HalfWord), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_Program_IT), (144 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Program_IT), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_IRQHandler), (622 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.FLASH_SetErrorCode), (270 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.FLASH_SetErrorCode), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_OperationErrorCallback), (8 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OperationErrorCallback), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_EndOfOperationCallback), (8 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_EndOfOperationCallback), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_Unlock), (90 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Unlock), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_Lock), (20 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_Lock), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Unlock), (74 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Unlock), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Lock), (20 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Lock), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_OB_Launch), (8 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_OB_Launch), (8 bytes). - Removing stm32f1xx_hal_flash.o(.text.HAL_FLASH_GetError), (12 bytes). - Removing stm32f1xx_hal_flash.o(.ARM.exidx.text.HAL_FLASH_GetError), (8 bytes). - Removing stm32f1xx_hal_flash.o(.bss.pFlash), (32 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text), (0 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase), (266 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_Erase), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_MassErase), (44 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_MassErase), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_PageErase), (56 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_PageErase), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_Erase_IT), (134 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_Erase_IT), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBErase), (136 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBErase), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetRDP), (52 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetRDP), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_RDP_LevelConfig), (170 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_RDP_LevelConfig), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBProgram), (354 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBProgram), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_EnableWRP), (370 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_EnableWRP), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_DisableWRP), (364 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_DisableWRP), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_UserConfig), (114 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_UserConfig), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_ProgramData), (106 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_ProgramData), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetConfig), (40 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBGetConfig), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetWRP), (12 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetWRP), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.FLASH_OB_GetUser), (16 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.FLASH_OB_GetUser), (8 bytes). - Removing stm32f1xx_hal_flash_ex.o(.text.HAL_FLASHEx_OBGetUserData), (66 bytes). - Removing stm32f1xx_hal_flash_ex.o(.ARM.exidx.text.HAL_FLASHEx_OBGetUserData), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text), (0 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_SetConfigLine), (356 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_SetConfigLine), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetConfigLine), (266 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetConfigLine), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_ClearConfigLine), (194 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_ClearConfigLine), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_RegisterCallback), (48 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_RegisterCallback), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetHandle), (42 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetHandle), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_IRQHandler), (76 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_GetPending), (50 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GetPending), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_ClearPending), (36 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_ClearPending), (8 bytes). - Removing stm32f1xx_hal_exti.o(.text.HAL_EXTI_GenerateSWI), (34 bytes). - Removing stm32f1xx_hal_exti.o(.ARM.exidx.text.HAL_EXTI_GenerateSWI), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text), (0 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_Base_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_DeInit), (166 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start), (164 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop), (70 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop_IT), (82 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_DMA), (304 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedCplt), (42 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAPeriodElapsedCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMAPeriodElapsedHalfCplt), (22 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAPeriodElapsedHalfCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMAError), (154 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMAError), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Stop_DMA), (92 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Init), (156 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DeInit), (166 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start), (352 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_CCxChannelCmd), (54 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_CCxChannelCmd), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop), (228 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_IT), (464 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_IT), (340 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Start_DMA), (878 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseCplt), (188 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMADelayPulseCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMADelayPulseHalfCplt), (116 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMADelayPulseHalfCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_Stop_DMA), (372 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Init), (156 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_DeInit), (166 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start), (352 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop), (228 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_IT), (464 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_IT), (340 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Start_DMA), (878 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_Stop_DMA), (372 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Init), (156 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_DeInit), (166 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start), (496 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop), (234 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_IT), (608 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_IT), (346 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Start_DMA), (948 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMACaptureCplt), (212 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMACaptureCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMACaptureHalfCplt), (116 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMACaptureHalfCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_Stop_DMA), (376 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Init), (144 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_DeInit), (128 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start), (196 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop), (190 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Start_IT), (220 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_Stop_IT), (214 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Init), (296 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Init), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_DeInit), (128 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start), (334 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop), (338 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_IT), (382 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_IT), (386 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Start_DMA), (896 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_Stop_DMA), (418 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IRQHandler), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_CaptureCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_DelayElapsedCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_PulseFinishedCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_TriggerCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_ConfigChannel), (164 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_ConfigChannel), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_OC1_SetConfig), (206 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC1_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_OC2_SetConfig), (216 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC2_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_OC3_SetConfig), (214 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC3_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_OC4_SetConfig), (150 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_OC4_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_ConfigChannel), (304 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_ConfigChannel), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_TI1_SetConfig), (200 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI1_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_TI2_SetConfig), (108 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI2_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_TI3_SetConfig), (106 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI3_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_TI4_SetConfig), (108 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI4_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_ConfigChannel), (322 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_ConfigChannel), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_ConfigChannel), (394 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_ConfigChannel), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStart), (62 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_WriteStart), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiWriteStart), (736 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_MultiWriteStart), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMATriggerCplt), (42 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMATriggerCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_DMATriggerHalfCplt), (22 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_DMATriggerHalfCplt), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_WriteStop), (202 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_WriteStop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStart), (62 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_ReadStart), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_MultiReadStart), (736 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_MultiReadStart), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurst_ReadStop), (202 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurst_ReadStop), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_GenerateEvent), (92 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GenerateEvent), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigOCrefClear), (384 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigOCrefClear), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_ETR_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigClockSource), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI1_ConfigInputStage), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_ITRx_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_TI2_ConfigInputStage), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigTI1Input), (44 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ConfigTI1Input), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro), (150 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_SlaveConfigSynchro), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.TIM_SlaveTimer_SetConfig), (296 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.TIM_SlaveTimer_SetConfig), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_SlaveConfigSynchro_IT), (150 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_SlaveConfigSynchro_IT), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_ReadCapturedValue), (86 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ReadCapturedValue), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PeriodElapsedHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PeriodElapsedHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_CaptureHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_TriggerHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_ErrorCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_ErrorCallback), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Base_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OC_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_PWM_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_IC_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_OnePulse_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_OnePulse_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_Encoder_GetState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_Encoder_GetState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_GetActiveChannel), (12 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GetActiveChannel), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_GetChannelState), (94 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_GetChannelState), (8 bytes). - Removing stm32f1xx_hal_tim.o(.text.HAL_TIM_DMABurstState), (14 bytes). - Removing stm32f1xx_hal_tim.o(.ARM.exidx.text.HAL_TIM_DMABurstState), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text), (0 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Init), (280 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Init), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_MspInit), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_DeInit), (128 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_DeInit), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_MspDeInit), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start), (264 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop), (102 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_IT), (276 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_IT), (114 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Start_DMA), (358 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_Stop_DMA), (110 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start), (332 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.TIM_CCxNChannelCmd), (54 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_CCxNChannelCmd), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop), (208 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_IT), (438 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_IT), (338 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Start_DMA), (766 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.TIM_DMADelayPulseNCplt), (148 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_DMADelayPulseNCplt), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.TIM_DMAErrorCCxN), (116 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIM_DMAErrorCCxN), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OCN_Stop_DMA), (326 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OCN_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start), (332 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop), (208 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_IT), (438 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_IT), (338 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Start_DMA), (766 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Start_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_PWMN_Stop_DMA), (326 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_PWMN_Stop_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start), (186 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Start), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop), (182 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Stop), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Start_IT), (210 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Start_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_OnePulseN_Stop_IT), (206 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_OnePulseN_Stop_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent), (186 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_IT), (186 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent_IT), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigCommutEvent_DMA), (228 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigCommutEvent_DMA), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationCplt), (30 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIMEx_DMACommutationCplt), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.TIMEx_DMACommutationHalfCplt), (30 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.TIMEx_DMACommutationHalfCplt), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_MasterConfigSynchronization), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_ConfigBreakDeadTime), (178 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_ConfigBreakDeadTime), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_RemapConfig), (12 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_RemapConfig), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_CommutCallback), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_CommutHalfCpltCallback), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_BreakCallback), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_HallSensor_GetState), (14 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_HallSensor_GetState), (8 bytes). - Removing stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_GetChannelNState), (94 bytes). - Removing stm32f1xx_hal_tim_ex.o(.ARM.exidx.text.HAL_TIMEx_GetChannelNState), (8 bytes). - Removing system_stm32f1xx.o(.text), (0 bytes). - Removing system_stm32f1xx.o(.ARM.exidx.text.SystemInit), (8 bytes). - Removing system_stm32f1xx.o(.text.SystemCoreClockUpdate), (290 bytes). - Removing system_stm32f1xx.o(.ARM.exidx.text.SystemCoreClockUpdate), (8 bytes). - Removing clock_manager.o(.text), (0 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_Init), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.LoadDuty), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_ResetTime), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_GetTime), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_SetTime), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_GetDuty), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.ClockManager_SetDuty), (8 bytes). - Removing clock_manager.o(.ARM.exidx.text.SaveDuty), (8 bytes). - Removing menu.o(.text), (0 bytes). - Removing menu.o(.ARM.exidx.text.Menu_Init), (8 bytes). - Removing menu.o(.ARM.exidx.text.Menu_Process), (8 bytes). - Removing menu.o(.ARM.exidx.text.UpdateDisplay), (8 bytes). - Removing menu.o(.ARM.exidx.text.ProcessButton), (8 bytes). - Removing menu.o(.text.Menu_GetState), (12 bytes). - Removing menu.o(.ARM.exidx.text.Menu_GetState), (8 bytes). - Removing menu.o(.ARM.exidx.text.FormatTime), (8 bytes). - Removing menu.o(.ARM.exidx.text.IncreaseTimeDigit), (8 bytes). - Removing menu.o(.ARM.exidx.text.DecreaseTimeDigit), (8 bytes). - Removing menu.o(.rodata..L__const.UpdateDisplay.buf), (6 bytes). - Removing segment.o(.text), (0 bytes). - Removing segment.o(.ARM.exidx.text.DisableAllDigits), (8 bytes). - Removing segment.o(.ARM.exidx.text.EnableDigit), (8 bytes). - Removing segment.o(.ARM.exidx.text.Segment_Init), (8 bytes). - Removing segment.o(.ARM.exidx.text.NextDigit), (8 bytes). - Removing segment.o(.text.Segment_SetChar), (52 bytes). - Removing segment.o(.ARM.exidx.text.Segment_SetChar), (8 bytes). - Removing segment.o(.ARM.exidx.text.GetCharMask), (8 bytes). - Removing segment.o(.text.Segment_SetRaw), (46 bytes). - Removing segment.o(.ARM.exidx.text.Segment_SetRaw), (8 bytes). - Removing segment.o(.ARM.exidx.text.Segment_SetString), (8 bytes). - Removing segment.o(.ARM.exidx.text.Segment_SetBrightness), (8 bytes). - Removing segment.o(.ARM.exidx.text.Segment_Process), (8 bytes). - Removing segment.o(.ARM.exidx.text.UpdateOneDigit), (8 bytes). - Removing segment.o(.ARM.exidx.text.SetSegments), (8 bytes). - -740 unused section(s) (total 49268 bytes) removed from the image. - -============================================================================== - -Image Symbol Table - - Local Symbols - - Symbol Name Value Ov Type Size Object(Section) - - ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE - ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE - ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE - ../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE - ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE - ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE - ../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE - ../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE - ../clib/angel/scatter.s 0x00000000 Number 0 __scatter.o ABSOLUTE - ../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE - ../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit_hlt.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_command_hlt.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE - ../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch_hlt.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE - ../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE - ../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE - ../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE - ../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE - ../clib/memcpset.s 0x00000000 Number 0 rt_memclr_w.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE - ../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE - ../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE - ../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE - ../fplib/fpinit.s 0x00000000 Number 0 fpinit.o ABSOLUTE - ../fplib/fpinit_empty.s 0x00000000 Number 0 fpinit_empty.o ABSOLUTE - clock_manager.c 0x00000000 Number 0 clock_manager.o ABSOLUTE - dc.s 0x00000000 Number 0 dc.o ABSOLUTE - gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE - main.c 0x00000000 Number 0 main.o ABSOLUTE - menu.c 0x00000000 Number 0 menu.o ABSOLUTE - rtc.c 0x00000000 Number 0 rtc.o ABSOLUTE - segment.c 0x00000000 Number 0 segment.o ABSOLUTE - startup_stm32f103xb.s 0x00000000 Number 0 startup_stm32f103xb.o ABSOLUTE - stm32f1xx_hal.c 0x00000000 Number 0 stm32f1xx_hal.o ABSOLUTE - stm32f1xx_hal_cortex.c 0x00000000 Number 0 stm32f1xx_hal_cortex.o ABSOLUTE - stm32f1xx_hal_dma.c 0x00000000 Number 0 stm32f1xx_hal_dma.o ABSOLUTE - stm32f1xx_hal_exti.c 0x00000000 Number 0 stm32f1xx_hal_exti.o ABSOLUTE - stm32f1xx_hal_flash.c 0x00000000 Number 0 stm32f1xx_hal_flash.o ABSOLUTE - stm32f1xx_hal_flash_ex.c 0x00000000 Number 0 stm32f1xx_hal_flash_ex.o ABSOLUTE - stm32f1xx_hal_gpio.c 0x00000000 Number 0 stm32f1xx_hal_gpio.o ABSOLUTE - stm32f1xx_hal_gpio_ex.c 0x00000000 Number 0 stm32f1xx_hal_gpio_ex.o ABSOLUTE - stm32f1xx_hal_msp.c 0x00000000 Number 0 stm32f1xx_hal_msp.o ABSOLUTE - stm32f1xx_hal_pwr.c 0x00000000 Number 0 stm32f1xx_hal_pwr.o ABSOLUTE - stm32f1xx_hal_rcc.c 0x00000000 Number 0 stm32f1xx_hal_rcc.o ABSOLUTE - stm32f1xx_hal_rcc_ex.c 0x00000000 Number 0 stm32f1xx_hal_rcc_ex.o ABSOLUTE - stm32f1xx_hal_rtc.c 0x00000000 Number 0 stm32f1xx_hal_rtc.o ABSOLUTE - stm32f1xx_hal_rtc_ex.c 0x00000000 Number 0 stm32f1xx_hal_rtc_ex.o ABSOLUTE - stm32f1xx_hal_tim.c 0x00000000 Number 0 stm32f1xx_hal_tim.o ABSOLUTE - stm32f1xx_hal_tim_ex.c 0x00000000 Number 0 stm32f1xx_hal_tim_ex.o ABSOLUTE - stm32f1xx_it.c 0x00000000 Number 0 stm32f1xx_it.o ABSOLUTE - system_stm32f1xx.c 0x00000000 Number 0 system_stm32f1xx.o ABSOLUTE - tim.c 0x00000000 Number 0 tim.o ABSOLUTE - RESET 0x08000000 Section 236 startup_stm32f103xb.o(RESET) - !!!main 0x080000ec Section 8 __main.o(!!!main) - !!!scatter 0x080000f4 Section 52 __scatter.o(!!!scatter) - !!handler_copy 0x08000128 Section 26 __scatter_copy.o(!!handler_copy) - !!handler_zi 0x08000144 Section 28 __scatter_zi.o(!!handler_zi) - .ARM.Collect$$libinit$$00000000 0x08000160 Section 2 libinit.o(.ARM.Collect$$libinit$$00000000) - .ARM.Collect$$libinit$$00000002 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002) - .ARM.Collect$$libinit$$00000004 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000004) - .ARM.Collect$$libinit$$00000006 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000006) - .ARM.Collect$$libinit$$0000000C 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C) - .ARM.Collect$$libinit$$0000000E 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) - .ARM.Collect$$libinit$$00000010 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000010) - .ARM.Collect$$libinit$$00000013 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013) - .ARM.Collect$$libinit$$00000015 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015) - .ARM.Collect$$libinit$$00000017 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017) - .ARM.Collect$$libinit$$00000019 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019) - .ARM.Collect$$libinit$$0000001B 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) - .ARM.Collect$$libinit$$0000001D 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) - .ARM.Collect$$libinit$$0000001F 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) - .ARM.Collect$$libinit$$00000021 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021) - .ARM.Collect$$libinit$$00000023 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023) - .ARM.Collect$$libinit$$00000025 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025) - .ARM.Collect$$libinit$$00000027 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000027) - .ARM.Collect$$libinit$$0000002E 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) - .ARM.Collect$$libinit$$00000030 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030) - .ARM.Collect$$libinit$$00000032 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032) - .ARM.Collect$$libinit$$00000034 0x08000162 Section 0 libinit2.o(.ARM.Collect$$libinit$$00000034) - .ARM.Collect$$libinit$$00000035 0x08000162 Section 2 libinit2.o(.ARM.Collect$$libinit$$00000035) - .ARM.Collect$$libshutdown$$00000000 0x08000164 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) - .ARM.Collect$$libshutdown$$00000002 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) - .ARM.Collect$$libshutdown$$00000004 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) - .ARM.Collect$$libshutdown$$00000007 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) - .ARM.Collect$$libshutdown$$0000000A 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) - .ARM.Collect$$libshutdown$$0000000C 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) - .ARM.Collect$$libshutdown$$0000000F 0x08000166 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) - .ARM.Collect$$libshutdown$$00000010 0x08000166 Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) - .ARM.Collect$$rtentry$$00000000 0x08000168 Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) - .ARM.Collect$$rtentry$$00000002 0x08000168 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) - .ARM.Collect$$rtentry$$00000004 0x08000168 Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) - .ARM.Collect$$rtentry$$00000009 0x0800016e Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) - .ARM.Collect$$rtentry$$0000000A 0x0800016e Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) - .ARM.Collect$$rtentry$$0000000C 0x08000172 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) - .ARM.Collect$$rtentry$$0000000D 0x08000172 Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) - .ARM.Collect$$rtexit$$00000000 0x0800017a Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000) - .ARM.Collect$$rtexit$$00000002 0x0800017c Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) - .ARM.Collect$$rtexit$$00000003 0x0800017c Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003) - .ARM.Collect$$rtexit$$00000004 0x08000180 Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004) - .text 0x08000188 Section 64 startup_stm32f103xb.o(.text) - .text 0x080001c8 Section 78 rt_memclr_w.o(.text) - .text 0x08000216 Section 0 heapauxi.o(.text) - .text 0x0800021c Section 74 sys_stackheap_outer.o(.text) - .text 0x08000266 Section 0 exit.o(.text) - .text 0x08000278 Section 8 libspace.o(.text) - .text 0x08000280 Section 0 sys_exit.o(.text) - .text 0x0800028c Section 2 use_no_semi.o(.text) - .text 0x0800028e Section 0 indicate_semi.o(.text) - [Anonymous Symbol] 0x08000290 Section 0 stm32f1xx_it.o(.text.BusFault_Handler) - [Anonymous Symbol] 0x08000294 Section 0 clock_manager.o(.text.ClockManager_GetDuty) - [Anonymous Symbol] 0x080002a0 Section 0 clock_manager.o(.text.ClockManager_GetTime) - [Anonymous Symbol] 0x080002f4 Section 0 clock_manager.o(.text.ClockManager_Init) - [Anonymous Symbol] 0x08000334 Section 0 clock_manager.o(.text.ClockManager_ResetTime) - [Anonymous Symbol] 0x08000344 Section 0 clock_manager.o(.text.ClockManager_SetDuty) - [Anonymous Symbol] 0x08000384 Section 0 clock_manager.o(.text.ClockManager_SetTime) - [Anonymous Symbol] 0x080003c0 Section 0 stm32f1xx_it.o(.text.DebugMon_Handler) - DecreaseTimeDigit 0x080003c5 Thumb Code 740 menu.o(.text.DecreaseTimeDigit) - [Anonymous Symbol] 0x080003c4 Section 0 menu.o(.text.DecreaseTimeDigit) - [Anonymous Symbol] 0x080006a8 Section 0 segment.o(.text.DisableAllDigits) - [Anonymous Symbol] 0x08000700 Section 0 segment.o(.text.EnableDigit) - [Anonymous Symbol] 0x08000778 Section 0 main.o(.text.Error_Handler) - FormatTime 0x08000789 Thumb Code 146 menu.o(.text.FormatTime) - [Anonymous Symbol] 0x08000788 Section 0 menu.o(.text.FormatTime) - GetCharMask 0x0800081d Thumb Code 92 segment.o(.text.GetCharMask) - [Anonymous Symbol] 0x0800081c Section 0 segment.o(.text.GetCharMask) - [Anonymous Symbol] 0x08000878 Section 0 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init) - [Anonymous Symbol] 0x08000b98 Section 0 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) - [Anonymous Symbol] 0x08000bc8 Section 0 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_WritePin) - [Anonymous Symbol] 0x08000bf8 Section 0 stm32f1xx_hal.o(.text.HAL_GetTick) - [Anonymous Symbol] 0x08000c04 Section 0 stm32f1xx_hal.o(.text.HAL_IncTick) - [Anonymous Symbol] 0x08000c20 Section 0 stm32f1xx_hal.o(.text.HAL_Init) - [Anonymous Symbol] 0x08000c48 Section 0 stm32f1xx_hal.o(.text.HAL_InitTick) - [Anonymous Symbol] 0x08000cb8 Section 0 stm32f1xx_hal_msp.o(.text.HAL_MspInit) - [Anonymous Symbol] 0x08000d1c Section 0 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) - [Anonymous Symbol] 0x08000d30 Section 0 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) - [Anonymous Symbol] 0x08000d64 Section 0 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x08000d74 Section 0 stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableBkUpAccess) - [Anonymous Symbol] 0x08000d80 Section 0 stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) - [Anonymous Symbol] 0x08000f18 Section 0 stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig) - [Anonymous Symbol] 0x080010e0 Section 0 stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) - [Anonymous Symbol] 0x08001338 Section 0 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) - [Anonymous Symbol] 0x08001344 Section 0 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) - [Anonymous Symbol] 0x08001368 Section 0 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) - [Anonymous Symbol] 0x08001424 Section 0 stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) - [Anonymous Symbol] 0x08001aa0 Section 0 stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPRead) - [Anonymous Symbol] 0x08001ad0 Section 0 stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPWrite) - [Anonymous Symbol] 0x08001afc Section 0 stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) - [Anonymous Symbol] 0x08001cb0 Section 0 stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) - [Anonymous Symbol] 0x08001ddc Section 0 rtc.o(.text.HAL_RTC_MspInit) - [Anonymous Symbol] 0x08001e28 Section 0 stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) - [Anonymous Symbol] 0x08001f6c Section 0 stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) - [Anonymous Symbol] 0x08001fd0 Section 0 stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config) - [Anonymous Symbol] 0x08001fe0 Section 0 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) - [Anonymous Symbol] 0x08001fe8 Section 0 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) - [Anonymous Symbol] 0x08001ff0 Section 0 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) - [Anonymous Symbol] 0x080020cc Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) - [Anonymous Symbol] 0x08002168 Section 0 tim.o(.text.HAL_TIM_Base_MspInit) - [Anonymous Symbol] 0x080021b0 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_IT) - [Anonymous Symbol] 0x08002260 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) - [Anonymous Symbol] 0x080023e4 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) - [Anonymous Symbol] 0x080023ec Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) - [Anonymous Symbol] 0x08002608 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) - [Anonymous Symbol] 0x08002610 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) - [Anonymous Symbol] 0x08002618 Section 0 main.o(.text.HAL_TIM_PeriodElapsedCallback) - [Anonymous Symbol] 0x08002634 Section 0 stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) - [Anonymous Symbol] 0x0800263c Section 0 stm32f1xx_it.o(.text.HardFault_Handler) - IncreaseTimeDigit 0x08002641 Thumb Code 638 menu.o(.text.IncreaseTimeDigit) - [Anonymous Symbol] 0x08002640 Section 0 menu.o(.text.IncreaseTimeDigit) - LoadDuty 0x080028c1 Thumb Code 64 clock_manager.o(.text.LoadDuty) - [Anonymous Symbol] 0x080028c0 Section 0 clock_manager.o(.text.LoadDuty) - [Anonymous Symbol] 0x08002900 Section 0 gpio.o(.text.MX_GPIO_Init) - [Anonymous Symbol] 0x08002a08 Section 0 rtc.o(.text.MX_RTC_Init) - [Anonymous Symbol] 0x08002a38 Section 0 tim.o(.text.MX_TIM2_Init) - [Anonymous Symbol] 0x08002ab8 Section 0 stm32f1xx_it.o(.text.MemManage_Handler) - [Anonymous Symbol] 0x08002abc Section 0 menu.o(.text.Menu_Init) - [Anonymous Symbol] 0x08002b24 Section 0 menu.o(.text.Menu_Process) - [Anonymous Symbol] 0x08002e44 Section 0 stm32f1xx_it.o(.text.NMI_Handler) - NVIC_EncodePriority 0x08002e49 Thumb Code 108 stm32f1xx_hal_cortex.o(.text.NVIC_EncodePriority) - [Anonymous Symbol] 0x08002e48 Section 0 stm32f1xx_hal_cortex.o(.text.NVIC_EncodePriority) - NextDigit 0x08002eb5 Thumb Code 226 segment.o(.text.NextDigit) - [Anonymous Symbol] 0x08002eb4 Section 0 segment.o(.text.NextDigit) - [Anonymous Symbol] 0x08002f98 Section 0 stm32f1xx_it.o(.text.PendSV_Handler) - ProcessButton 0x08002f9d Thumb Code 848 menu.o(.text.ProcessButton) - [Anonymous Symbol] 0x08002f9c Section 0 menu.o(.text.ProcessButton) - RCC_Delay 0x080032ed Thumb Code 58 stm32f1xx_hal_rcc.o(.text.RCC_Delay) - [Anonymous Symbol] 0x080032ec Section 0 stm32f1xx_hal_rcc.o(.text.RCC_Delay) - RTC_Bcd2ToByte 0x08003329 Thumb Code 42 stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) - [Anonymous Symbol] 0x08003328 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_Bcd2ToByte) - RTC_ByteToBcd2 0x08003355 Thumb Code 58 stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) - [Anonymous Symbol] 0x08003354 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_ByteToBcd2) - RTC_DateUpdate 0x08003391 Thumb Code 370 stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) - [Anonymous Symbol] 0x08003390 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_DateUpdate) - RTC_EnterInitMode 0x08003505 Thumb Code 86 stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) - [Anonymous Symbol] 0x08003504 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_EnterInitMode) - RTC_ExitInitMode 0x0800355d Thumb Code 86 stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) - [Anonymous Symbol] 0x0800355c Section 0 stm32f1xx_hal_rtc.o(.text.RTC_ExitInitMode) - RTC_IsLeapYear 0x080035b5 Thumb Code 120 stm32f1xx_hal_rtc.o(.text.RTC_IsLeapYear) - [Anonymous Symbol] 0x080035b4 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_IsLeapYear) - RTC_ReadAlarmCounter 0x0800362d Thumb Code 50 stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) - [Anonymous Symbol] 0x0800362c Section 0 stm32f1xx_hal_rtc.o(.text.RTC_ReadAlarmCounter) - RTC_ReadTimeCounter 0x08003661 Thumb Code 106 stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter) - [Anonymous Symbol] 0x08003660 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_ReadTimeCounter) - RTC_WeekDayNum 0x080036cd Thumb Code 226 stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum) - [Anonymous Symbol] 0x080036cc Section 0 stm32f1xx_hal_rtc.o(.text.RTC_WeekDayNum) - RTC_WriteAlarmCounter 0x080037b1 Thumb Code 80 stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) - [Anonymous Symbol] 0x080037b0 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_WriteAlarmCounter) - RTC_WriteTimeCounter 0x08003801 Thumb Code 80 stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) - [Anonymous Symbol] 0x08003800 Section 0 stm32f1xx_hal_rtc.o(.text.RTC_WriteTimeCounter) - [Anonymous Symbol] 0x08003850 Section 0 main.o(.text.ReadButton) - [Anonymous Symbol] 0x080038dc Section 0 stm32f1xx_it.o(.text.SVC_Handler) - SaveDuty 0x080038e1 Thumb Code 28 clock_manager.o(.text.SaveDuty) - [Anonymous Symbol] 0x080038e0 Section 0 clock_manager.o(.text.SaveDuty) - [Anonymous Symbol] 0x080038fc Section 0 segment.o(.text.Segment_Init) - [Anonymous Symbol] 0x08003958 Section 0 segment.o(.text.Segment_Process) - [Anonymous Symbol] 0x08003960 Section 0 segment.o(.text.Segment_SetBrightness) - [Anonymous Symbol] 0x0800399c Section 0 segment.o(.text.Segment_SetString) - SetSegments 0x080039f1 Thumb Code 170 segment.o(.text.SetSegments) - [Anonymous Symbol] 0x080039f0 Section 0 segment.o(.text.SetSegments) - SysTick_Config 0x08003a9d Thumb Code 82 stm32f1xx_hal_cortex.o(.text.SysTick_Config) - [Anonymous Symbol] 0x08003a9c Section 0 stm32f1xx_hal_cortex.o(.text.SysTick_Config) - [Anonymous Symbol] 0x08003af0 Section 0 stm32f1xx_it.o(.text.SysTick_Handler) - [Anonymous Symbol] 0x08003af8 Section 0 main.o(.text.SystemClock_Config) - [Anonymous Symbol] 0x08003b8c Section 0 system_stm32f1xx.o(.text.SystemInit) - [Anonymous Symbol] 0x08003b90 Section 0 stm32f1xx_it.o(.text.TIM2_IRQHandler) - [Anonymous Symbol] 0x08003ba0 Section 0 stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) - [Anonymous Symbol] 0x08003ca8 Section 0 stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) - TIM_ITRx_SetConfig 0x08003cdd Thumb Code 42 stm32f1xx_hal_tim.o(.text.TIM_ITRx_SetConfig) - [Anonymous Symbol] 0x08003cdc Section 0 stm32f1xx_hal_tim.o(.text.TIM_ITRx_SetConfig) - TIM_TI1_ConfigInputStage 0x08003d09 Thumb Code 80 stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) - [Anonymous Symbol] 0x08003d08 Section 0 stm32f1xx_hal_tim.o(.text.TIM_TI1_ConfigInputStage) - TIM_TI2_ConfigInputStage 0x08003d59 Thumb Code 82 stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) - [Anonymous Symbol] 0x08003d58 Section 0 stm32f1xx_hal_tim.o(.text.TIM_TI2_ConfigInputStage) - UpdateDisplay 0x08003dad Thumb Code 326 menu.o(.text.UpdateDisplay) - [Anonymous Symbol] 0x08003dac Section 0 menu.o(.text.UpdateDisplay) - UpdateOneDigit 0x08003ef5 Thumb Code 192 segment.o(.text.UpdateOneDigit) - [Anonymous Symbol] 0x08003ef4 Section 0 segment.o(.text.UpdateOneDigit) - [Anonymous Symbol] 0x08003fb4 Section 0 stm32f1xx_it.o(.text.UsageFault_Handler) - __NVIC_EnableIRQ 0x08003fb9 Thumb Code 48 stm32f1xx_hal_cortex.o(.text.__NVIC_EnableIRQ) - [Anonymous Symbol] 0x08003fb8 Section 0 stm32f1xx_hal_cortex.o(.text.__NVIC_EnableIRQ) - __NVIC_GetPriorityGrouping 0x08003fe9 Thumb Code 16 stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) - [Anonymous Symbol] 0x08003fe8 Section 0 stm32f1xx_hal_cortex.o(.text.__NVIC_GetPriorityGrouping) - __NVIC_SetPriority 0x08003ff9 Thumb Code 66 stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority) - [Anonymous Symbol] 0x08003ff8 Section 0 stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriority) - __NVIC_SetPriorityGrouping 0x0800403d Thumb Code 60 stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x0800403c Section 0 stm32f1xx_hal_cortex.o(.text.__NVIC_SetPriorityGrouping) - [Anonymous Symbol] 0x08004078 Section 0 main.o(.text.main) - HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable 0x080040cc Data 16 stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable) - [Anonymous Symbol] 0x080040cc Section 0 stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable) - HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable 0x080040dc Data 2 stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable) - [Anonymous Symbol] 0x080040dc Section 0 stm32f1xx_hal_rcc_ex.o(.rodata.HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable) - HAL_RCC_GetSysClockFreq.aPLLMULFactorTable 0x080040de Data 16 stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPLLMULFactorTable) - [Anonymous Symbol] 0x080040de Section 0 stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPLLMULFactorTable) - HAL_RCC_GetSysClockFreq.aPredivFactorTable 0x080040ee Data 2 stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPredivFactorTable) - [Anonymous Symbol] 0x080040ee Section 0 stm32f1xx_hal_rcc.o(.rodata.HAL_RCC_GetSysClockFreq.aPredivFactorTable) - charTable 0x080040f0 Data 106 segment.o(.rodata.charTable) - [Anonymous Symbol] 0x080040f0 Section 0 segment.o(.rodata.charTable) - .L.str.1 0x0800415a Data 7 menu.o(.rodata.str1.1) - [Anonymous Symbol] 0x0800415a Section 0 menu.o(.rodata.str1.1) - .L.str 0x08004161 Data 7 menu.o(.rodata.str1.1) - .L.str.2 0x08004168 Data 7 menu.o(.rodata.str1.1) - dutyValue 0x2000000c Data 1 clock_manager.o(.data.dutyValue) - [Anonymous Symbol] 0x2000000c Section 0 clock_manager.o(.data.dutyValue) - .bss 0x20000018 Section 96 libspace.o(.bss) - Menu_Process.lastClockUpdate 0x20000078 Data 4 menu.o(.bss.Menu_Process.lastClockUpdate) - [Anonymous Symbol] 0x20000078 Section 0 menu.o(.bss.Menu_Process.lastClockUpdate) - currentDigitTime 0x2000007c Data 4 segment.o(.bss.currentDigitTime) - [Anonymous Symbol] 0x2000007c Section 0 segment.o(.bss.currentDigitTime) - currentPos 0x20000080 Data 1 segment.o(.bss.currentPos) - [Anonymous Symbol] 0x20000080 Section 0 segment.o(.bss.currentPos) - currentPwmThreshold 0x20000084 Data 4 segment.o(.bss.currentPwmThreshold) - [Anonymous Symbol] 0x20000084 Section 0 segment.o(.bss.currentPwmThreshold) - currentTime 0x20000088 Data 3 clock_manager.o(.bss.currentTime) - [Anonymous Symbol] 0x20000088 Section 0 clock_manager.o(.bss.currentTime) - displayBuffer 0x2000008b Data 6 segment.o(.bss.displayBuffer) - [Anonymous Symbol] 0x2000008b Section 0 segment.o(.bss.displayBuffer) - pwmCounter 0x20000144 Data 4 segment.o(.bss.pwmCounter) - [Anonymous Symbol] 0x20000144 Section 0 segment.o(.bss.pwmCounter) - Heap_Mem 0x20000150 Data 512 startup_stm32f103xb.o(HEAP) - HEAP 0x20000150 Section 512 startup_stm32f103xb.o(HEAP) - Stack_Mem 0x20000350 Data 1024 startup_stm32f103xb.o(STACK) - STACK 0x20000350 Section 1024 startup_stm32f103xb.o(STACK) - __initial_sp 0x20000750 Data 0 startup_stm32f103xb.o(STACK) - - Global Symbols - - Symbol Name Value Ov Type Size Object(Section) - - BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$~IW$USESV6$~STKCKD$USESV7$~SHL$OSPACE$ROPI$EBA8$UX$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE - __fp_init_empty 0x00000000 Number 0 fpinit_empty.o ABSOLUTE - __ARM_exceptions_init - Undefined Weak Reference - __alloca_initialize - Undefined Weak Reference - __arm_preinit_ - Undefined Weak Reference - __arm_relocate_pie_ - Undefined Weak Reference - __cpp_initialize__aeabi_ - Undefined Weak Reference - __cxa_finalize - Undefined Weak Reference - __rt_locale - Undefined Weak Reference - __sigvec_lookup - Undefined Weak Reference - _atexit_init - Undefined Weak Reference - _call_atexit_fns - Undefined Weak Reference - _clock_init - Undefined Weak Reference - _fp_trap_init - Undefined Weak Reference - _fp_trap_shutdown - Undefined Weak Reference - _get_lc_collate - Undefined Weak Reference - _get_lc_ctype - Undefined Weak Reference - _get_lc_monetary - Undefined Weak Reference - _get_lc_numeric - Undefined Weak Reference - _get_lc_time - Undefined Weak Reference - _getenv_init - Undefined Weak Reference - _handle_redirection - Undefined Weak Reference - _init_alloc - Undefined Weak Reference - _init_user_alloc - Undefined Weak Reference - _initio - Undefined Weak Reference - _rand_init - Undefined Weak Reference - _signal_finish - Undefined Weak Reference - _signal_init - Undefined Weak Reference - _terminate_alloc - Undefined Weak Reference - _terminate_user_alloc - Undefined Weak Reference - _terminateio - Undefined Weak Reference - __Vectors_Size 0x000000ec Number 0 startup_stm32f103xb.o ABSOLUTE - __Vectors 0x08000000 Data 4 startup_stm32f103xb.o(RESET) - __Vectors_End 0x080000ec Data 0 startup_stm32f103xb.o(RESET) - __main 0x080000ed Thumb Code 8 __main.o(!!!main) - __scatterload 0x080000f5 Thumb Code 0 __scatter.o(!!!scatter) - __scatterload_rt2 0x080000f5 Thumb Code 44 __scatter.o(!!!scatter) - __scatterload_rt2_thumb_only 0x080000f5 Thumb Code 0 __scatter.o(!!!scatter) - __scatterload_null 0x08000103 Thumb Code 0 __scatter.o(!!!scatter) - __scatterload_copy 0x08000129 Thumb Code 26 __scatter_copy.o(!!handler_copy) - __scatterload_zeroinit 0x08000145 Thumb Code 28 __scatter_zi.o(!!handler_zi) - __rt_lib_init 0x08000161 Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000) - __rt_lib_init_alloca_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030) - __rt_lib_init_argv_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E) - __rt_lib_init_atexit_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D) - __rt_lib_init_clock_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023) - __rt_lib_init_cpp_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000034) - __rt_lib_init_exceptions_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032) - __rt_lib_init_fp_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002) - __rt_lib_init_fp_trap_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021) - __rt_lib_init_getenv_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025) - __rt_lib_init_heap_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C) - __rt_lib_init_lc_collate_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013) - __rt_lib_init_lc_ctype_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015) - __rt_lib_init_lc_monetary_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017) - __rt_lib_init_lc_numeric_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019) - __rt_lib_init_lc_time_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B) - __rt_lib_init_preinit_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000006) - __rt_lib_init_rand_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000010) - __rt_lib_init_relocate_pie_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000004) - __rt_lib_init_return 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000035) - __rt_lib_init_signal_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F) - __rt_lib_init_stdio_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000027) - __rt_lib_init_user_alloc_1 0x08000163 Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E) - __rt_lib_shutdown 0x08000165 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000) - __rt_lib_shutdown_cpp_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) - __rt_lib_shutdown_fp_trap_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000007) - __rt_lib_shutdown_heap_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) - __rt_lib_shutdown_return 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) - __rt_lib_shutdown_signal_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000A) - __rt_lib_shutdown_stdio_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) - __rt_lib_shutdown_user_alloc_1 0x08000167 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) - __rt_entry 0x08000169 Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000) - __rt_entry_presh_1 0x08000169 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002) - __rt_entry_sh 0x08000169 Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004) - __rt_entry_li 0x0800016f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) - __rt_entry_postsh_1 0x0800016f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009) - __rt_entry_main 0x08000173 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) - __rt_entry_postli_1 0x08000173 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) - __rt_exit 0x0800017b Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000) - __rt_exit_ls 0x0800017d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003) - __rt_exit_prels_1 0x0800017d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002) - __rt_exit_exit 0x08000181 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004) - Reset_Handler 0x08000189 Thumb Code 8 startup_stm32f103xb.o(.text) - ADC1_2_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - CAN1_RX1_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - CAN1_SCE_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel1_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel2_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel3_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel4_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel5_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel6_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - DMA1_Channel7_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI0_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI15_10_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI1_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI2_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI3_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI4_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - EXTI9_5_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - FLASH_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - I2C1_ER_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - I2C1_EV_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - I2C2_ER_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - I2C2_EV_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - PVD_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - RCC_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - RTC_Alarm_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - RTC_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - SPI1_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - SPI2_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TAMPER_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM1_BRK_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM1_CC_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM1_TRG_COM_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM1_UP_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM3_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - TIM4_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USART1_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USART2_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USART3_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USBWakeUp_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USB_HP_CAN1_TX_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - USB_LP_CAN1_RX0_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - WWDG_IRQHandler 0x080001a3 Thumb Code 0 startup_stm32f103xb.o(.text) - __user_initial_stackheap 0x080001a5 Thumb Code 0 startup_stm32f103xb.o(.text) - __aeabi_memclr4 0x080001c9 Thumb Code 0 rt_memclr_w.o(.text) - __aeabi_memclr8 0x080001c9 Thumb Code 0 rt_memclr_w.o(.text) - __rt_memclr_w 0x080001c9 Thumb Code 0 rt_memclr_w.o(.text) - _memset_w 0x080001cd Thumb Code 74 rt_memclr_w.o(.text) - __use_two_region_memory 0x08000217 Thumb Code 2 heapauxi.o(.text) - __rt_heap_escrow$2region 0x08000219 Thumb Code 2 heapauxi.o(.text) - __rt_heap_expand$2region 0x0800021b Thumb Code 2 heapauxi.o(.text) - __user_setup_stackheap 0x0800021d Thumb Code 74 sys_stackheap_outer.o(.text) - exit 0x08000267 Thumb Code 18 exit.o(.text) - __user_libspace 0x08000279 Thumb Code 8 libspace.o(.text) - __user_perproc_libspace 0x08000279 Thumb Code 0 libspace.o(.text) - __user_perthread_libspace 0x08000279 Thumb Code 0 libspace.o(.text) - _sys_exit 0x08000281 Thumb Code 8 sys_exit.o(.text) - __I$use$semihosting 0x0800028d Thumb Code 0 use_no_semi.o(.text) - __use_no_semihosting_swi 0x0800028d Thumb Code 2 use_no_semi.o(.text) - __semihosting_library_function 0x0800028f Thumb Code 0 indicate_semi.o(.text) - BusFault_Handler 0x08000291 Thumb Code 4 stm32f1xx_it.o(.text.BusFault_Handler) - ClockManager_GetDuty 0x08000295 Thumb Code 12 clock_manager.o(.text.ClockManager_GetDuty) - ClockManager_GetTime 0x080002a1 Thumb Code 84 clock_manager.o(.text.ClockManager_GetTime) - ClockManager_Init 0x080002f5 Thumb Code 62 clock_manager.o(.text.ClockManager_Init) - ClockManager_ResetTime 0x08000335 Thumb Code 14 clock_manager.o(.text.ClockManager_ResetTime) - ClockManager_SetDuty 0x08000345 Thumb Code 62 clock_manager.o(.text.ClockManager_SetDuty) - ClockManager_SetTime 0x08000385 Thumb Code 60 clock_manager.o(.text.ClockManager_SetTime) - DebugMon_Handler 0x080003c1 Thumb Code 2 stm32f1xx_it.o(.text.DebugMon_Handler) - DisableAllDigits 0x080006a9 Thumb Code 88 segment.o(.text.DisableAllDigits) - EnableDigit 0x08000701 Thumb Code 118 segment.o(.text.EnableDigit) - Error_Handler 0x08000779 Thumb Code 14 main.o(.text.Error_Handler) - HAL_GPIO_Init 0x08000879 Thumb Code 798 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_Init) - HAL_GPIO_ReadPin 0x08000b99 Thumb Code 46 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_ReadPin) - HAL_GPIO_WritePin 0x08000bc9 Thumb Code 46 stm32f1xx_hal_gpio.o(.text.HAL_GPIO_WritePin) - HAL_GetTick 0x08000bf9 Thumb Code 12 stm32f1xx_hal.o(.text.HAL_GetTick) - HAL_IncTick 0x08000c05 Thumb Code 26 stm32f1xx_hal.o(.text.HAL_IncTick) - HAL_Init 0x08000c21 Thumb Code 38 stm32f1xx_hal.o(.text.HAL_Init) - HAL_InitTick 0x08000c49 Thumb Code 112 stm32f1xx_hal.o(.text.HAL_InitTick) - HAL_MspInit 0x08000cb9 Thumb Code 100 stm32f1xx_hal_msp.o(.text.HAL_MspInit) - HAL_NVIC_EnableIRQ 0x08000d1d Thumb Code 20 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_EnableIRQ) - HAL_NVIC_SetPriority 0x08000d31 Thumb Code 50 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriority) - HAL_NVIC_SetPriorityGrouping 0x08000d65 Thumb Code 16 stm32f1xx_hal_cortex.o(.text.HAL_NVIC_SetPriorityGrouping) - HAL_PWR_EnableBkUpAccess 0x08000d75 Thumb Code 12 stm32f1xx_hal_pwr.o(.text.HAL_PWR_EnableBkUpAccess) - HAL_RCCEx_GetPeriphCLKFreq 0x08000d81 Thumb Code 406 stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_GetPeriphCLKFreq) - HAL_RCCEx_PeriphCLKConfig 0x08000f19 Thumb Code 456 stm32f1xx_hal_rcc_ex.o(.text.HAL_RCCEx_PeriphCLKConfig) - HAL_RCC_ClockConfig 0x080010e1 Thumb Code 598 stm32f1xx_hal_rcc.o(.text.HAL_RCC_ClockConfig) - HAL_RCC_GetHCLKFreq 0x08001339 Thumb Code 12 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetHCLKFreq) - HAL_RCC_GetPCLK2Freq 0x08001345 Thumb Code 34 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetPCLK2Freq) - HAL_RCC_GetSysClockFreq 0x08001369 Thumb Code 188 stm32f1xx_hal_rcc.o(.text.HAL_RCC_GetSysClockFreq) - HAL_RCC_OscConfig 0x08001425 Thumb Code 1658 stm32f1xx_hal_rcc.o(.text.HAL_RCC_OscConfig) - HAL_RTCEx_BKUPRead 0x08001aa1 Thumb Code 46 stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPRead) - HAL_RTCEx_BKUPWrite 0x08001ad1 Thumb Code 44 stm32f1xx_hal_rtc_ex.o(.text.HAL_RTCEx_BKUPWrite) - HAL_RTC_GetTime 0x08001afd Thumb Code 434 stm32f1xx_hal_rtc.o(.text.HAL_RTC_GetTime) - HAL_RTC_Init 0x08001cb1 Thumb Code 298 stm32f1xx_hal_rtc.o(.text.HAL_RTC_Init) - HAL_RTC_MspInit 0x08001ddd Thumb Code 76 rtc.o(.text.HAL_RTC_MspInit) - HAL_RTC_SetTime 0x08001e29 Thumb Code 322 stm32f1xx_hal_rtc.o(.text.HAL_RTC_SetTime) - HAL_RTC_WaitForSynchro 0x08001f6d Thumb Code 100 stm32f1xx_hal_rtc.o(.text.HAL_RTC_WaitForSynchro) - HAL_SYSTICK_Config 0x08001fd1 Thumb Code 16 stm32f1xx_hal_cortex.o(.text.HAL_SYSTICK_Config) - HAL_TIMEx_BreakCallback 0x08001fe1 Thumb Code 8 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_BreakCallback) - HAL_TIMEx_CommutCallback 0x08001fe9 Thumb Code 8 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_CommutCallback) - HAL_TIMEx_MasterConfigSynchronization 0x08001ff1 Thumb Code 220 stm32f1xx_hal_tim_ex.o(.text.HAL_TIMEx_MasterConfigSynchronization) - HAL_TIM_Base_Init 0x080020cd Thumb Code 156 stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Init) - HAL_TIM_Base_MspInit 0x08002169 Thumb Code 72 tim.o(.text.HAL_TIM_Base_MspInit) - HAL_TIM_Base_Start_IT 0x080021b1 Thumb Code 176 stm32f1xx_hal_tim.o(.text.HAL_TIM_Base_Start_IT) - HAL_TIM_ConfigClockSource 0x08002261 Thumb Code 388 stm32f1xx_hal_tim.o(.text.HAL_TIM_ConfigClockSource) - HAL_TIM_IC_CaptureCallback 0x080023e5 Thumb Code 8 stm32f1xx_hal_tim.o(.text.HAL_TIM_IC_CaptureCallback) - HAL_TIM_IRQHandler 0x080023ed Thumb Code 538 stm32f1xx_hal_tim.o(.text.HAL_TIM_IRQHandler) - HAL_TIM_OC_DelayElapsedCallback 0x08002609 Thumb Code 8 stm32f1xx_hal_tim.o(.text.HAL_TIM_OC_DelayElapsedCallback) - HAL_TIM_PWM_PulseFinishedCallback 0x08002611 Thumb Code 8 stm32f1xx_hal_tim.o(.text.HAL_TIM_PWM_PulseFinishedCallback) - HAL_TIM_PeriodElapsedCallback 0x08002619 Thumb Code 28 main.o(.text.HAL_TIM_PeriodElapsedCallback) - HAL_TIM_TriggerCallback 0x08002635 Thumb Code 8 stm32f1xx_hal_tim.o(.text.HAL_TIM_TriggerCallback) - HardFault_Handler 0x0800263d Thumb Code 4 stm32f1xx_it.o(.text.HardFault_Handler) - MX_GPIO_Init 0x08002901 Thumb Code 264 gpio.o(.text.MX_GPIO_Init) - MX_RTC_Init 0x08002a09 Thumb Code 48 rtc.o(.text.MX_RTC_Init) - MX_TIM2_Init 0x08002a39 Thumb Code 126 tim.o(.text.MX_TIM2_Init) - MemManage_Handler 0x08002ab9 Thumb Code 4 stm32f1xx_it.o(.text.MemManage_Handler) - Menu_Init 0x08002abd Thumb Code 104 menu.o(.text.Menu_Init) - Menu_Process 0x08002b25 Thumb Code 800 menu.o(.text.Menu_Process) - NMI_Handler 0x08002e45 Thumb Code 4 stm32f1xx_it.o(.text.NMI_Handler) - PendSV_Handler 0x08002f99 Thumb Code 2 stm32f1xx_it.o(.text.PendSV_Handler) - ReadButton 0x08003851 Thumb Code 140 main.o(.text.ReadButton) - SVC_Handler 0x080038dd Thumb Code 2 stm32f1xx_it.o(.text.SVC_Handler) - Segment_Init 0x080038fd Thumb Code 92 segment.o(.text.Segment_Init) - Segment_Process 0x08003959 Thumb Code 8 segment.o(.text.Segment_Process) - Segment_SetBrightness 0x08003961 Thumb Code 60 segment.o(.text.Segment_SetBrightness) - Segment_SetString 0x0800399d Thumb Code 84 segment.o(.text.Segment_SetString) - SysTick_Handler 0x08003af1 Thumb Code 8 stm32f1xx_it.o(.text.SysTick_Handler) - SystemClock_Config 0x08003af9 Thumb Code 148 main.o(.text.SystemClock_Config) - SystemInit 0x08003b8d Thumb Code 2 system_stm32f1xx.o(.text.SystemInit) - TIM2_IRQHandler 0x08003b91 Thumb Code 16 stm32f1xx_it.o(.text.TIM2_IRQHandler) - TIM_Base_SetConfig 0x08003ba1 Thumb Code 262 stm32f1xx_hal_tim.o(.text.TIM_Base_SetConfig) - TIM_ETR_SetConfig 0x08003ca9 Thumb Code 52 stm32f1xx_hal_tim.o(.text.TIM_ETR_SetConfig) - UsageFault_Handler 0x08003fb5 Thumb Code 4 stm32f1xx_it.o(.text.UsageFault_Handler) - main 0x08004079 Thumb Code 60 main.o(.text.main) - AHBPrescTable 0x080040b4 Data 16 system_stm32f1xx.o(.rodata.AHBPrescTable) - APBPrescTable 0x080040c4 Data 8 system_stm32f1xx.o(.rodata.APBPrescTable) - Region$$Table$$Base 0x08004170 Number 0 anon$$obj.o(Region$$Table) - Region$$Table$$Limit 0x08004190 Number 0 anon$$obj.o(Region$$Table) - GLOBAL_BRIGHTNESS 0x20000000 Data 1 segment.o(.data.GLOBAL_BRIGHTNESS) - REFRESH_RATE 0x20000004 Data 4 segment.o(.data.REFRESH_RATE) - SystemCoreClock 0x20000008 Data 4 system_stm32f1xx.o(.data.SystemCoreClock) - uwTickFreq 0x2000000d Data 1 stm32f1xx_hal.o(.data.uwTickFreq) - uwTickPrio 0x20000010 Data 4 stm32f1xx_hal.o(.data.uwTickPrio) - __libspace_start 0x20000018 Data 96 libspace.o(.bss) - __temporary_stack_top$libspace 0x20000078 Data 0 libspace.o(.bss) - hrtc 0x20000094 Data 20 rtc.o(.bss.hrtc) - htim2 0x200000a8 Data 72 tim.o(.bss.htim2) - menu 0x200000f0 Data 84 menu.o(.bss.menu) - rtc_time 0x20000148 Data 3 clock_manager.o(.bss.rtc_time) - uwTick 0x2000014c Data 4 stm32f1xx_hal.o(.bss.uwTick) - - - -============================================================================== - -Memory Map of the image - - Image Entry point : 0x080000ed - - Load Region LR_IROM1 (Base: 0x08000000, Size: 0x000041a8, Max: 0x00010000, ABSOLUTE) - - Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00004190, Max: 0x00010000, ABSOLUTE) - - Exec Addr Load Addr Size Type Attr Idx E Section Name Object - - 0x08000000 0x08000000 0x000000ec Data RO 3 RESET startup_stm32f103xb.o - 0x080000ec 0x080000ec 0x00000008 Code RO 1036 * !!!main c_w.l(__main.o) - 0x080000f4 0x080000f4 0x00000034 Code RO 1201 !!!scatter c_w.l(__scatter.o) - 0x08000128 0x08000128 0x0000001a Code RO 1203 !!handler_copy c_w.l(__scatter_copy.o) - 0x08000142 0x08000142 0x00000002 PAD - 0x08000144 0x08000144 0x0000001c Code RO 1205 !!handler_zi c_w.l(__scatter_zi.o) - 0x08000160 0x08000160 0x00000002 Code RO 1063 .ARM.Collect$$libinit$$00000000 c_w.l(libinit.o) - 0x08000162 0x08000162 0x00000000 Code RO 1070 .ARM.Collect$$libinit$$00000002 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1072 .ARM.Collect$$libinit$$00000004 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1074 .ARM.Collect$$libinit$$00000006 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1077 .ARM.Collect$$libinit$$0000000C c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1079 .ARM.Collect$$libinit$$0000000E c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1081 .ARM.Collect$$libinit$$00000010 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1084 .ARM.Collect$$libinit$$00000013 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1086 .ARM.Collect$$libinit$$00000015 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1088 .ARM.Collect$$libinit$$00000017 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1090 .ARM.Collect$$libinit$$00000019 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1092 .ARM.Collect$$libinit$$0000001B c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1094 .ARM.Collect$$libinit$$0000001D c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1096 .ARM.Collect$$libinit$$0000001F c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1098 .ARM.Collect$$libinit$$00000021 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1100 .ARM.Collect$$libinit$$00000023 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1102 .ARM.Collect$$libinit$$00000025 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1104 .ARM.Collect$$libinit$$00000027 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1108 .ARM.Collect$$libinit$$0000002E c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1110 .ARM.Collect$$libinit$$00000030 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1112 .ARM.Collect$$libinit$$00000032 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000000 Code RO 1114 .ARM.Collect$$libinit$$00000034 c_w.l(libinit2.o) - 0x08000162 0x08000162 0x00000002 Code RO 1115 .ARM.Collect$$libinit$$00000035 c_w.l(libinit2.o) - 0x08000164 0x08000164 0x00000002 Code RO 1137 .ARM.Collect$$libshutdown$$00000000 c_w.l(libshutdown.o) - 0x08000166 0x08000166 0x00000000 Code RO 1152 .ARM.Collect$$libshutdown$$00000002 c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000000 Code RO 1154 .ARM.Collect$$libshutdown$$00000004 c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000000 Code RO 1157 .ARM.Collect$$libshutdown$$00000007 c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000000 Code RO 1160 .ARM.Collect$$libshutdown$$0000000A c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000000 Code RO 1162 .ARM.Collect$$libshutdown$$0000000C c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000000 Code RO 1165 .ARM.Collect$$libshutdown$$0000000F c_w.l(libshutdown2.o) - 0x08000166 0x08000166 0x00000002 Code RO 1166 .ARM.Collect$$libshutdown$$00000010 c_w.l(libshutdown2.o) - 0x08000168 0x08000168 0x00000000 Code RO 1038 .ARM.Collect$$rtentry$$00000000 c_w.l(__rtentry.o) - 0x08000168 0x08000168 0x00000000 Code RO 1040 .ARM.Collect$$rtentry$$00000002 c_w.l(__rtentry2.o) - 0x08000168 0x08000168 0x00000006 Code RO 1052 .ARM.Collect$$rtentry$$00000004 c_w.l(__rtentry4.o) - 0x0800016e 0x0800016e 0x00000000 Code RO 1042 .ARM.Collect$$rtentry$$00000009 c_w.l(__rtentry2.o) - 0x0800016e 0x0800016e 0x00000004 Code RO 1043 .ARM.Collect$$rtentry$$0000000A c_w.l(__rtentry2.o) - 0x08000172 0x08000172 0x00000000 Code RO 1045 .ARM.Collect$$rtentry$$0000000C c_w.l(__rtentry2.o) - 0x08000172 0x08000172 0x00000008 Code RO 1046 .ARM.Collect$$rtentry$$0000000D c_w.l(__rtentry2.o) - 0x0800017a 0x0800017a 0x00000002 Code RO 1067 .ARM.Collect$$rtexit$$00000000 c_w.l(rtexit.o) - 0x0800017c 0x0800017c 0x00000000 Code RO 1117 .ARM.Collect$$rtexit$$00000002 c_w.l(rtexit2.o) - 0x0800017c 0x0800017c 0x00000004 Code RO 1118 .ARM.Collect$$rtexit$$00000003 c_w.l(rtexit2.o) - 0x08000180 0x08000180 0x00000006 Code RO 1119 .ARM.Collect$$rtexit$$00000004 c_w.l(rtexit2.o) - 0x08000186 0x08000186 0x00000002 PAD - 0x08000188 0x08000188 0x00000040 Code RO 4 .text startup_stm32f103xb.o - 0x080001c8 0x080001c8 0x0000004e Code RO 1032 .text c_w.l(rt_memclr_w.o) - 0x08000216 0x08000216 0x00000006 Code RO 1034 .text c_w.l(heapauxi.o) - 0x0800021c 0x0800021c 0x0000004a Code RO 1054 .text c_w.l(sys_stackheap_outer.o) - 0x08000266 0x08000266 0x00000012 Code RO 1056 .text c_w.l(exit.o) - 0x08000278 0x08000278 0x00000008 Code RO 1064 .text c_w.l(libspace.o) - 0x08000280 0x08000280 0x0000000c Code RO 1127 .text c_w.l(sys_exit.o) - 0x0800028c 0x0800028c 0x00000002 Code RO 1142 .text c_w.l(use_no_semi.o) - 0x0800028e 0x0800028e 0x00000000 Code RO 1144 .text c_w.l(indicate_semi.o) - 0x0800028e 0x0800028e 0x00000002 PAD - 0x08000290 0x08000290 0x00000004 Code RO 71 .text.BusFault_Handler stm32f1xx_it.o - 0x08000294 0x08000294 0x0000000c Code RO 949 .text.ClockManager_GetDuty clock_manager.o - 0x080002a0 0x080002a0 0x00000054 Code RO 945 .text.ClockManager_GetTime clock_manager.o - 0x080002f4 0x080002f4 0x0000003e Code RO 939 .text.ClockManager_Init clock_manager.o - 0x08000332 0x08000332 0x00000002 PAD - 0x08000334 0x08000334 0x0000000e Code RO 943 .text.ClockManager_ResetTime clock_manager.o - 0x08000342 0x08000342 0x00000002 PAD - 0x08000344 0x08000344 0x0000003e Code RO 951 .text.ClockManager_SetDuty clock_manager.o - 0x08000382 0x08000382 0x00000002 PAD - 0x08000384 0x08000384 0x0000003c Code RO 947 .text.ClockManager_SetTime clock_manager.o - 0x080003c0 0x080003c0 0x00000002 Code RO 77 .text.DebugMon_Handler stm32f1xx_it.o - 0x080003c2 0x080003c2 0x00000002 PAD - 0x080003c4 0x080003c4 0x000002e4 Code RO 979 .text.DecreaseTimeDigit menu.o - 0x080006a8 0x080006a8 0x00000058 Code RO 992 .text.DisableAllDigits segment.o - 0x08000700 0x08000700 0x00000076 Code RO 994 .text.EnableDigit segment.o - 0x08000776 0x08000776 0x00000002 PAD - 0x08000778 0x08000778 0x0000000e Code RO 19 .text.Error_Handler main.o - 0x08000786 0x08000786 0x00000002 PAD - 0x08000788 0x08000788 0x00000092 Code RO 975 .text.FormatTime menu.o - 0x0800081a 0x0800081a 0x00000002 PAD - 0x0800081c 0x0800081c 0x0000005c Code RO 1002 .text.GetCharMask segment.o - 0x08000878 0x08000878 0x0000031e Code RO 325 .text.HAL_GPIO_Init stm32f1xx_hal_gpio.o - 0x08000b96 0x08000b96 0x00000002 PAD - 0x08000b98 0x08000b98 0x0000002e Code RO 329 .text.HAL_GPIO_ReadPin stm32f1xx_hal_gpio.o - 0x08000bc6 0x08000bc6 0x00000002 PAD - 0x08000bc8 0x08000bc8 0x0000002e Code RO 331 .text.HAL_GPIO_WritePin stm32f1xx_hal_gpio.o - 0x08000bf6 0x08000bf6 0x00000002 PAD - 0x08000bf8 0x08000bf8 0x0000000c Code RO 223 .text.HAL_GetTick stm32f1xx_hal.o - 0x08000c04 0x08000c04 0x0000001a Code RO 221 .text.HAL_IncTick stm32f1xx_hal.o - 0x08000c1e 0x08000c1e 0x00000002 PAD - 0x08000c20 0x08000c20 0x00000026 Code RO 211 .text.HAL_Init stm32f1xx_hal.o - 0x08000c46 0x08000c46 0x00000002 PAD - 0x08000c48 0x08000c48 0x00000070 Code RO 213 .text.HAL_InitTick stm32f1xx_hal.o - 0x08000cb8 0x08000cb8 0x00000064 Code RO 92 .text.HAL_MspInit stm32f1xx_hal_msp.o - 0x08000d1c 0x08000d1c 0x00000014 Code RO 393 .text.HAL_NVIC_EnableIRQ stm32f1xx_hal_cortex.o - 0x08000d30 0x08000d30 0x00000032 Code RO 385 .text.HAL_NVIC_SetPriority stm32f1xx_hal_cortex.o - 0x08000d62 0x08000d62 0x00000002 PAD - 0x08000d64 0x08000d64 0x00000010 Code RO 381 .text.HAL_NVIC_SetPriorityGrouping stm32f1xx_hal_cortex.o - 0x08000d74 0x08000d74 0x0000000c Code RO 448 .text.HAL_PWR_EnableBkUpAccess stm32f1xx_hal_pwr.o - 0x08000d80 0x08000d80 0x00000196 Code RO 314 .text.HAL_RCCEx_GetPeriphCLKFreq stm32f1xx_hal_rcc_ex.o - 0x08000f16 0x08000f16 0x00000002 PAD - 0x08000f18 0x08000f18 0x000001c8 Code RO 310 .text.HAL_RCCEx_PeriphCLKConfig stm32f1xx_hal_rcc_ex.o - 0x080010e0 0x080010e0 0x00000256 Code RO 277 .text.HAL_RCC_ClockConfig stm32f1xx_hal_rcc.o - 0x08001336 0x08001336 0x00000002 PAD - 0x08001338 0x08001338 0x0000000c Code RO 287 .text.HAL_RCC_GetHCLKFreq stm32f1xx_hal_rcc.o - 0x08001344 0x08001344 0x00000022 Code RO 291 .text.HAL_RCC_GetPCLK2Freq stm32f1xx_hal_rcc.o - 0x08001366 0x08001366 0x00000002 PAD - 0x08001368 0x08001368 0x000000bc Code RO 279 .text.HAL_RCC_GetSysClockFreq stm32f1xx_hal_rcc.o - 0x08001424 0x08001424 0x0000067a Code RO 273 .text.HAL_RCC_OscConfig stm32f1xx_hal_rcc.o - 0x08001a9e 0x08001a9e 0x00000002 PAD - 0x08001aa0 0x08001aa0 0x0000002e Code RO 200 .text.HAL_RTCEx_BKUPRead stm32f1xx_hal_rtc_ex.o - 0x08001ace 0x08001ace 0x00000002 PAD - 0x08001ad0 0x08001ad0 0x0000002c Code RO 198 .text.HAL_RTCEx_BKUPWrite stm32f1xx_hal_rtc_ex.o - 0x08001afc 0x08001afc 0x000001b2 Code RO 137 .text.HAL_RTC_GetTime stm32f1xx_hal_rtc.o - 0x08001cae 0x08001cae 0x00000002 PAD - 0x08001cb0 0x08001cb0 0x0000012a Code RO 113 .text.HAL_RTC_Init stm32f1xx_hal_rtc.o - 0x08001dda 0x08001dda 0x00000002 PAD - 0x08001ddc 0x08001ddc 0x0000004c Code RO 39 .text.HAL_RTC_MspInit rtc.o - 0x08001e28 0x08001e28 0x00000142 Code RO 127 .text.HAL_RTC_SetTime stm32f1xx_hal_rtc.o - 0x08001f6a 0x08001f6a 0x00000002 PAD - 0x08001f6c 0x08001f6c 0x00000064 Code RO 117 .text.HAL_RTC_WaitForSynchro stm32f1xx_hal_rtc.o - 0x08001fd0 0x08001fd0 0x00000010 Code RO 405 .text.HAL_SYSTICK_Config stm32f1xx_hal_cortex.o - 0x08001fe0 0x08001fe0 0x00000008 Code RO 912 .text.HAL_TIMEx_BreakCallback stm32f1xx_hal_tim_ex.o - 0x08001fe8 0x08001fe8 0x00000008 Code RO 908 .text.HAL_TIMEx_CommutCallback stm32f1xx_hal_tim_ex.o - 0x08001ff0 0x08001ff0 0x000000dc Code RO 902 .text.HAL_TIMEx_MasterConfigSynchronization stm32f1xx_hal_tim_ex.o - 0x080020cc 0x080020cc 0x0000009c Code RO 589 .text.HAL_TIM_Base_Init stm32f1xx_hal_tim.o - 0x08002168 0x08002168 0x00000048 Code RO 53 .text.HAL_TIM_Base_MspInit tim.o - 0x080021b0 0x080021b0 0x000000b0 Code RO 603 .text.HAL_TIM_Base_Start_IT stm32f1xx_hal_tim.o - 0x08002260 0x08002260 0x00000184 Code RO 781 .text.HAL_TIM_ConfigClockSource stm32f1xx_hal_tim.o - 0x080023e4 0x080023e4 0x00000008 Code RO 725 .text.HAL_TIM_IC_CaptureCallback stm32f1xx_hal_tim.o - 0x080023ec 0x080023ec 0x0000021a Code RO 723 .text.HAL_TIM_IRQHandler stm32f1xx_hal_tim.o - 0x08002606 0x08002606 0x00000002 PAD - 0x08002608 0x08002608 0x00000008 Code RO 727 .text.HAL_TIM_OC_DelayElapsedCallback stm32f1xx_hal_tim.o - 0x08002610 0x08002610 0x00000008 Code RO 729 .text.HAL_TIM_PWM_PulseFinishedCallback stm32f1xx_hal_tim.o - 0x08002618 0x08002618 0x0000001c Code RO 13 .text.HAL_TIM_PeriodElapsedCallback main.o - 0x08002634 0x08002634 0x00000008 Code RO 733 .text.HAL_TIM_TriggerCallback stm32f1xx_hal_tim.o - 0x0800263c 0x0800263c 0x00000004 Code RO 67 .text.HardFault_Handler stm32f1xx_it.o - 0x08002640 0x08002640 0x0000027e Code RO 977 .text.IncreaseTimeDigit menu.o - 0x080028be 0x080028be 0x00000002 PAD - 0x080028c0 0x080028c0 0x00000040 Code RO 941 .text.LoadDuty clock_manager.o - 0x08002900 0x08002900 0x00000108 Code RO 29 .text.MX_GPIO_Init gpio.o - 0x08002a08 0x08002a08 0x00000030 Code RO 37 .text.MX_RTC_Init rtc.o - 0x08002a38 0x08002a38 0x0000007e Code RO 51 .text.MX_TIM2_Init tim.o - 0x08002ab6 0x08002ab6 0x00000002 PAD - 0x08002ab8 0x08002ab8 0x00000004 Code RO 69 .text.MemManage_Handler stm32f1xx_it.o - 0x08002abc 0x08002abc 0x00000068 Code RO 965 .text.Menu_Init menu.o - 0x08002b24 0x08002b24 0x00000320 Code RO 967 .text.Menu_Process menu.o - 0x08002e44 0x08002e44 0x00000004 Code RO 65 .text.NMI_Handler stm32f1xx_it.o - 0x08002e48 0x08002e48 0x0000006c Code RO 391 .text.NVIC_EncodePriority stm32f1xx_hal_cortex.o - 0x08002eb4 0x08002eb4 0x000000e2 Code RO 998 .text.NextDigit segment.o - 0x08002f96 0x08002f96 0x00000002 PAD - 0x08002f98 0x08002f98 0x00000002 Code RO 79 .text.PendSV_Handler stm32f1xx_it.o - 0x08002f9a 0x08002f9a 0x00000002 PAD - 0x08002f9c 0x08002f9c 0x00000350 Code RO 971 .text.ProcessButton menu.o - 0x080032ec 0x080032ec 0x0000003a Code RO 275 .text.RCC_Delay stm32f1xx_hal_rcc.o - 0x08003326 0x08003326 0x00000002 PAD - 0x08003328 0x08003328 0x0000002a Code RO 129 .text.RTC_Bcd2ToByte stm32f1xx_hal_rtc.o - 0x08003352 0x08003352 0x00000002 PAD - 0x08003354 0x08003354 0x0000003a Code RO 143 .text.RTC_ByteToBcd2 stm32f1xx_hal_rtc.o - 0x0800338e 0x0800338e 0x00000002 PAD - 0x08003390 0x08003390 0x00000172 Code RO 141 .text.RTC_DateUpdate stm32f1xx_hal_rtc.o - 0x08003502 0x08003502 0x00000002 PAD - 0x08003504 0x08003504 0x00000056 Code RO 119 .text.RTC_EnterInitMode stm32f1xx_hal_rtc.o - 0x0800355a 0x0800355a 0x00000002 PAD - 0x0800355c 0x0800355c 0x00000056 Code RO 121 .text.RTC_ExitInitMode stm32f1xx_hal_rtc.o - 0x080035b2 0x080035b2 0x00000002 PAD - 0x080035b4 0x080035b4 0x00000078 Code RO 167 .text.RTC_IsLeapYear stm32f1xx_hal_rtc.o - 0x0800362c 0x0800362c 0x00000032 Code RO 133 .text.RTC_ReadAlarmCounter stm32f1xx_hal_rtc.o - 0x0800365e 0x0800365e 0x00000002 PAD - 0x08003660 0x08003660 0x0000006a Code RO 139 .text.RTC_ReadTimeCounter stm32f1xx_hal_rtc.o - 0x080036ca 0x080036ca 0x00000002 PAD - 0x080036cc 0x080036cc 0x000000e2 Code RO 147 .text.RTC_WeekDayNum stm32f1xx_hal_rtc.o - 0x080037ae 0x080037ae 0x00000002 PAD - 0x080037b0 0x080037b0 0x00000050 Code RO 135 .text.RTC_WriteAlarmCounter stm32f1xx_hal_rtc.o - 0x08003800 0x08003800 0x00000050 Code RO 131 .text.RTC_WriteTimeCounter stm32f1xx_hal_rtc.o - 0x08003850 0x08003850 0x0000008c Code RO 11 .text.ReadButton main.o - 0x080038dc 0x080038dc 0x00000002 Code RO 75 .text.SVC_Handler stm32f1xx_it.o - 0x080038de 0x080038de 0x00000002 PAD - 0x080038e0 0x080038e0 0x0000001c Code RO 953 .text.SaveDuty clock_manager.o - 0x080038fc 0x080038fc 0x0000005c Code RO 996 .text.Segment_Init segment.o - 0x08003958 0x08003958 0x00000008 Code RO 1010 .text.Segment_Process segment.o - 0x08003960 0x08003960 0x0000003c Code RO 1008 .text.Segment_SetBrightness segment.o - 0x0800399c 0x0800399c 0x00000054 Code RO 1006 .text.Segment_SetString segment.o - 0x080039f0 0x080039f0 0x000000aa Code RO 1014 .text.SetSegments segment.o - 0x08003a9a 0x08003a9a 0x00000002 PAD - 0x08003a9c 0x08003a9c 0x00000052 Code RO 407 .text.SysTick_Config stm32f1xx_hal_cortex.o - 0x08003aee 0x08003aee 0x00000002 PAD - 0x08003af0 0x08003af0 0x00000008 Code RO 81 .text.SysTick_Handler stm32f1xx_it.o - 0x08003af8 0x08003af8 0x00000094 Code RO 17 .text.SystemClock_Config main.o - 0x08003b8c 0x08003b8c 0x00000002 Code RO 925 .text.SystemInit system_stm32f1xx.o - 0x08003b8e 0x08003b8e 0x00000002 PAD - 0x08003b90 0x08003b90 0x00000010 Code RO 83 .text.TIM2_IRQHandler stm32f1xx_it.o - 0x08003ba0 0x08003ba0 0x00000106 Code RO 593 .text.TIM_Base_SetConfig stm32f1xx_hal_tim.o - 0x08003ca6 0x08003ca6 0x00000002 PAD - 0x08003ca8 0x08003ca8 0x00000034 Code RO 779 .text.TIM_ETR_SetConfig stm32f1xx_hal_tim.o - 0x08003cdc 0x08003cdc 0x0000002a Code RO 785 .text.TIM_ITRx_SetConfig stm32f1xx_hal_tim.o - 0x08003d06 0x08003d06 0x00000002 PAD - 0x08003d08 0x08003d08 0x00000050 Code RO 783 .text.TIM_TI1_ConfigInputStage stm32f1xx_hal_tim.o - 0x08003d58 0x08003d58 0x00000052 Code RO 787 .text.TIM_TI2_ConfigInputStage stm32f1xx_hal_tim.o - 0x08003daa 0x08003daa 0x00000002 PAD - 0x08003dac 0x08003dac 0x00000146 Code RO 969 .text.UpdateDisplay menu.o - 0x08003ef2 0x08003ef2 0x00000002 PAD - 0x08003ef4 0x08003ef4 0x000000c0 Code RO 1012 .text.UpdateOneDigit segment.o - 0x08003fb4 0x08003fb4 0x00000004 Code RO 73 .text.UsageFault_Handler stm32f1xx_it.o - 0x08003fb8 0x08003fb8 0x00000030 Code RO 395 .text.__NVIC_EnableIRQ stm32f1xx_hal_cortex.o - 0x08003fe8 0x08003fe8 0x00000010 Code RO 387 .text.__NVIC_GetPriorityGrouping stm32f1xx_hal_cortex.o - 0x08003ff8 0x08003ff8 0x00000042 Code RO 389 .text.__NVIC_SetPriority stm32f1xx_hal_cortex.o - 0x0800403a 0x0800403a 0x00000002 PAD - 0x0800403c 0x0800403c 0x0000003c Code RO 383 .text.__NVIC_SetPriorityGrouping stm32f1xx_hal_cortex.o - 0x08004078 0x08004078 0x0000003c Code RO 15 .text.main main.o - 0x080040b4 0x080040b4 0x00000010 Data RO 930 .rodata.AHBPrescTable system_stm32f1xx.o - 0x080040c4 0x080040c4 0x00000008 Data RO 931 .rodata.APBPrescTable system_stm32f1xx.o - 0x080040cc 0x080040cc 0x00000010 Data RO 316 .rodata.HAL_RCCEx_GetPeriphCLKFreq.aPLLMULFactorTable stm32f1xx_hal_rcc_ex.o - 0x080040dc 0x080040dc 0x00000002 Data RO 317 .rodata.HAL_RCCEx_GetPeriphCLKFreq.aPredivFactorTable stm32f1xx_hal_rcc_ex.o - 0x080040de 0x080040de 0x00000010 Data RO 301 .rodata.HAL_RCC_GetSysClockFreq.aPLLMULFactorTable stm32f1xx_hal_rcc.o - 0x080040ee 0x080040ee 0x00000002 Data RO 302 .rodata.HAL_RCC_GetSysClockFreq.aPredivFactorTable stm32f1xx_hal_rcc.o - 0x080040f0 0x080040f0 0x0000006a Data RO 1023 .rodata.charTable segment.o - 0x0800415a 0x0800415a 0x00000015 Data RO 983 .rodata.str1.1 menu.o - 0x0800416f 0x0800416f 0x00000001 PAD - 0x08004170 0x08004170 0x00000020 Data RO 1200 Region$$Table anon$$obj.o - - - Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08004190, Size: 0x00000750, Max: 0x00005000, ABSOLUTE) - - Exec Addr Load Addr Size Type Attr Idx E Section Name Object - - 0x20000000 0x08004190 0x00000001 Data RW 1017 .data.GLOBAL_BRIGHTNESS segment.o - 0x20000001 0x08004191 0x00000003 PAD - 0x20000004 0x08004194 0x00000004 Data RW 1016 .data.REFRESH_RATE segment.o - 0x20000008 0x08004198 0x00000004 Data RW 929 .data.SystemCoreClock system_stm32f1xx.o - 0x2000000c 0x0800419c 0x00000001 Data RW 955 .data.dutyValue clock_manager.o - 0x2000000d 0x0800419d 0x00000001 Data RW 262 .data.uwTickFreq stm32f1xx_hal.o - 0x2000000e 0x0800419e 0x00000002 PAD - 0x20000010 0x080041a0 0x00000004 Data RW 261 .data.uwTickPrio stm32f1xx_hal.o - 0x20000014 0x080041a4 0x00000004 PAD - 0x20000018 - 0x00000060 Zero RW 1065 .bss c_w.l(libspace.o) - 0x20000078 - 0x00000004 Zero RW 982 .bss.Menu_Process.lastClockUpdate menu.o - 0x2000007c - 0x00000004 Zero RW 1020 .bss.currentDigitTime segment.o - 0x20000080 - 0x00000001 Zero RW 1018 .bss.currentPos segment.o - 0x20000081 0x080041a4 0x00000003 PAD - 0x20000084 - 0x00000004 Zero RW 1021 .bss.currentPwmThreshold segment.o - 0x20000088 - 0x00000003 Zero RW 957 .bss.currentTime clock_manager.o - 0x2000008b - 0x00000006 Zero RW 1022 .bss.displayBuffer segment.o - 0x20000091 0x080041a4 0x00000003 PAD - 0x20000094 - 0x00000014 Zero RW 43 .bss.hrtc rtc.o - 0x200000a8 - 0x00000048 Zero RW 57 .bss.htim2 tim.o - 0x200000f0 - 0x00000054 Zero RW 981 .bss.menu menu.o - 0x20000144 - 0x00000004 Zero RW 1019 .bss.pwmCounter segment.o - 0x20000148 - 0x00000003 Zero RW 956 .bss.rtc_time clock_manager.o - 0x2000014b 0x080041a4 0x00000001 PAD - 0x2000014c - 0x00000004 Zero RW 263 .bss.uwTick stm32f1xx_hal.o - 0x20000150 - 0x00000200 Zero RW 2 HEAP startup_stm32f103xb.o - 0x20000350 - 0x00000400 Zero RW 1 STACK startup_stm32f103xb.o - - -============================================================================== - -Image component sizes - - - Code (inc. data) RO Data RW Data ZI Data Debug Object Name - - 386 0 0 1 6 2046 clock_manager.o - 264 0 0 0 0 1528 gpio.o - 390 4 0 0 0 5154 main.o - 3602 38 21 0 88 5067 menu.o - 124 0 0 0 20 2316 rtc.o - 1130 6 106 5 19 3275 segment.o - 64 26 236 0 1536 768 startup_stm32f103xb.o - 188 0 0 5 4 5523 stm32f1xx_hal.o - 482 0 0 0 0 7474 stm32f1xx_hal_cortex.o - 890 0 0 0 0 4178 stm32f1xx_hal_gpio.o - 100 0 0 0 0 1162 stm32f1xx_hal_msp.o - 12 0 0 0 0 3941 stm32f1xx_hal_pwr.o - 2548 0 18 0 0 7374 stm32f1xx_hal_rcc.o - 862 0 18 0 0 3081 stm32f1xx_hal_rcc_ex.o - 2458 0 0 0 0 10275 stm32f1xx_hal_rtc.o - 90 0 0 0 0 4891 stm32f1xx_hal_rtc_ex.o - 1808 0 0 0 0 35453 stm32f1xx_hal_tim.o - 236 0 0 0 0 14995 stm32f1xx_hal_tim_ex.o - 50 0 0 0 0 1077 stm32f1xx_it.o - 2 0 24 4 0 1533 system_stm32f1xx.o - 198 0 0 0 72 5519 tim.o - - ---------------------------------------------------------------------- - 15972 74 456 20 1756 126630 Object Totals - 0 0 32 0 0 0 (incl. Generated) - 88 0 1 5 11 0 (incl. Padding) - - ---------------------------------------------------------------------- - - Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name - - 8 0 0 0 0 68 __main.o - 0 0 0 0 0 0 __rtentry.o - 12 0 0 0 0 0 __rtentry2.o - 6 0 0 0 0 0 __rtentry4.o - 52 8 0 0 0 0 __scatter.o - 26 0 0 0 0 0 __scatter_copy.o - 28 0 0 0 0 0 __scatter_zi.o - 18 0 0 0 0 80 exit.o - 6 0 0 0 0 152 heapauxi.o - 0 0 0 0 0 0 indicate_semi.o - 2 0 0 0 0 0 libinit.o - 2 0 0 0 0 0 libinit2.o - 2 0 0 0 0 0 libshutdown.o - 2 0 0 0 0 0 libshutdown2.o - 8 4 0 0 96 68 libspace.o - 78 0 0 0 0 80 rt_memclr_w.o - 2 0 0 0 0 0 rtexit.o - 10 0 0 0 0 0 rtexit2.o - 12 4 0 0 0 68 sys_exit.o - 74 0 0 0 0 80 sys_stackheap_outer.o - 2 0 0 0 0 68 use_no_semi.o - - ---------------------------------------------------------------------- - 356 16 0 0 96 664 Library Totals - 6 0 0 0 0 0 (incl. Padding) - - ---------------------------------------------------------------------- - - Code (inc. data) RO Data RW Data ZI Data Debug Library Name - - 350 16 0 0 96 664 c_w.l - - ---------------------------------------------------------------------- - 356 16 0 0 96 664 Library Totals - - ---------------------------------------------------------------------- - -============================================================================== - - - Code (inc. data) RO Data RW Data ZI Data Debug - - 16328 90 456 20 1852 126754 Grand Totals - 16328 90 456 20 1852 126754 ELF Image Totals - 16328 90 456 20 0 0 ROM Totals - -============================================================================== - - Total RO Size (Code + RO Data) 16784 ( 16.39kB) - Total RW Size (RW Data + ZI Data) 1872 ( 1.83kB) - Total ROM Size (Code + RO Data + RW Data) 16804 ( 16.41kB) - -============================================================================== - diff --git a/MDK-ARM/lamp/lamp.sct b/MDK-ARM/lamp/lamp.sct deleted file mode 100644 index 09aa1bd..0000000 --- a/MDK-ARM/lamp/lamp.sct +++ /dev/null @@ -1,16 +0,0 @@ -; ************************************************************* -; *** Scatter-Loading Description File generated by uVision *** -; ************************************************************* - -LR_IROM1 0x08000000 0x00010000 { ; load region size_region - ER_IROM1 0x08000000 0x00010000 { ; load address = execution address - *.o (RESET, +First) - *(InRoot$$Sections) - .ANY (+RO) - .ANY (+XO) - } - RW_IRAM1 0x20000000 0x00005000 { ; RW data - .ANY (+RW +ZI) - } -} - diff --git a/MDK-ARM/lamp/lamp_lamp.dep b/MDK-ARM/lamp/lamp_lamp.dep deleted file mode 100644 index f3d87ae..0000000 --- a/MDK-ARM/lamp/lamp_lamp.dep +++ /dev/null @@ -1,812 +0,0 @@ -Dependencies for Project 'lamp', Target 'lamp': (DO NOT MODIFY !) -CompilerVersion: 6190000::V6.19::ARMCLANG -F (startup_stm32f103xb.s)(0x69D82531)(--target=arm-arm-none-eabi -mcpu=cortex-m3 -masm=auto -Wa,armasm,--diag_suppress=A1950W -c -gdwarf-4 -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 538" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F10X_MD SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o lamp/startup_stm32f103xb.o) -F (..\Drivers\CMSIS\Device\ST\STM32F1xx\Source\Templates\arm\startup_stm32f101x6.s)(0x69B5324B)(--target=arm-arm-none-eabi -mcpu=cortex-m3 -masm=auto -Wa,armasm,--diag_suppress=A1950W -c -gdwarf-4 -I./RTE/_lamp -IC:/Users/I/AppData/Local/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IC:/Users/I/AppData/Local/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -Wa,armasm,--pd,"__UVISION_VERSION SETA 538" -Wa,armasm,--pd,"_RTE_ SETA 1" -Wa,armasm,--pd,"STM32F10X_MD SETA 1" -Wa,armasm,--pd,"_RTE_ SETA 1" -o lamp/startup_stm32f101x6.o) -F (../Core/Src/main.c)(0x69D82431)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/main.o -MD) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -I (..\Core\Inc\rtc.h)(0x69D80225) -I (..\Core\Inc\tim.h)(0x69D80714) -I (..\Core\Inc\gpio.h)(0x69C71D58) -I (..\Core\Clock\clock_manager.h)(0x69D8077D) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x63888F58) -I (..\Core\Clock\menu.h)(0x69D81C5E) -I (..\Core\Clock\segment.h)(0x69D7FCE1) -F (../Core/Src/gpio.c)(0x69D82530)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/gpio.o -MD) -I (..\Core\Inc\gpio.h)(0x69C71D58) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Core/Src/rtc.c)(0x69D80225)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/rtc.o -MD) -I (..\Core\Inc\rtc.h)(0x69D80225) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Core/Src/tim.c)(0x69D807C0)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/tim.o -MD) -I (..\Core\Inc\tim.h)(0x69D80714) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Core/Src/stm32f1xx_it.c)(0x69D80714)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_it.o -MD) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_it.h)(0x69D80714) -I (..\Core\Clock\segment.h)(0x69D7FCE1) -F (../Core/Src/stm32f1xx_hal_msp.c)(0x69CA699A)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_msp.o -MD) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio_ex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_gpio_ex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rtc.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_rtc.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rtc_ex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_rtc_ex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_rcc.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_rcc_ex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_rcc_ex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_gpio.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_gpio.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_dma.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_dma.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_cortex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_cortex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_pwr.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_pwr.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_flash.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_flash_ex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_flash_ex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_exti.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_exti.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_tim.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Drivers/STM32F1xx_HAL_Driver/Src/stm32f1xx_hal_tim_ex.c)(0x69B5324B)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/stm32f1xx_hal_tim_ex.o -MD) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (../Core/Src/system_stm32f1xx.c)(0x69B5324C)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/system_stm32f1xx.o -MD) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (..\Core\Clock\clock_manager.c)(0x69D8077D)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/clock_manager.o -MD) -I (..\Core\Clock\clock_manager.h)(0x69D8077D) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x63888F58) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -I (..\Core\Clock\segment.h)(0x69D7FCE1) -I (..\Core\Inc\rtc.h)(0x69D80225) -F (..\Core\Clock\clock_manager.h)(0x69D8077D)() -F (..\Core\Clock\menu.c)(0x69D827CA)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/menu.o -MD) -I (..\Core\Clock\menu.h)(0x69D81C5E) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdbool.h)(0x63888F58) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -I (..\Core\Clock\segment.h)(0x69D7FCE1) -I (..\Core\Clock\clock_manager.h)(0x69D8077D) -F (..\Core\Clock\menu.h)(0x69D81C5E)() -F (..\Core\Clock\segment.c)(0x69D82B04)(-xc -std=c99 --target=arm-arm-none-eabi -mcpu=cortex-m3 -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar -gdwarf-4 -O0 -ffunction-sections -Wno-packed -Wno-missing-variable-declarations -Wno-missing-prototypes -Wno-missing-noreturn -Wno-sign-conversion -Wno-nonportable-include-path -Wno-reserved-id-macro -Wno-unused-macros -Wno-documentation-unknown-command -Wno-documentation -Wno-license-management -Wno-parentheses-equality -Wno-reserved-identifier -I ../Core/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc -I ../Drivers/STM32F1xx_HAL_Driver/Inc/Legacy -I ../Drivers/CMSIS/Device/ST/STM32F1xx/Include -I ../Drivers/CMSIS/Include -I ../Core/Clock -I./RTE/_lamp -IE:/Arm/Packs/ARM/CMSIS/5.9.0/CMSIS/Core/Include -IE:/Arm/Packs/Keil/STM32F1xx_DFP/2.4.0/Device/Include -D__UVISION_VERSION="538" -D_RTE_ -DSTM32F10X_MD -D_RTE_ -DUSE_HAL_DRIVER -DSTM32F103xB -o lamp/segment.o -MD) -I (..\Core\Clock\segment.h)(0x69D7FCE1) -I (E:\Keil_v5\ARM\ARMCLANG\include\stdint.h)(0x63888F58) -I (..\Core\Inc\main.h)(0x69D82530) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h)(0x69B5324B) -I (..\Core\Inc\stm32f1xx_hal_conf.h)(0x69D80714) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h)(0x69B5324B) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h)(0x69B5324B) -I (..\Drivers\CMSIS\Include\core_cm3.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_version.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_compiler.h)(0x69B53242) -I (..\Drivers\CMSIS\Include\cmsis_armclang.h)(0x69B53242) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_compat.h)(0x69BE4963) -I (E:\Keil_v5\ARM\ARMCLANG\include\arm_acle.h)(0x63888F58) -I (..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h)(0x69B5324B) -I (E:\Keil_v5\ARM\ARMCLANG\include\stddef.h)(0x63888F58) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h)(0x69B5324B) -I (..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h)(0x69B5324B) -F (..\Core\Clock\segment.h)(0x69D7FCE1)() diff --git a/MDK-ARM/lamp/lamp_sct.Bak b/MDK-ARM/lamp/lamp_sct.Bak deleted file mode 100644 index fb0348d..0000000 --- a/MDK-ARM/lamp/lamp_sct.Bak +++ /dev/null @@ -1,16 +0,0 @@ -; ************************************************************* -; *** Scatter-Loading Description File generated by uVision *** -; ************************************************************* - -LR_IROM1 0x08000000 0x00008000 { ; load region size_region - ER_IROM1 0x08000000 0x00008000 { ; load address = execution address - *.o (RESET, +First) - *(InRoot$$Sections) - .ANY (+RO) - .ANY (+XO) - } - RW_IRAM1 0x20000000 0x00002800 { ; RW data - .ANY (+RW +ZI) - } -} - diff --git a/MDK-ARM/lamp/main.crf b/MDK-ARM/lamp/main.crf deleted file mode 100644 index de39b47..0000000 Binary files a/MDK-ARM/lamp/main.crf and /dev/null differ diff --git a/MDK-ARM/lamp/main.d b/MDK-ARM/lamp/main.d deleted file mode 100644 index 58d019e..0000000 --- a/MDK-ARM/lamp/main.d +++ /dev/null @@ -1,35 +0,0 @@ -lamp/main.o: ..\Core\Src\main.c ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h \ - ..\Core\Inc\rtc.h ..\Core\Inc\tim.h ..\Core\Inc\gpio.h \ - ..\Core\Clock\clock_manager.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\Core\Clock\menu.h \ - ..\Core\Clock\segment.h diff --git a/MDK-ARM/lamp/main.o b/MDK-ARM/lamp/main.o deleted file mode 100644 index 48eb8af..0000000 Binary files a/MDK-ARM/lamp/main.o and /dev/null differ diff --git a/MDK-ARM/lamp/menu.d b/MDK-ARM/lamp/menu.d deleted file mode 100644 index 31c6840..0000000 --- a/MDK-ARM/lamp/menu.d +++ /dev/null @@ -1,33 +0,0 @@ -lamp/menu.o: ..\Core\Clock\menu.c ..\Core\Clock\menu.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdbool.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h \ - ..\Core\Clock\segment.h ..\Core\Clock\clock_manager.h diff --git a/MDK-ARM/lamp/menu.o b/MDK-ARM/lamp/menu.o deleted file mode 100644 index 72a33fe..0000000 Binary files a/MDK-ARM/lamp/menu.o and /dev/null differ diff --git a/MDK-ARM/lamp/rtc.d b/MDK-ARM/lamp/rtc.d deleted file mode 100644 index a8d89d9..0000000 --- a/MDK-ARM/lamp/rtc.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/rtc.o: ..\Core\Src\rtc.c ..\Core\Inc\rtc.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/rtc.o b/MDK-ARM/lamp/rtc.o deleted file mode 100644 index 5154d79..0000000 Binary files a/MDK-ARM/lamp/rtc.o and /dev/null differ diff --git a/MDK-ARM/lamp/segment.d b/MDK-ARM/lamp/segment.d deleted file mode 100644 index 5b62c39..0000000 --- a/MDK-ARM/lamp/segment.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/segment.o: ..\Core\Clock\segment.c ..\Core\Clock\segment.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/segment.o b/MDK-ARM/lamp/segment.o deleted file mode 100644 index 60c8675..0000000 Binary files a/MDK-ARM/lamp/segment.o and /dev/null differ diff --git a/MDK-ARM/lamp/startup_stm32f101x6.o b/MDK-ARM/lamp/startup_stm32f101x6.o deleted file mode 100644 index f37f819..0000000 Binary files a/MDK-ARM/lamp/startup_stm32f101x6.o and /dev/null differ diff --git a/MDK-ARM/lamp/startup_stm32f103xb.d b/MDK-ARM/lamp/startup_stm32f103xb.d deleted file mode 100644 index 1c7aa4d..0000000 --- a/MDK-ARM/lamp/startup_stm32f103xb.d +++ /dev/null @@ -1 +0,0 @@ -lamp\startup_stm32f103xb.o: startup_stm32f103xb.s diff --git a/MDK-ARM/lamp/startup_stm32f103xb.o b/MDK-ARM/lamp/startup_stm32f103xb.o deleted file mode 100644 index c217d69..0000000 Binary files a/MDK-ARM/lamp/startup_stm32f103xb.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal.crf b/MDK-ARM/lamp/stm32f1xx_hal.crf deleted file mode 100644 index 15590c7..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal.d b/MDK-ARM/lamp/stm32f1xx_hal.d deleted file mode 100644 index 176e028..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/stm32f1xx_hal.o: ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal.o b/MDK-ARM/lamp/stm32f1xx_hal.o deleted file mode 100644 index 28b61e0..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_cortex.crf b/MDK-ARM/lamp/stm32f1xx_hal_cortex.crf deleted file mode 100644 index 74a68da..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_cortex.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_cortex.d b/MDK-ARM/lamp/stm32f1xx_hal_cortex.d deleted file mode 100644 index 2724b70..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_cortex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_cortex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_cortex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_cortex.o b/MDK-ARM/lamp/stm32f1xx_hal_cortex.o deleted file mode 100644 index da27c76..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_cortex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_dma.crf b/MDK-ARM/lamp/stm32f1xx_hal_dma.crf deleted file mode 100644 index 60ea42a..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_dma.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_dma.d b/MDK-ARM/lamp/stm32f1xx_hal_dma.d deleted file mode 100644 index d2db74e..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_dma.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_dma.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_dma.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_dma.o b/MDK-ARM/lamp/stm32f1xx_hal_dma.o deleted file mode 100644 index fa0e96b..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_dma.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_exti.d b/MDK-ARM/lamp/stm32f1xx_hal_exti.d deleted file mode 100644 index a2dfa41..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_exti.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_exti.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_exti.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_exti.o b/MDK-ARM/lamp/stm32f1xx_hal_exti.o deleted file mode 100644 index 6bc08c8..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_exti.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_flash.d b/MDK-ARM/lamp/stm32f1xx_hal_flash.d deleted file mode 100644 index 60994f4..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_flash.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_flash.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_flash.o b/MDK-ARM/lamp/stm32f1xx_hal_flash.o deleted file mode 100644 index 9552125..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_flash.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.d b/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.d deleted file mode 100644 index 64921f1..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_flash_ex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_flash_ex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.o b/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.o deleted file mode 100644 index eadcf01..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_flash_ex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio.crf b/MDK-ARM/lamp/stm32f1xx_hal_gpio.crf deleted file mode 100644 index 6d72587..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_gpio.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio.d b/MDK-ARM/lamp/stm32f1xx_hal_gpio.d deleted file mode 100644 index 2338fff..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_gpio.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_gpio.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio.o b/MDK-ARM/lamp/stm32f1xx_hal_gpio.o deleted file mode 100644 index 31c887a..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_gpio.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.crf b/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.crf deleted file mode 100644 index c290137..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.d b/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.d deleted file mode 100644 index 36b1493..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_gpio_ex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_gpio_ex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.o b/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.o deleted file mode 100644 index 86c6937..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_gpio_ex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_msp.crf b/MDK-ARM/lamp/stm32f1xx_hal_msp.crf deleted file mode 100644 index 9e6c328..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_msp.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_msp.d b/MDK-ARM/lamp/stm32f1xx_hal_msp.d deleted file mode 100644 index ab87ef4..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_msp.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/stm32f1xx_hal_msp.o: ..\Core\Src\stm32f1xx_hal_msp.c \ - ..\Core\Inc\main.h ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_msp.o b/MDK-ARM/lamp/stm32f1xx_hal_msp.o deleted file mode 100644 index 3c59598..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_msp.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_pwr.crf b/MDK-ARM/lamp/stm32f1xx_hal_pwr.crf deleted file mode 100644 index d446334..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_pwr.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_pwr.d b/MDK-ARM/lamp/stm32f1xx_hal_pwr.d deleted file mode 100644 index 6e6d451..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_pwr.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_pwr.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_pwr.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_pwr.o b/MDK-ARM/lamp/stm32f1xx_hal_pwr.o deleted file mode 100644 index 3e29569..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_pwr.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc.crf b/MDK-ARM/lamp/stm32f1xx_hal_rcc.crf deleted file mode 100644 index efb4018..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rcc.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc.d b/MDK-ARM/lamp/stm32f1xx_hal_rcc.d deleted file mode 100644 index 625f7a9..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_rcc.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_rcc.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc.o b/MDK-ARM/lamp/stm32f1xx_hal_rcc.o deleted file mode 100644 index 2fdc52e..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rcc.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.crf b/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.crf deleted file mode 100644 index 2853ef8..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.d b/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.d deleted file mode 100644 index d3db56f..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_rcc_ex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rcc_ex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.o b/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.o deleted file mode 100644 index 53b57f3..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rcc_ex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rtc.d b/MDK-ARM/lamp/stm32f1xx_hal_rtc.d deleted file mode 100644 index 9241a73..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_rtc.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_rtc.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rtc.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rtc.o b/MDK-ARM/lamp/stm32f1xx_hal_rtc.o deleted file mode 100644 index 1d02749..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rtc.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.d b/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.d deleted file mode 100644 index 363cca7..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_rtc_ex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_rtc_ex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.o b/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.o deleted file mode 100644 index ad61abc..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_rtc_ex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim.crf b/MDK-ARM/lamp/stm32f1xx_hal_tim.crf deleted file mode 100644 index 6958ca5..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_tim.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim.d b/MDK-ARM/lamp/stm32f1xx_hal_tim.d deleted file mode 100644 index 558aa91..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_tim.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_tim.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim.o b/MDK-ARM/lamp/stm32f1xx_hal_tim.o deleted file mode 100644 index 4490b6a..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_tim.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.crf b/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.crf deleted file mode 100644 index a54a529..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.d b/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.d deleted file mode 100644 index cd23418..0000000 --- a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_hal_tim_ex.o: \ - ..\Drivers\STM32F1xx_HAL_Driver\Src\stm32f1xx_hal_tim_ex.c \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.o b/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.o deleted file mode 100644 index b274e5a..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_hal_tim_ex.o and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_it.crf b/MDK-ARM/lamp/stm32f1xx_it.crf deleted file mode 100644 index 593614d..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_it.crf and /dev/null differ diff --git a/MDK-ARM/lamp/stm32f1xx_it.d b/MDK-ARM/lamp/stm32f1xx_it.d deleted file mode 100644 index 46ee303..0000000 --- a/MDK-ARM/lamp/stm32f1xx_it.d +++ /dev/null @@ -1,32 +0,0 @@ -lamp/stm32f1xx_it.o: ..\Core\Src\stm32f1xx_it.c ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h \ - ..\Core\Inc\stm32f1xx_it.h ..\Core\Clock\segment.h diff --git a/MDK-ARM/lamp/stm32f1xx_it.o b/MDK-ARM/lamp/stm32f1xx_it.o deleted file mode 100644 index 86f6635..0000000 Binary files a/MDK-ARM/lamp/stm32f1xx_it.o and /dev/null differ diff --git a/MDK-ARM/lamp/system_stm32f1xx.d b/MDK-ARM/lamp/system_stm32f1xx.d deleted file mode 100644 index 62ad7d6..0000000 --- a/MDK-ARM/lamp/system_stm32f1xx.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/system_stm32f1xx.o: ..\Core\Src\system_stm32f1xx.c \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/system_stm32f1xx.o b/MDK-ARM/lamp/system_stm32f1xx.o deleted file mode 100644 index 5b47a8a..0000000 Binary files a/MDK-ARM/lamp/system_stm32f1xx.o and /dev/null differ diff --git a/MDK-ARM/lamp/tim.d b/MDK-ARM/lamp/tim.d deleted file mode 100644 index ff99da0..0000000 --- a/MDK-ARM/lamp/tim.d +++ /dev/null @@ -1,31 +0,0 @@ -lamp/tim.o: ..\Core\Src\tim.c ..\Core\Inc\tim.h ..\Core\Inc\main.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal.h \ - ..\Core\Inc\stm32f1xx_hal_conf.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_def.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f1xx.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\stm32f103xb.h \ - ..\Drivers\CMSIS\Include\core_cm3.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stdint.h \ - ..\Drivers\CMSIS\Include\cmsis_version.h \ - ..\Drivers\CMSIS\Include\cmsis_compiler.h \ - ..\Drivers\CMSIS\Include\cmsis_armclang.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_compat.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\arm_acle.h \ - ..\Drivers\CMSIS\Device\ST\STM32F1xx\Include\system_stm32f1xx.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\Legacy\stm32_hal_legacy.h \ - E:\Keil_v5\ARM\ARMCLANG\Bin\..\include\stddef.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rcc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_gpio_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_exti.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_dma_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_cortex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_flash_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_pwr.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_rtc_ex.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim.h \ - ..\Drivers\STM32F1xx_HAL_Driver\Inc\stm32f1xx_hal_tim_ex.h diff --git a/MDK-ARM/lamp/tim.o b/MDK-ARM/lamp/tim.o deleted file mode 100644 index 5abc1a2..0000000 Binary files a/MDK-ARM/lamp/tim.o and /dev/null differ diff --git a/lamp.ioc b/lamp.ioc index ce25d43..f4d88a1 100644 --- a/lamp.ioc +++ b/lamp.ioc @@ -15,33 +15,34 @@ Mcu.IP4=TIM2 Mcu.IPNb=5 Mcu.Name=STM32F103C(8-B)Tx Mcu.Package=LQFP48 -Mcu.Pin0=PC14-OSC32_IN -Mcu.Pin1=PC15-OSC32_OUT -Mcu.Pin10=PB15 -Mcu.Pin11=PA9 -Mcu.Pin12=PA10 -Mcu.Pin13=PA11 -Mcu.Pin14=PA12 -Mcu.Pin15=PA13 -Mcu.Pin16=PA14 -Mcu.Pin17=PB3 -Mcu.Pin18=PB4 -Mcu.Pin19=PB6 -Mcu.Pin2=PD0-OSC_IN -Mcu.Pin20=PB7 -Mcu.Pin21=PB8 -Mcu.Pin22=PB9 -Mcu.Pin23=VP_RTC_VS_RTC_Activate -Mcu.Pin24=VP_SYS_VS_Systick -Mcu.Pin25=VP_TIM2_VS_ClockSourceINT -Mcu.Pin3=PD1-OSC_OUT -Mcu.Pin4=PA0-WKUP -Mcu.Pin5=PA1 -Mcu.Pin6=PA2 -Mcu.Pin7=PA3 -Mcu.Pin8=PA4 -Mcu.Pin9=PA5 -Mcu.PinsNb=26 +Mcu.Pin0=PC13-TAMPER-RTC +Mcu.Pin1=PC14-OSC32_IN +Mcu.Pin10=PA5 +Mcu.Pin11=PB15 +Mcu.Pin12=PA9 +Mcu.Pin13=PA10 +Mcu.Pin14=PA11 +Mcu.Pin15=PA12 +Mcu.Pin16=PA13 +Mcu.Pin17=PA14 +Mcu.Pin18=PB3 +Mcu.Pin19=PB4 +Mcu.Pin2=PC15-OSC32_OUT +Mcu.Pin20=PB6 +Mcu.Pin21=PB7 +Mcu.Pin22=PB8 +Mcu.Pin23=PB9 +Mcu.Pin24=VP_RTC_VS_RTC_Activate +Mcu.Pin25=VP_SYS_VS_Systick +Mcu.Pin26=VP_TIM2_VS_ClockSourceINT +Mcu.Pin3=PD0-OSC_IN +Mcu.Pin4=PD1-OSC_OUT +Mcu.Pin5=PA0-WKUP +Mcu.Pin6=PA1 +Mcu.Pin7=PA2 +Mcu.Pin8=PA3 +Mcu.Pin9=PA4 +Mcu.PinsNb=27 Mcu.ThirdPartyNb=0 Mcu.UserConstants= Mcu.UserName=STM32F103C8Tx @@ -55,6 +56,7 @@ NVIC.MemoryManagement_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false NVIC.NonMaskableInt_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false NVIC.PendSV_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false NVIC.PriorityGroup=NVIC_PRIORITYGROUP_4 +NVIC.RTC_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true NVIC.SVCall_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:true\:false\:true\:false NVIC.TIM2_IRQn=true\:0\:0\:false\:false\:true\:true\:true\:true @@ -131,6 +133,10 @@ PB9.GPIOParameters=GPIO_Label PB9.GPIO_Label=SEGMENT_G PB9.Locked=true PB9.Signal=GPIO_Output +PC13-TAMPER-RTC.GPIOParameters=GPIO_Label +PC13-TAMPER-RTC.GPIO_Label=LED +PC13-TAMPER-RTC.Locked=true +PC13-TAMPER-RTC.Signal=GPIO_Output PC14-OSC32_IN.Mode=LSE-External-Oscillator PC14-OSC32_IN.Signal=RCC_OSC32_IN PC15-OSC32_OUT.Mode=LSE-External-Oscillator @@ -194,6 +200,8 @@ RCC.SYSCLKSource=RCC_SYSCLKSOURCE_PLLCLK RCC.TimSysFreq_Value=72000000 RCC.USBFreq_Value=72000000 RCC.VCOOutput2Freq_Value=8000000 +RTC.IPParameters=OutPut +RTC.OutPut=RTC_OUTPUTSOURCE_ALARM TIM2.IPParameters=Prescaler,Period TIM2.Period=72*10-1 TIM2.Prescaler=0