diff --git a/.vscode/settings.json b/.vscode/settings.json index c1714cd..7219c6c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -38,10 +38,7 @@ "C_Cpp_Runner.compilerArgs": [], "C_Cpp_Runner.linkerArgs": [], "C_Cpp_Runner.includePaths": [], - "C_Cpp_Runner.includeSearch": [ - "*", - "**/*" - ], + "C_Cpp_Runner.includeSearch": ["*", "**/*"], "C_Cpp_Runner.excludeSearch": [ "**/build", "**/build/**", @@ -59,7 +56,8 @@ "files.associations": { "pid_g.h": "c", "mode_pwmp.h": "c", - "eeprom_m95.h": "c" + "eeprom_m95.h": "c", + "sys.h": "c" }, "C_Cpp.errorSquiggles": "disabled" -} \ No newline at end of file +} diff --git a/Core/Src/main.c b/Core/Src/main.c index 49cccef..ab0a8b8 100644 --- a/Core/Src/main.c +++ b/Core/Src/main.c @@ -70,9 +70,9 @@ void PeriphCommonClock_Config(void); /* USER CODE END 0 */ /** - * @brief The application entry point. - * @retval int - */ + * @brief The application entry point. + * @retval int + */ int main(void) { /* USER CODE BEGIN 1 */ @@ -89,7 +89,7 @@ int main(void) NVIC_SetPriorityGrouping(NVIC_PRIORITYGROUP_4); /* SysTick_IRQn interrupt configuration */ - NVIC_SetPriority(SysTick_IRQn, NVIC_EncodePriority(NVIC_GetPriorityGrouping(),15, 0)); + NVIC_SetPriority(SysTick_IRQn, NVIC_EncodePriority(NVIC_GetPriorityGrouping(), 15, 0)); /* USER CODE BEGIN Init */ /* USER CODE END Init */ @@ -97,7 +97,7 @@ int main(void) /* Configure the system clock */ SystemClock_Config(); -/* Configure the peripherals common clocks */ + /* Configure the peripherals common clocks */ PeriphCommonClock_Config(); /* USER CODE BEGIN SysInit */ @@ -123,13 +123,14 @@ int main(void) MX_TIM4_Init(); /* USER CODE BEGIN 2 */ - hart_ble_dinit(); // Bluetooth Deinitialization - leds_dinit(); // LED Deinitialization + hart_ble_dinit(); // Bluetooth Deinitialization + leds_dinit(); // LED Deinitialization my_mem_init(SRAMIN); // Initialize internal memory pool + my_mem_init(SRAMEX); // Initialize internal memory pool board_init(); // Initialize board - app_init(); // Initialize application + app_init(); // Initialize application /* USER CODE END 2 */ /* Infinite loop */ @@ -145,13 +146,13 @@ int main(void) } /** - * @brief System Clock Configuration - * @retval None - */ + * @brief System Clock Configuration + * @retval None + */ void SystemClock_Config(void) { LL_FLASH_SetLatency(LL_FLASH_LATENCY_0); - while(LL_FLASH_GetLatency()!= LL_FLASH_LATENCY_0) + while (LL_FLASH_GetLatency() != LL_FLASH_LATENCY_0) { } LL_PWR_SetRegulVoltageScaling(LL_PWR_REGU_VOLTAGE_SCALE1); @@ -160,17 +161,15 @@ void SystemClock_Config(void) } LL_RCC_HSE_Enable(); - /* Wait till HSE is ready */ - while(LL_RCC_HSE_IsReady() != 1) + /* Wait till HSE is ready */ + while (LL_RCC_HSE_IsReady() != 1) { - } LL_RCC_SetSysClkSource(LL_RCC_SYS_CLKSOURCE_HSE); - /* Wait till System clock is ready */ - while(LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_HSE) + /* Wait till System clock is ready */ + while (LL_RCC_GetSysClkSource() != LL_RCC_SYS_CLKSOURCE_STATUS_HSE) { - } LL_RCC_SetAHBPrescaler(LL_RCC_SYSCLK_DIV_2); LL_RCC_SetAPB1Prescaler(LL_RCC_APB1_DIV_1); @@ -182,19 +181,18 @@ void SystemClock_Config(void) } /** - * @brief Peripherals Common Clock Configuration - * @retval None - */ + * @brief Peripherals Common Clock Configuration + * @retval None + */ void PeriphCommonClock_Config(void) { LL_RCC_PLLSAI1_ConfigDomain_ADC(LL_RCC_PLLSOURCE_HSE, LL_RCC_PLLM_DIV_1, 8, LL_RCC_PLLSAI1R_DIV_2); LL_RCC_PLLSAI1_EnableDomain_ADC(); LL_RCC_PLLSAI1_Enable(); - /* Wait till PLLSAI1 is ready */ - while(LL_RCC_PLLSAI1_IsReady() != 1) + /* Wait till PLLSAI1 is ready */ + while (LL_RCC_PLLSAI1_IsReady() != 1) { - } } @@ -203,9 +201,9 @@ void PeriphCommonClock_Config(void) /* USER CODE END 4 */ /** - * @brief This function is executed in case of error occurrence. - * @retval None - */ + * @brief This function is executed in case of error occurrence. + * @retval None + */ void Error_Handler(void) { /* USER CODE BEGIN Error_Handler_Debug */ @@ -217,14 +215,14 @@ void Error_Handler(void) /* USER CODE END Error_Handler_Debug */ } -#ifdef USE_FULL_ASSERT +#ifdef USE_FULL_ASSERT /** - * @brief Reports the name of the source file and the source line number - * where the assert_param error has occurred. - * @param file: pointer to the source file name - * @param line: assert_param error line source number - * @retval None - */ + * @brief Reports the name of the source file and the source line number + * where the assert_param error has occurred. + * @param file: pointer to the source file name + * @param line: assert_param error line source number + * @retval None + */ void assert_failed(uint8_t *file, uint32_t line) { /* USER CODE BEGIN 6 */ diff --git a/MDK-ARM/DebugConfig/controller-v2_STM32L476VGTx.dbgconf b/MDK-ARM/DebugConfig/controller-v2_STM32L476VGTx.dbgconf new file mode 100644 index 0000000..979440d --- /dev/null +++ b/MDK-ARM/DebugConfig/controller-v2_STM32L476VGTx.dbgconf @@ -0,0 +1,77 @@ +// File: STM32L4x5_4x6.dbgconf +// Version: 1.0.0 +// Note: refer to STM32L4x5 and STM32L4x6 Reference manual (RM0351) +// refer to STM32L475xx STM32L476xx STM32L486xx STM32L496xx STM32L4A6xx datasheets + +// <<< Use Configuration Wizard in Context Menu >>> + +// Debug MCU configuration register (DBGMCU_CR) +// DBG_STANDBY Debug Standby mode +// DBG_STOP Debug Stop mode +// DBG_SLEEP Debug Sleep mode +// +DbgMCU_CR = 0x00000007; + +// Debug MCU APB1 freeze register1 (DBGMCU_APB1FZR1) +// Reserved bits must be kept at reset value +// DBG_LPTIM1_STOP LPTIM1 counter stopped when core is halted +// DBG_CAN2_STOP bxCAN2 stopped when core is halted +// DBG_CAN1_STOP bxCAN1 stopped when core is halted +// DBG_I2C3_STOP I2C3 SMBUS timeout counter stopped when core is halted +// DBG_I2C2_STOP I2C2 SMBUS timeout counter stopped when core is halted +// DBG_I2C1_STOP I2C1 SMBUS timeout counter stopped when core is halted +// DBG_IWDG_STOP Independent watchdog counter stopped when core is halted +// DBG_WWDG_STOP Window watchdog counter stopped when core is halted +// DBG_RTC_STOP RTC counter 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_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 +// +DbgMCU_APB1_Fz1 = 0x00000000; + +// Debug MCU APB1 freeze register 2 (DBGMCU_APB1FZR2) +// Reserved bits must be kept at reset value +// DBG_LPTIM2_STOP LPTIM2 counter stopped when core is halted +// DBG_I2C4_STOP I2C4 SMBUS timeout counter stopped when core is halted +// +DbgMCU_APB1_Fz2 = 0x00000000; + +// Debug MCU APB2 freeze register (DBGMCU_APB2FZR) +// Reserved bits must be kept at reset value +// DBG_TIM17_STOP TIM17 counter stopped when core is halted +// DBG_TIM16_STOP TIM16 counter stopped when core is halted +// DBG_TIM15_STOP TIM15 counter stopped when core is halted +// DBG_TIM8_STOP TIM8 counter stopped when core is halted +// DBG_TIM1_STOP TIM1 counter stopped when core is halted +// +DbgMCU_APB2_Fz = 0x00000000; + +// TPIU Pin Routing (TRACECLK fixed on Pin PE2) +// TRACECLK: Pin PE2 +// TRACED0 +// ETM Trace Data 0 +// <0x00040003=> Pin PE3 +// <0x00020001=> Pin PC1 +// TRACED1 +// ETM Trace Data 1 +// <0x00040004=> Pin PE4 +// <0x0002000A=> Pin PC10 +// TRACED2 +// ETM Trace Data 2 +// <0x00040005=> Pin PE5 +// <0x00030002=> Pin PD2 +// TRACED3 +// ETM Trace Data 3 +// <0x00040006=> Pin PE6 +// <0x0002000C=> Pin PC12 +// +TraceClk_Pin = 0x00040002; +TraceD0_Pin = 0x00040003; +TraceD1_Pin = 0x00040004; +TraceD2_Pin = 0x00040005; +TraceD3_Pin = 0x00040006; + +// <<< end of configuration section >>> diff --git a/MDK-ARM/RTE/_controller-v2/RTE_Components.h b/MDK-ARM/RTE/_controller-v2/RTE_Components.h index 391636b..481bf87 100644 --- a/MDK-ARM/RTE/_controller-v2/RTE_Components.h +++ b/MDK-ARM/RTE/_controller-v2/RTE_Components.h @@ -1,6 +1,6 @@ /* - * Auto generated Run-Time-Environment Configuration File + * Auto generated Run-Time-Environment Component Configuration File * *** Do not modify ! *** * * Project: 'controller-v2' @@ -17,5 +17,4 @@ #define CMSIS_device_header "stm32l4xx.h" - #endif /* RTE_COMPONENTS_H */ diff --git a/MDK-ARM/controller-v2.uvguix.10575 b/MDK-ARM/controller-v2.uvguix.10575 new file mode 100644 index 0000000..efb2d2b --- /dev/null +++ b/MDK-ARM/controller-v2.uvguix.10575 @@ -0,0 +1,1868 @@ + + + + -6.1 + +
### uVision Project, (C) Keil Software
+ + + + + + 38003 + Registers + 124 79 + + + 346 + Code Coverage + 877 160 + + + 204 + Performance Analyzer + 1037 + + + + + + 1506 + Symbols + + 71 71 71 + + + 1936 + Watch 1 + + 200 133 133 + + + 1937 + Watch 2 + + 200 133 133 + + + 1935 + Call Stack + Locals + + 200 133 133 + + + 2506 + Trace Data + + 75 135 130 95 70 230 200 150 + + + 466 + Source Browser - *** Not Enabled *** + 500 + 300 + + + + + + + + 1 + 1 + 0 + 0 + -1 + + + + + + + 44 + 2 + 3 + + -1 + -1 + + + -1 + -1 + + + 5 + 693 + 1372 + 713 + + + + 0 + + 274 + 0100000004000000010000000100000001000000010000000000000002000000000000000100000001000000000000002800000028000000010000000100000000000000010000004E433A5C55736572735C31303537355C4465736B746F705C777578695C68616E676469616E5C636F6E74726F6C6C65722D68645C557365725C6170706C69636174696F6E5C7372635C6D6F64652E6300000000066D6F64652E6300000000C5D4F200FFFFFFFF0100000010000000C5D4F200FFDC7800BECEA100F0A0A100BCA8E1009CC1B600F7B88600D9ADC200A5C2D700B3A6BE00EAD6A300F6FA7D00B5E99D005FC3CF00C1838300CACAD500010000000000000002000000D900000066000000AB0600008D020000 + + + + 0 + Build + + -1 + -1 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + D90000004F000000F0040000CA000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1005 + 1005 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000D20000005D020000 + + + 16 + 3C000000530000001101000004010000 + + + + 109 + 109 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000D20000005D020000 + + + 16 + 3C000000530000003801000040020000 + + + + 1465 + 1465 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 00000000DA010000F004000055020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1466 + 1466 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1467 + 1467 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1468 + 1468 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1506 + 1506 + 0 + 0 + 0 + 0 + 32767 + 0 + 16384 + 0 + + 16 + 1E04000066000000ED040000E7000000 + + + 16 + 3C000000530000001101000004010000 + + + + 1913 + 1913 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1935 + 1935 + 0 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 03000000DD010000ED0400003C020000 + + + 16 + 3C000000530000001101000004010000 + + + + 1936 + 1936 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C000000530000001101000004010000 + + + + 1937 + 1937 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C000000530000001101000004010000 + + + + 1939 + 1939 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1940 + 1940 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1941 + 1941 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 1942 + 1942 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 195 + 195 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000D20000005D020000 + + + 16 + 3C000000530000003801000040020000 + + + + 196 + 196 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000D20000005D020000 + + + 16 + 3C000000530000003801000040020000 + + + + 197 + 197 + 1 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 000000008E020000AB06000066030000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 198 + 198 + 0 + 0 + 0 + 0 + 32767 + 0 + 32768 + 0 + + 16 + 00000000C6010000F004000055020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 199 + 199 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000091020000ED040000DC020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 203 + 203 + 0 + 0 + 0 + 0 + 32767 + 0 + 8192 + 0 + + 16 + D900000063000000F0040000CA000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 204 + 204 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 221 + 221 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 00000000000000000000000000000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 2506 + 2506 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1B04000063000000F0040000D6010000 + + + 16 + 3C000000530000001101000004010000 + + + + 2507 + 2507 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 00000000DA010000F004000041020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 343 + 343 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 346 + 346 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 35141 + 35141 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + D900000063000000F0040000CA000000 + + + 16 + 3C000000530000001101000004010000 + + + + 35824 + 35824 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 35885 + 35885 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35886 + 35886 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35887 + 35887 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35888 + 35888 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35889 + 35889 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35890 + 35890 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35891 + 35891 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35892 + 35892 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35893 + 35893 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35894 + 35894 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35895 + 35895 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35896 + 35896 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35897 + 35897 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35898 + 35898 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35899 + 35899 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35900 + 35900 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35901 + 35901 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35902 + 35902 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35903 + 35903 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35904 + 35904 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 35905 + 35905 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 38003 + 38003 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000066000000D20000003C020000 + + + 16 + 3C000000530000003801000040020000 + + + + 38007 + 38007 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 000000008E020000F0040000F5020000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 436 + 436 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000091020000ED040000DC020000 + + + 16 + 3C000000530000003801000040020000 + + + + 437 + 437 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C000000530000001101000004010000 + + + + 440 + 440 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C000000530000001101000004010000 + + + + 463 + 463 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000091020000ED040000DC020000 + + + 16 + 3C000000530000003801000040020000 + + + + 466 + 466 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0300000091020000ED040000DC020000 + + + 16 + 3C000000530000003801000040020000 + + + + 470 + 470 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + DC00000066000000ED040000B1000000 + + + 16 + 3C00000053000000B4020000CE000000 + + + + 50000 + 50000 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50001 + 50001 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50002 + 50002 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50003 + 50003 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50004 + 50004 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50005 + 50005 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50006 + 50006 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50007 + 50007 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50008 + 50008 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50009 + 50009 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50010 + 50010 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50011 + 50011 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50012 + 50012 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50013 + 50013 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50014 + 50014 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50015 + 50015 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50016 + 50016 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50017 + 50017 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50018 + 50018 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 50019 + 50019 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 1E04000066000000ED0400003E010000 + + + 16 + 3C000000530000001101000004010000 + + + + 59392 + 59392 + 1 + 0 + 0 + 0 + 32767 + 0 + 8192 + 0 + + 16 + 0000000000000000C40300001C000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59393 + 0 + 1 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 0000000066030000AB06000079030000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59399 + 59399 + 1 + 0 + 0 + 0 + 32767 + 0 + 8192 + 1 + + 16 + 000000001C000000E701000038000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 59400 + 59400 + 0 + 0 + 0 + 0 + 32767 + 0 + 8192 + 2 + + 16 + 00000000380000006F02000054000000 + + + 16 + 0A0000000A0000006E0000006E000000 + + + + 824 + 824 + 0 + 0 + 0 + 0 + 32767 + 0 + 4096 + 0 + + 16 + 03000000DD010000ED04000028020000 + + + 16 + 3C000000530000001101000004010000 + + + + 3339 + 000000000B000000000000000020000000000000FFFFFFFFFFFFFFFFD9000000CA000000F0040000CE000000000000000100001004000000010000000000000000000000FFFFFFFF08000000CB00000057010000CC000000F08B00005A01000079070000D601000045890000FFFF02000B004354616262656450616E6500200000000000003C00000053000000B4020000CE000000D90000004F000000F0040000CA0000000000000040280046080000000B446973617373656D626C7900000000CB00000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A6572000000005701000001000000FFFFFFFFFFFFFFFF14506572666F726D616E636520416E616C797A657200000000CC00000001000000FFFFFFFFFFFFFFFF0E4C6F67696320416E616C797A657200000000F08B000001000000FFFFFFFFFFFFFFFF0D436F646520436F766572616765000000005A01000001000000FFFFFFFFFFFFFFFF11496E737472756374696F6E205472616365000000007907000001000000FFFFFFFFFFFFFFFF0F53797374656D20416E616C797A657200000000D601000001000000FFFFFFFFFFFFFFFF104576656E742053746174697374696373000000004589000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFCB00000001000000FFFFFFFFCB000000000000000040000000000000FFFFFFFFFFFFFFFF170400004F0000001B040000D6010000000000000200001004000000010000000000000000000000FFFFFFFF2B000000E2050000CA0900002D8C00002E8C00002F8C0000308C0000318C0000328C0000338C0000348C0000358C0000368C0000378C0000388C0000398C00003A8C00003B8C00003C8C00003D8C00003E8C00003F8C0000408C0000418C000050C3000051C3000052C3000053C3000054C3000055C3000056C3000057C3000058C3000059C300005AC300005BC300005CC300005DC300005EC300005FC3000060C3000061C3000062C3000063C30000018000400000000000003C0000005300000011010000040100001B0400004F000000F0040000D601000000000000404100462B0000000753796D626F6C7300000000E205000001000000FFFFFFFFFFFFFFFF0A5472616365204461746100000000CA09000001000000FFFFFFFFFFFFFFFF00000000002D8C000001000000FFFFFFFFFFFFFFFF00000000002E8C000001000000FFFFFFFFFFFFFFFF00000000002F8C000001000000FFFFFFFFFFFFFFFF0000000000308C000001000000FFFFFFFFFFFFFFFF0000000000318C000001000000FFFFFFFFFFFFFFFF0000000000328C000001000000FFFFFFFFFFFFFFFF0000000000338C000001000000FFFFFFFFFFFFFFFF0000000000348C000001000000FFFFFFFFFFFFFFFF0000000000358C000001000000FFFFFFFFFFFFFFFF0000000000368C000001000000FFFFFFFFFFFFFFFF0000000000378C000001000000FFFFFFFFFFFFFFFF0000000000388C000001000000FFFFFFFFFFFFFFFF0000000000398C000001000000FFFFFFFFFFFFFFFF00000000003A8C000001000000FFFFFFFFFFFFFFFF00000000003B8C000001000000FFFFFFFFFFFFFFFF00000000003C8C000001000000FFFFFFFFFFFFFFFF00000000003D8C000001000000FFFFFFFFFFFFFFFF00000000003E8C000001000000FFFFFFFFFFFFFFFF00000000003F8C000001000000FFFFFFFFFFFFFFFF0000000000408C000001000000FFFFFFFFFFFFFFFF0000000000418C000001000000FFFFFFFFFFFFFFFF000000000050C3000001000000FFFFFFFFFFFFFFFF000000000051C3000001000000FFFFFFFFFFFFFFFF000000000052C3000001000000FFFFFFFFFFFFFFFF000000000053C3000001000000FFFFFFFFFFFFFFFF000000000054C3000001000000FFFFFFFFFFFFFFFF000000000055C3000001000000FFFFFFFFFFFFFFFF000000000056C3000001000000FFFFFFFFFFFFFFFF000000000057C3000001000000FFFFFFFFFFFFFFFF000000000058C3000001000000FFFFFFFFFFFFFFFF000000000059C3000001000000FFFFFFFFFFFFFFFF00000000005AC3000001000000FFFFFFFFFFFFFFFF00000000005BC3000001000000FFFFFFFFFFFFFFFF00000000005CC3000001000000FFFFFFFFFFFFFFFF00000000005DC3000001000000FFFFFFFFFFFFFFFF00000000005EC3000001000000FFFFFFFFFFFFFFFF00000000005FC3000001000000FFFFFFFFFFFFFFFF000000000060C3000001000000FFFFFFFFFFFFFFFF000000000061C3000001000000FFFFFFFFFFFFFFFF000000000062C3000001000000FFFFFFFFFFFFFFFF000000000063C3000001000000FFFFFFFFFFFFFFFFFFFFFFFF000000000000000000000000000000000000000001000000FFFFFFFFE205000001000000FFFFFFFFE2050000000000000010000001000000FFFFFFFFFFFFFFFFD50000004F000000D900000076020000010000000200001004000000010000000000000000000000FFFFFFFF05000000ED0300006D000000C3000000C400000073940000018000100000010000003C000000530000001101000004010000000000004F000000D5000000760200000000000040410056050000000750726F6A65637401000000ED03000001000000FFFFFFFFFFFFFFFF05426F6F6B73010000006D00000001000000FFFFFFFFFFFFFFFF0946756E6374696F6E7301000000C300000001000000FFFFFFFFFFFFFFFF0954656D706C6174657301000000C400000001000000FFFFFFFFFFFFFFFF09526567697374657273000000007394000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFED03000001000000FFFFFFFFED030000000000000080000000000000FFFFFFFFFFFFFFFF00000000C2010000F0040000C601000000000000010000100400000001000000000000000000000000000000000000000000000001000000C6000000FFFFFFFF0F0000008F070000930700009407000095070000960700009007000091070000B5010000B801000038030000B9050000BA050000BB050000BC050000CB090000018000800000000000003C00000053000000110100000401000000000000C6010000F00400005502000000000000404100460F0000001343616C6C20537461636B202B204C6F63616C73000000008F07000001000000FFFFFFFFFFFFFFFF0755415254202331000000009307000001000000FFFFFFFFFFFFFFFF0755415254202332000000009407000001000000FFFFFFFFFFFFFFFF0755415254202333000000009507000001000000FFFFFFFFFFFFFFFF15446562756720287072696E74662920566965776572000000009607000001000000FFFFFFFFFFFFFFFF0757617463682031000000009007000001000000FFFFFFFFFFFFFFFF0757617463682032000000009107000001000000FFFFFFFFFFFFFFFF10547261636520457863657074696F6E7300000000B501000001000000FFFFFFFFFFFFFFFF0E4576656E7420436F756E7465727300000000B801000001000000FFFFFFFFFFFFFFFF09554C494E4B706C7573000000003803000001000000FFFFFFFFFFFFFFFF084D656D6F7279203100000000B905000001000000FFFFFFFFFFFFFFFF084D656D6F7279203200000000BA05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203300000000BB05000001000000FFFFFFFFFFFFFFFF084D656D6F7279203400000000BC05000001000000FFFFFFFFFFFFFFFF105472616365204E617669676174696F6E00000000CB09000001000000FFFFFFFFFFFFFFFFFFFFFFFF0000000001000000000000000000000001000000FFFFFFFF78020000C60100007C0200005502000000000000020000000400000000000000000000000000000000000000000000000000000002000000C6000000FFFFFFFF8F07000001000000FFFFFFFF8F07000001000000C6000000000000000080000001000000FFFFFFFFFFFFFFFF0000000076020000AB0600007A020000010000000100001004000000010000006DFDFFFF79000000FFFFFFFF06000000C5000000C7000000B4010000D2010000CF01000077940000018000800000010000003C00000053000000B4020000CE000000000000007A020000AB060000660300000000000040820056060000000C4275696C64204F757470757401000000C500000001000000FFFFFFFFFFFFFFFF0D46696E6420496E2046696C657300000000C700000001000000FFFFFFFFFFFFFFFF0A4572726F72204C69737400000000B401000001000000FFFFFFFFFFFFFFFF24536F757263652042726F77736572202D202A2A2A204E6F7420456E61626C6564202A2A2A00000000D201000001000000FFFFFFFFFFFFFFFF1346696E6420416C6C205265666572656E63657300000000CF01000001000000FFFFFFFFFFFFFFFF0742726F77736572000000007794000001000000FFFFFFFFFFFFFFFF00000000000000000000000000000000000000000000000001000000FFFFFFFFC500000001000000FFFFFFFFC5000000000000000000000000000000 + + + 59392 + File + + 2284 + 00200000010000002800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000040004000000000000000000000000000000000100000001000000018022E100000000040005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000004000700000000000000000000000000000000010000000100000001802CE10000000004000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000004000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000004000C0000000000000000000000000000000001000000010000000180F4B00000000004000D000000000000000000000000000000000100000001000000018036B10000000004000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF88000000000400460000000000000000000000000000000001000000010000000180FE880000000004004500000000000000000000000000000000010000000100000001800B810000000004001300000000000000000000000000000000010000000100000001800C810000000004001400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F0880000020000000F000000000000000000000000000000000100000001000000FFFF0100120043555646696E64436F6D626F427574746F6EE8030000000000000000000000000000000000000000000000010000000100000096000000020020500000000007735F77617463689600000000000000070007735F7761746368116D6F64655F70776D705F70726F636573730D61637475616C5F7461726765740ABFB9BBFDB7D6B1A5BACD046469666604656C73650C626C7565746F6F74685F686400000000000000000000000000000000000000000000000000000000018024E10000000000001100000000000000000000000000000000010000000100000001800A810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E22800000020000001500000019C6F4B6AF2FCDA3D6B9B5F7CAD4BBE1BBB0094374726C2B463500000000000000000000000001000000010000000000000000000000010000000200218022800000000000001500000019C6F4B6AF2FCDA3D6B9B5F7CAD4BBE1BBB0094374726C2B4635000000000000000000000000010000000100000000000000000000000100000000002180E0010000000000007500000012C4DCC1BFB2E2C1BFBACDCEDED0E8B5F7CAD40000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000160000000000000000000000000000000001000000010000000180C988000000000400180000000000000000000000000000000001000000010000000180C788000000000000190000000000000000000000000000000001000000010000000180C8880000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000021804C010000020001001A00000008CFEEC4BFB4B0BFDA000000000000000000000000010000000100000000000000000000000100000008002180DD880000000000001A0000000750726F6A656374000000000000000000000000010000000100000000000000000000000100000000002180DC8B0000000000003A00000005426F6F6B73000000000000000000000000010000000100000000000000000000000100000000002180E18B0000000000003B0000000946756E6374696F6E73000000000000000000000000010000000100000000000000000000000100000000002180E28B000000000000400000000954656D706C6174657300000000000000000000000001000000010000000000000000000000010000000000218018890000000000003D0000000E536F757263652042726F777365720000000000000000000000000100000001000000000000000000000001000000000021800000000000000400FFFFFFFF00000000000000000000000000010000000100000000000000000000000100000000002180D988000000000000390000000C4275696C64204F7574707574000000000000000000000000010000000100000000000000000000000100000000002180E38B000000000000410000000B46696E64204F75747075740000000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001B000000000000000000000000000000000100000001000000000000000446696C65FF7F0000 + + + 1423 + 2800FFFF01001100434D4643546F6F6C426172427574746F6E00E1000000000000FFFFFFFF000100000000000000010000000000000001000000018001E1000000000000FFFFFFFF000100000000000000010000000000000001000000018003E1000000000000FFFFFFFF0001000000000000000100000000000000010000000180CD7F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF000000000000000000010000000000000001000000018023E1000000000000FFFFFFFF000100000000000000010000000000000001000000018022E1000000000000FFFFFFFF000100000000000000010000000000000001000000018025E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802BE1000000000000FFFFFFFF00010000000000000001000000000000000100000001802CE1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001807A8A000000000000FFFFFFFF00010000000000000001000000000000000100000001807B8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180D3B0000000000000FFFFFFFF000100000000000000010000000000000001000000018015B1000000000000FFFFFFFF0001000000000000000100000000000000010000000180F4B0000000000000FFFFFFFF000100000000000000010000000000000001000000018036B1000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FF88000000000000FFFFFFFF0001000000000000000100000000000000010000000180FE88000000000000FFFFFFFF00010000000000000001000000000000000100000001800B81000000000000FFFFFFFF00010000000000000001000000000000000100000001800C81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180F088000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE7F000000000000FFFFFFFF000100000000000000010000000000000001000000018024E1000000000000FFFFFFFF00010000000000000001000000000000000100000001800A81000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001802280000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C488000000000000FFFFFFFF0001000000000000000100000000000000010000000180C988000000000000FFFFFFFF0001000000000000000100000000000000010000000180C788000000000000FFFFFFFF0001000000000000000100000000000000010000000180C888000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180DD88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180FB7F000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 1423 + 2800FFFF01001100434D4643546F6F6C426172427574746F6E00E100000000000000000000000000000000000000000000000100000001000000018001E100000000000001000000000000000000000000000000000100000001000000018003E1000000000000020000000000000000000000000000000001000000010000000180CD7F0000000000000300000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018023E100000000000004000000000000000000000000000000000100000001000000018022E100000000000005000000000000000000000000000000000100000001000000018025E10000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001802BE10000000000000700000000000000000000000000000000010000000100000001802CE10000000000000800000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001807A8A0000000000000900000000000000000000000000000000010000000100000001807B8A0000000000000A00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180D3B00000000000000B000000000000000000000000000000000100000001000000018015B10000000000000C0000000000000000000000000000000001000000010000000180F4B00000000000000D000000000000000000000000000000000100000001000000018036B10000000000000E00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FF880000000000000F0000000000000000000000000000000001000000010000000180FE880000000000001000000000000000000000000000000000010000000100000001800B810000000000001100000000000000000000000000000000010000000100000001800C810000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180F088000000000000130000000000000000000000000000000001000000010000000180EE7F00000000000014000000000000000000000000000000000100000001000000018024E10000000000001500000000000000000000000000000000010000000100000001800A810000000000001600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018022800000000000001700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C488000000000000180000000000000000000000000000000001000000010000000180C988000000000000190000000000000000000000000000000001000000010000000180C7880000000000001A0000000000000000000000000000000001000000010000000180C8880000000000001B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180DD880000000000001C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180FB7F0000000000001D000000000000000000000000000000000100000001000000 + + + + 59399 + Build + + 998 + 00200000010000001000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F0000000000001C0000000000000000000000000000000001000000010000000180D07F0000000000001D000000000000000000000000000000000100000001000000018030800000000002001E000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6EC7040000000000006A00000008C5FAC1BFB9B9BDA8000000000000000000000000010000000100000000000000000000000100000004000580C7040000000000006A00000008C5FAC1BFB9B9BDA800000000000000000000000001000000010000000000000000000000010000000000058046070000000000006B0000000CC5FAC1BFD6D8D0C2B9B9BDA80000000000000000000000000100000001000000000000000000000001000000000005804707000000000000FFFFFFFF08C5FAC1BFC7E5B3FD0100000000000000000000000100000001000000000000000000000001000000000005809E8A0000000000001F0000000BC5FAC1BFC9E8D6C32E2E2E000000000000000000000000010000000100000000000000000000000100000000000180D17F0000000004002000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000002100000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000FFFF01001900434D4643546F6F6C426172436F6D626F426F78427574746F6EBA00000000000000000000000000000000000000000000000001000000010000009600000003002050000000000D636F6E74726F6C6C65722D7632960000000000000003000D636F6E74726F6C6C65722D76320F636F6E74726F6C6C65722D76322E35036775690000000000000000000000000180EB880000000000002200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000230000000000000000000000000000000001000000010000000180B08A000000000400240000000000000000000000000000000001000000010000000180A8010000000000004E00000000000000000000000000000000010000000100000001807202000000000000530000000000000000000000000000000001000000010000000180BE010000000000005000000000000000000000000000000000010000000100000000000000054275696C64FF7F0000 + + + 583 + 1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000FFFFFFFF0001000000000000000100000000000000010000000180D07F000000000000FFFFFFFF00010000000000000001000000000000000100000001803080000000000000FFFFFFFF00010000000000000001000000000000000100000001809E8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D17F000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001804C8A000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001806680000000000000FFFFFFFF0001000000000000000100000000000000010000000180EB88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180C07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180B08A000000000000FFFFFFFF0001000000000000000100000000000000010000000180A801000000000000FFFFFFFF00010000000000000001000000000000000100000001807202000000000000FFFFFFFF0001000000000000000100000000000000010000000180BE01000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 583 + 1000FFFF01001100434D4643546F6F6C426172427574746F6ECF7F000000000000000000000000000000000000000000000001000000010000000180D07F00000000000001000000000000000000000000000000000100000001000000018030800000000000000200000000000000000000000000000000010000000100000001809E8A000000000000030000000000000000000000000000000001000000010000000180D17F0000000000000400000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001804C8A0000000000000500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001806680000000000000060000000000000000000000000000000001000000010000000180EB880000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180C07F000000000000080000000000000000000000000000000001000000010000000180B08A000000000000090000000000000000000000000000000001000000010000000180A8010000000000000A000000000000000000000000000000000100000001000000018072020000000000000B0000000000000000000000000000000001000000010000000180BE010000000000000C000000000000000000000000000000000100000001000000 + + + + 59400 + Debug + + 2337 + 00200000000000001900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000002500000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000002600000000000000000000000000000000010000000100000001801D800000000000002700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000002800000000000000000000000000000000010000000100000001801B80000000000000290000000000000000000000000000000001000000010000000180E57F0000000000002A00000000000000000000000000000000010000000100000001801C800000000000002B00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000002C00000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B0000000000002D0000000000000000000000000000000001000000010000000180F07F0000000000002E0000000000000000000000000000000001000000010000000180E8880000000000003700000000000000000000000000000000010000000100000001803B010000000000002F0000000000000000000000000000000001000000010000000180BB8A00000000000030000000000000000000000000000000000100000001000000FFFF01001500434D4643546F6F6C4261724D656E75427574746F6E0E01000000000000310000000D57617463682057696E646F7773000000000000000000000000010000000100000000000000000000000100000003001380D88B0000000000003100000007B9DBB2E2202631000000000000000000000000010000000100000000000000000000000100000000001380D98B0000000000003100000007B9DBB2E2202632000000000000000000000000010000000100000000000000000000000100000000001380CE01000000000000FFFFFFFF0C576174636820416E63686F720100000000000000000000000100000001000000000000000000000001000000000013800F01000000000000320000000E4D656D6F72792057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380D28B0000000000003200000007C4DAB4E6202631000000000000000000000000010000000100000000000000000000000100000000001380D38B0000000000003200000007C4DAB4E6202632000000000000000000000000010000000100000000000000000000000100000000001380D48B0000000000003200000007C4DAB4E6202633000000000000000000000000010000000100000000000000000000000100000000001380D58B0000000000003200000007C4DAB4E62026340000000000000000000000000100000001000000000000000000000001000000000013801001000000000000330000000E53657269616C2057696E646F777300000000000000000000000001000000010000000000000000000000010000000400138093070000000000003300000008B4AEBFDA2023263100000000000000000000000001000000010000000000000000000000010000000000138094070000000000003300000008B4AEBFDA2023263200000000000000000000000001000000010000000000000000000000010000000000138095070000000000003300000008B4AEBFDA2023263300000000000000000000000001000000010000000000000000000000010000000000138096070000000000003300000014B5F7CAD4A3A87072696E7466A3A9B2E9BFB4C6F70000000000000000000000000100000001000000000000000000000001000000000013803C010000000000003400000010416E616C797369732057696E646F7773000000000000000000000000010000000100000000000000000000000100000004001380658A000000000000340000000AC2DFBCADB7D6CEF6D2C7000000000000000000000000010000000100000000000000000000000100000000001380DC7F0000000000003E0000000AD0D4C4DCB7D6CEF6C6F7000000000000000000000000010000000100000000000000000000000100000000001380E788000000000000380000000B26B4FAC2EBB8B2B8C7C2CA000000000000000000000000010000000100000000000000000000000100000000001380CD01000000000000FFFFFFFF0F416E616C7973697320416E63686F7201000000000000000000000001000000010000000000000000000000010000000000138053010000000000003F0000000D54726163652057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013805401000000000000FFFFFFFF115472616365204D656E7520416E63686F720100000000000000000000000100000001000000000000000000000001000000000013802901000000000000350000001553797374656D205669657765722057696E646F77730000000000000000000000000100000001000000000000000000000001000000010013804B01000000000000FFFFFFFF1453797374656D2056696577657220416E63686F720100000000000000000000000100000001000000000000000000000001000000000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000013800189000000000000360000000AB9A4BEDFCFE4B4B0BFDA00000000000000000000000001000000010000000000000000000000010000000300138044C5000000000000FFFFFFFF0E5570646174652057696E646F77730100000000000000000000000100000001000000000000000000000001000000000013800000000000000400FFFFFFFF000000000000000000000000000100000001000000000000000000000001000000000013805B01000000000000FFFFFFFF12546F6F6C626F78204D656E75416E63686F720100000000000000000000000100000001000000000000000000000001000000000000000000054465627567FF7F0000 + + + 898 + 1900FFFF01001100434D4643546F6F6C426172427574746F6ECC88000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801780000000000000FFFFFFFF00010000000000000001000000000000000100000001801D80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001801A80000000000000FFFFFFFF00010000000000000001000000000000000100000001801B80000000000000FFFFFFFF0001000000000000000100000000000000010000000180E57F000000000000FFFFFFFF00010000000000000001000000000000000100000001801C80000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800089000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF0000000000000000000100000000000000010000000180E48B000000000000FFFFFFFF0001000000000000000100000000000000010000000180F07F000000000000FFFFFFFF0001000000000000000100000000000000010000000180E888000000000000FFFFFFFF00010000000000000001000000000000000100000001803B01000000000000FFFFFFFF0001000000000000000100000000000000010000000180BB8A000000000000FFFFFFFF0001000000000000000100000000000000010000000180D88B000000000000FFFFFFFF0001000000000000000100000000000000010000000180D28B000000000000FFFFFFFF00010000000000000001000000000000000100000001809307000000000000FFFFFFFF0001000000000000000100000000000000010000000180658A000000000000FFFFFFFF0001000000000000000100000000000000010000000180C18A000000000000FFFFFFFF0001000000000000000100000000000000010000000180EE8B000000000000FFFFFFFF00010000000000000001000000000000000100000001800000000000000000FFFFFFFF00000000000000000001000000000000000100000001800189000000000000FFFFFFFF000100000000000000010000000000000001000000 + + + 898 + 1900FFFF01001100434D4643546F6F6C426172427574746F6ECC880000000000000000000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018017800000000000000100000000000000000000000000000000010000000100000001801D800000000000000200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF00000000000000000000000000010000000100000001801A800000000000000300000000000000000000000000000000010000000100000001801B80000000000000040000000000000000000000000000000001000000010000000180E57F0000000000000500000000000000000000000000000000010000000100000001801C800000000000000600000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF000000000000000000000000000100000001000000018000890000000000000700000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180E48B000000000000080000000000000000000000000000000001000000010000000180F07F000000000000090000000000000000000000000000000001000000010000000180E8880000000000000A00000000000000000000000000000000010000000100000001803B010000000000000B0000000000000000000000000000000001000000010000000180BB8A0000000000000C0000000000000000000000000000000001000000010000000180D88B0000000000000D0000000000000000000000000000000001000000010000000180D28B0000000000000E000000000000000000000000000000000100000001000000018093070000000000000F0000000000000000000000000000000001000000010000000180658A000000000000100000000000000000000000000000000001000000010000000180C18A000000000000110000000000000000000000000000000001000000010000000180EE8B0000000000001200000000000000000000000000000000010000000100000001800000000001000000FFFFFFFF0000000000000000000000000001000000010000000180018900000000000013000000000000000000000000000000000100000001000000 + + + + 0 + 1707 + 960 + + + + + + 1 + 0 + + 100 + 0 + + ..\User\application\src\mode.c + 11 + 420 + 447 + 1 + + 0 + + + + +
diff --git a/MDK-ARM/controller-v2.uvoptx b/MDK-ARM/controller-v2.uvoptx index ccf8732..06cb7ef 100644 --- a/MDK-ARM/controller-v2.uvoptx +++ b/MDK-ARM/controller-v2.uvoptx @@ -114,13 +114,13 @@ - STLink\ST-LINKIII-KEIL_SWO.dll + Segger\JL2CM3.dll 0 DLGUARM - (105=-1,-1,-1,-1,0) + d 0 @@ -163,107 +163,102 @@ 0 1 - mode_pwmp,0x0A + _pid,0x0A 1 1 - _pid,0x0A + actual_travel 2 1 - actual_travel + show_actual 3 1 - show_actual + loop_current 4 1 - loop_current + uDevice.SpecControlOutputMode,0x0A 5 1 - uDevice.SpecControlOutputMode,0x0A + uDevice,0x0A 6 1 - uDevice,0x0A + pid_actual 7 1 - pid_actual + adc_raw,0x0A 8 1 - adc_raw,0x0A + target_travel 9 1 - target_travel + target_actual_diff,0x10 10 1 - target_actual_diff,0x10 + calib_param[CALIBPARA_PSB] 11 1 - rsp,0x0A + uDevice.WorkMode,0x0A 12 1 - calib_param[CALIBPARA_PSB] + loop_current 13 1 - uDevice.WorkMode,0x0A + out_pos 14 1 - loop_current + rsp,0x0A 15 1 - out_pos + out_pos_watch 16 1 - rsp,0x0A + mode_pwmp_hd_adjust,0x0A 17 1 - out_pos_watch + pid_autotune_hd,0x0A 18 1 - mode_pwmp_adjust,0x0A + mode_pwmp_hd,0x0A 19 1 - pid_autotune_hd,0x0A - - - 20 - 1 - mode_pwmp_hd,0x0A + s_watch,0x0A @@ -310,7 +305,6 @@ 1 - 0 0 2 10000000 @@ -426,7 +420,7 @@ 0 0 0 - C:\Users\10575\Desktop\wuxi\hangdian\controller-hd\User\application\src\mode_pwmp.c + ..\User\application\src\mode_pwmp.c @@ -600,7 +594,7 @@ 0 0 0 - C:\Users\10575\Desktop\wuxi\hangdian\controller-hd\User\application\src\mode_pwmp.c + ..\User\application\src\mode_pwmp.c @@ -1404,7 +1398,7 @@ User/lib - 0 + 1 0 0 0 diff --git a/MDK-ARM/controller-v2.uvprojx b/MDK-ARM/controller-v2.uvprojx index 6d05f09..2573059 100644 --- a/MDK-ARM/controller-v2.uvprojx +++ b/MDK-ARM/controller-v2.uvprojx @@ -10,14 +10,14 @@ controller-v2 0x4 ARM-ADS - 5060960::V5.06 update 7 (build 960)::.\ARMCC + 5060061::V5.06 update 1 (build 61)::ARMCC 0 STM32L476VGTx STMicroelectronics - Keil.STM32L4xx_DFP.2.6.2 - https://www.keil.com/pack/ + Keil.STM32L4xx_DFP.2.1.0 + http://www.keil.com/pack IRAM(0x20000000,0x00018000) IRAM2(0x10000000,0x00008000) IROM(0x08000000,0x00100000) CPUTYPE("Cortex-M4") FPU2 DSP CLOCK(12000000) ELITTLE @@ -134,11 +134,11 @@ 0 1 1 - 4101 + 4096 1 BIN\UL2CM3.DLL - + "" () @@ -184,8 +184,6 @@ 0 0 1 - 0 - 0 1 0 8 @@ -352,7 +350,7 @@ 0 0 0 - 4 + 0 @@ -993,7 +991,7 @@ 2 2 2 - 0 + 2 @@ -1045,8 +1043,8 @@ STM32L476VGTx STMicroelectronics - Keil.STM32L4xx_DFP.2.6.2 - https://www.keil.com/pack/ + Keil.STM32L4xx_DFP.2.1.0 + http://www.keil.com/pack IRAM(0x20000000,0x00018000) IRAM2(0x10000000,0x00008000) IROM(0x08000000,0x00100000) CPUTYPE("Cortex-M4") FPU2 DSP CLOCK(12000000) ELITTLE @@ -1213,8 +1211,6 @@ 0 0 1 - 0 - 0 1 0 8 @@ -1381,7 +1377,7 @@ 0 0 0 - 4 + 0 @@ -1884,8 +1880,8 @@ STM32L476VGTx STMicroelectronics - Keil.STM32L4xx_DFP.2.6.2 - https://www.keil.com/pack/ + Keil.STM32L4xx_DFP.2.1.0 + http://www.keil.com/pack IRAM(0x20000000,0x00018000) IRAM2(0x10000000,0x00008000) IROM(0x08000000,0x00100000) CPUTYPE("Cortex-M4") FPU2 DSP CLOCK(12000000) ELITTLE @@ -2052,8 +2048,6 @@ 0 0 1 - 0 - 0 1 0 8 @@ -2220,7 +2214,7 @@ 0 0 0 - 4 + 0 @@ -2309,7 +2303,7 @@ 2 2 2 - 0 + 2 @@ -2388,7 +2382,7 @@ 2 2 2 - 0 + 2 @@ -2512,7 +2506,7 @@ 2 2 2 - 0 + 2 @@ -2646,7 +2640,7 @@ 2 2 2 - 0 + 2 @@ -2725,7 +2719,7 @@ 2 2 2 - 0 + 2 @@ -2814,7 +2808,7 @@ 2 2 2 - 0 + 2 @@ -2943,7 +2937,7 @@ 2 2 2 - 0 + 2 @@ -3052,7 +3046,7 @@ 2 2 2 - 0 + 2 @@ -3231,7 +3225,7 @@ 2 2 2 - 0 + 2 @@ -3340,7 +3334,7 @@ 2 2 2 - 0 + 2 diff --git a/MDK-ARM/controller-v2/adc.d b/MDK-ARM/controller-v2/adc.d new file mode 100644 index 0000000..f880902 --- /dev/null +++ b/MDK-ARM/controller-v2/adc.d @@ -0,0 +1,40 @@ +controller-v2\adc.o: ../Core/Src/adc.c +controller-v2\adc.o: ../Core/Inc/adc.h +controller-v2\adc.o: ../Core/Inc/main.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\adc.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\adc.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\adc.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\adc.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\adc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\adc.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\adc.o: ../User/lib/inc/lib.h +controller-v2\adc.o: ../User/lib/inc/data_type_def.h +controller-v2\adc.o: ../User/lib/inc/malloc.h +controller-v2\adc.o: ../User/lib/inc/data_analysis.h +controller-v2\adc.o: ../User/lib/inc/osel_arch.h +controller-v2\adc.o: ../User/lib/inc/lib.h +controller-v2\adc.o: ../User/lib/inc/debug.h +controller-v2\adc.o: ../User/lib/inc/sqqueue.h +controller-v2\adc.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\adc.o: ../User/lib/inc/clist.h +controller-v2\adc.o: ../User/system/inc/delay.h +controller-v2\adc.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/adc.o b/MDK-ARM/controller-v2/adc.o new file mode 100644 index 0000000..e102d97 Binary files /dev/null and b/MDK-ARM/controller-v2/adc.o differ diff --git a/MDK-ARM/controller-v2/adcs.d b/MDK-ARM/controller-v2/adcs.d new file mode 100644 index 0000000..95110ff --- /dev/null +++ b/MDK-ARM/controller-v2/adcs.d @@ -0,0 +1,39 @@ +controller-v2\adcs.o: ..\User\system\bsp\adcs.c +controller-v2\adcs.o: ..\User\system\bsp\adcs.h +controller-v2\adcs.o: ../User/lib/inc/lib.h +controller-v2\adcs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\adcs.o: ../User/lib/inc/data_type_def.h +controller-v2\adcs.o: ../User/lib/inc/malloc.h +controller-v2\adcs.o: ../User/lib/inc/data_analysis.h +controller-v2\adcs.o: ../User/lib/inc/osel_arch.h +controller-v2\adcs.o: ../User/lib/inc/lib.h +controller-v2\adcs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\adcs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\adcs.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\adcs.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\adcs.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\adcs.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\adcs.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\adcs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\adcs.o: ../User/lib/inc/debug.h +controller-v2\adcs.o: ../User/lib/inc/sqqueue.h +controller-v2\adcs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\adcs.o: ../User/lib/inc/clist.h +controller-v2\adcs.o: ../Core/Inc/main.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\adcs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\adcs.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/adcs.o b/MDK-ARM/controller-v2/adcs.o new file mode 100644 index 0000000..0be300c Binary files /dev/null and b/MDK-ARM/controller-v2/adcs.o differ diff --git a/MDK-ARM/controller-v2/aes.d b/MDK-ARM/controller-v2/aes.d new file mode 100644 index 0000000..b02a0e1 --- /dev/null +++ b/MDK-ARM/controller-v2/aes.d @@ -0,0 +1,4 @@ +controller-v2\aes.o: ..\User\lib\src\aes.c +controller-v2\aes.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h +controller-v2\aes.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\aes.o: ../User/lib/inc/aes.h diff --git a/MDK-ARM/controller-v2/aes.o b/MDK-ARM/controller-v2/aes.o new file mode 100644 index 0000000..9743fb5 Binary files /dev/null and b/MDK-ARM/controller-v2/aes.o differ diff --git a/MDK-ARM/controller-v2/app.d b/MDK-ARM/controller-v2/app.d new file mode 100644 index 0000000..f8731f8 --- /dev/null +++ b/MDK-ARM/controller-v2/app.d @@ -0,0 +1,100 @@ +controller-v2\app.o: ..\User\app.c +controller-v2\app.o: ..\User\app.h +controller-v2\app.o: ../Core/Inc/main.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\app.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\app.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\app.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\app.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\app.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\app.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\app.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\app.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\app.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\app.o: ../User/lib/inc/lib.h +controller-v2\app.o: ../User/lib/inc/data_type_def.h +controller-v2\app.o: ../User/lib/inc/malloc.h +controller-v2\app.o: ../User/lib/inc/data_analysis.h +controller-v2\app.o: ../User/lib/inc/osel_arch.h +controller-v2\app.o: ../User/lib/inc/lib.h +controller-v2\app.o: ../User/lib/inc/debug.h +controller-v2\app.o: ../User/lib/inc/sqqueue.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\app.o: ../User/lib/inc/clist.h +controller-v2\app.o: ../User/board/inc/board.h +controller-v2\app.o: ../User/system/bsp/bsp.h +controller-v2\app.o: ../User/system/bsp/gpios.h +controller-v2\app.o: ../User/system/bsp/adcs.h +controller-v2\app.o: ../User/system/bsp/dacs.h +controller-v2\app.o: ../Core/Inc/dac.h +controller-v2\app.o: ../User/system/bsp/tims.h +controller-v2\app.o: ../User/system/bsp/pwms.h +controller-v2\app.o: ../User/system/bsp/uarts.h +controller-v2\app.o: ../User/system/bsp/eeprom.h +controller-v2\app.o: ../User/system/bsp/spis.h +controller-v2\app.o: ../User/system/bsp/i2cs.h +controller-v2\app.o: ../User/system/bsp/iwdgs.h +controller-v2\app.o: ../Core/Inc/tim.h +controller-v2\app.o: ../User/lib/lcd/lcds.h +controller-v2\app.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\app.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\app.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\app.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\app.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\app.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\app.o: ../User/lib/menu/menu.h +controller-v2\app.o: ../User/board/inc/rtc_rx8010.h +controller-v2\app.o: ../User/board/inc/eeprom_m95.h +controller-v2\app.o: ../User/entity.h +controller-v2\app.o: ../User/application/inc/params.h +controller-v2\app.o: ../User/entity.h +controller-v2\app.o: ../User/application/inc/pdctrl.h +controller-v2\app.o: ../User/application/inc/mode.h +controller-v2\app.o: ../User/application/inc/mode_dac.h +controller-v2\app.o: ../User/lib/inc/filter.h +controller-v2\app.o: ../User/application/inc/mode_pwm.h +controller-v2\app.o: ../User/application/inc/mode_pwmp.h +controller-v2\app.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\app.o: ../User/lib/control/inc/pid.h +controller-v2\app.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\app.o: ../User/lib/control/custom/pid_c.h +controller-v2\app.o: ../User/lib/control/custom/pid_g.h +controller-v2\app.o: ../User/lib/control/custom/pid_x.h +controller-v2\app.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app.o: ../User/lib/control/custom/pid_hd.h +controller-v2\app.o: ../User/board/inc/eeprom_fm24.h +controller-v2\app.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\app.o: ../User/board/inc/ntc_3950.h +controller-v2\app.o: ../User/board/inc/leds.h +controller-v2\app.o: ../User/system/inc/delay.h +controller-v2\app.o: ../User/system/inc/sys.h +controller-v2\app.o: ../User/application/inc/fal_execution.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\app.o: ../User/lib/flashdb/fal/fal.h +controller-v2\app.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\app.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\app.o: ../User/lib/flashdb/flashdb.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\app.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\app.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\app.o: ../User/lib/flashdb/fdb_def.h +controller-v2\app.o: ../User/application/inc/key.h +controller-v2\app.o: ../User/system/inc/btn.h +controller-v2\app.o: ../User/application/inc/convert.h diff --git a/MDK-ARM/controller-v2/app.o b/MDK-ARM/controller-v2/app.o new file mode 100644 index 0000000..bf845c1 Binary files /dev/null and b/MDK-ARM/controller-v2/app.o differ diff --git a/MDK-ARM/controller-v2/app_flow.d b/MDK-ARM/controller-v2/app_flow.d new file mode 100644 index 0000000..77dd6df --- /dev/null +++ b/MDK-ARM/controller-v2/app_flow.d @@ -0,0 +1,106 @@ +controller-v2\app_flow.o: ..\User\app_flow.c +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h +controller-v2\app_flow.o: ..\User\app.h +controller-v2\app_flow.o: ../Core/Inc/main.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\app_flow.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\app_flow.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\app_flow.o: ../User/lib/inc/lib.h +controller-v2\app_flow.o: ../User/lib/inc/data_type_def.h +controller-v2\app_flow.o: ../User/lib/inc/malloc.h +controller-v2\app_flow.o: ../User/lib/inc/data_analysis.h +controller-v2\app_flow.o: ../User/lib/inc/osel_arch.h +controller-v2\app_flow.o: ../User/lib/inc/lib.h +controller-v2\app_flow.o: ../User/lib/inc/debug.h +controller-v2\app_flow.o: ../User/lib/inc/sqqueue.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\app_flow.o: ../User/lib/inc/clist.h +controller-v2\app_flow.o: ../User/board/inc/board.h +controller-v2\app_flow.o: ../User/system/bsp/bsp.h +controller-v2\app_flow.o: ../User/system/bsp/gpios.h +controller-v2\app_flow.o: ../User/system/bsp/adcs.h +controller-v2\app_flow.o: ../User/system/bsp/dacs.h +controller-v2\app_flow.o: ../Core/Inc/dac.h +controller-v2\app_flow.o: ../User/system/bsp/tims.h +controller-v2\app_flow.o: ../User/system/bsp/pwms.h +controller-v2\app_flow.o: ../User/system/bsp/uarts.h +controller-v2\app_flow.o: ../User/system/bsp/eeprom.h +controller-v2\app_flow.o: ../User/system/bsp/spis.h +controller-v2\app_flow.o: ../User/system/bsp/i2cs.h +controller-v2\app_flow.o: ../User/system/bsp/iwdgs.h +controller-v2\app_flow.o: ../Core/Inc/tim.h +controller-v2\app_flow.o: ../User/lib/lcd/lcds.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\app_flow.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\app_flow.o: ../User/lib/menu/menu.h +controller-v2\app_flow.o: ../User/board/inc/rtc_rx8010.h +controller-v2\app_flow.o: ../User/board/inc/eeprom_m95.h +controller-v2\app_flow.o: ../User/entity.h +controller-v2\app_flow.o: ../User/application/inc/params.h +controller-v2\app_flow.o: ../User/entity.h +controller-v2\app_flow.o: ../User/application/inc/pdctrl.h +controller-v2\app_flow.o: ../User/application/inc/mode.h +controller-v2\app_flow.o: ../User/application/inc/mode_dac.h +controller-v2\app_flow.o: ../User/lib/inc/filter.h +controller-v2\app_flow.o: ../User/application/inc/mode_pwm.h +controller-v2\app_flow.o: ../User/application/inc/mode_pwmp.h +controller-v2\app_flow.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\app_flow.o: ../User/lib/control/inc/pid.h +controller-v2\app_flow.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_c.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_g.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_x.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app_flow.o: ../User/lib/control/custom/pid_hd.h +controller-v2\app_flow.o: ../User/board/inc/eeprom_fm24.h +controller-v2\app_flow.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\app_flow.o: ../User/board/inc/ntc_3950.h +controller-v2\app_flow.o: ../User/board/inc/leds.h +controller-v2\app_flow.o: ../User/system/inc/delay.h +controller-v2\app_flow.o: ../User/system/inc/sys.h +controller-v2\app_flow.o: ../User/application/inc/fal_execution.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\app_flow.o: ../User/lib/flashdb/fal/fal.h +controller-v2\app_flow.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\app_flow.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\app_flow.o: ../User/lib/flashdb/flashdb.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\app_flow.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\app_flow.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\app_flow.o: ../User/lib/flashdb/fdb_def.h +controller-v2\app_flow.o: ../User/application/inc/key.h +controller-v2\app_flow.o: ../User/system/inc/btn.h +controller-v2\app_flow.o: ../User/application/inc/convert.h +controller-v2\app_flow.o: ../User/lib/flow/flow.h +controller-v2\app_flow.o: ../User/lib/flow/flow_def.h +controller-v2\app_flow.o: ../User/lib/flow/flow_core.h +controller-v2\app_flow.o: ../User/lib/flow/flow_sem.h +controller-v2\app_flow.o: ../User/application/inc/at_hc24.h diff --git a/MDK-ARM/controller-v2/app_flow.o b/MDK-ARM/controller-v2/app_flow.o new file mode 100644 index 0000000..aa7a914 Binary files /dev/null and b/MDK-ARM/controller-v2/app_flow.o differ diff --git a/MDK-ARM/controller-v2/app_hart.d b/MDK-ARM/controller-v2/app_hart.d new file mode 100644 index 0000000..7a91517 --- /dev/null +++ b/MDK-ARM/controller-v2/app_hart.d @@ -0,0 +1,101 @@ +controller-v2\app_hart.o: ..\User\app_hart.c +controller-v2\app_hart.o: ..\User\app.h +controller-v2\app_hart.o: ../Core/Inc/main.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\app_hart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\app_hart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\app_hart.o: ../User/lib/inc/lib.h +controller-v2\app_hart.o: ../User/lib/inc/data_type_def.h +controller-v2\app_hart.o: ../User/lib/inc/malloc.h +controller-v2\app_hart.o: ../User/lib/inc/data_analysis.h +controller-v2\app_hart.o: ../User/lib/inc/osel_arch.h +controller-v2\app_hart.o: ../User/lib/inc/lib.h +controller-v2\app_hart.o: ../User/lib/inc/debug.h +controller-v2\app_hart.o: ../User/lib/inc/sqqueue.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\app_hart.o: ../User/lib/inc/clist.h +controller-v2\app_hart.o: ../User/board/inc/board.h +controller-v2\app_hart.o: ../User/system/bsp/bsp.h +controller-v2\app_hart.o: ../User/system/bsp/gpios.h +controller-v2\app_hart.o: ../User/system/bsp/adcs.h +controller-v2\app_hart.o: ../User/system/bsp/dacs.h +controller-v2\app_hart.o: ../Core/Inc/dac.h +controller-v2\app_hart.o: ../User/system/bsp/tims.h +controller-v2\app_hart.o: ../User/system/bsp/pwms.h +controller-v2\app_hart.o: ../User/system/bsp/uarts.h +controller-v2\app_hart.o: ../User/system/bsp/eeprom.h +controller-v2\app_hart.o: ../User/system/bsp/spis.h +controller-v2\app_hart.o: ../User/system/bsp/i2cs.h +controller-v2\app_hart.o: ../User/system/bsp/iwdgs.h +controller-v2\app_hart.o: ../Core/Inc/tim.h +controller-v2\app_hart.o: ../User/lib/lcd/lcds.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\app_hart.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\app_hart.o: ../User/lib/menu/menu.h +controller-v2\app_hart.o: ../User/board/inc/rtc_rx8010.h +controller-v2\app_hart.o: ../User/board/inc/eeprom_m95.h +controller-v2\app_hart.o: ../User/entity.h +controller-v2\app_hart.o: ../User/application/inc/params.h +controller-v2\app_hart.o: ../User/entity.h +controller-v2\app_hart.o: ../User/application/inc/pdctrl.h +controller-v2\app_hart.o: ../User/application/inc/mode.h +controller-v2\app_hart.o: ../User/application/inc/mode_dac.h +controller-v2\app_hart.o: ../User/lib/inc/filter.h +controller-v2\app_hart.o: ../User/application/inc/mode_pwm.h +controller-v2\app_hart.o: ../User/application/inc/mode_pwmp.h +controller-v2\app_hart.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\app_hart.o: ../User/lib/control/inc/pid.h +controller-v2\app_hart.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_c.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_g.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_x.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_zh.h +controller-v2\app_hart.o: ../User/lib/control/custom/pid_hd.h +controller-v2\app_hart.o: ../User/board/inc/eeprom_fm24.h +controller-v2\app_hart.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\app_hart.o: ../User/board/inc/ntc_3950.h +controller-v2\app_hart.o: ../User/board/inc/leds.h +controller-v2\app_hart.o: ../User/system/inc/delay.h +controller-v2\app_hart.o: ../User/system/inc/sys.h +controller-v2\app_hart.o: ../User/application/inc/fal_execution.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\app_hart.o: ../User/lib/flashdb/fal/fal.h +controller-v2\app_hart.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\app_hart.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\app_hart.o: ../User/lib/flashdb/flashdb.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\app_hart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\app_hart.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\app_hart.o: ../User/lib/flashdb/fdb_def.h +controller-v2\app_hart.o: ../User/application/inc/key.h +controller-v2\app_hart.o: ../User/system/inc/btn.h +controller-v2\app_hart.o: ../User/application/inc/convert.h +controller-v2\app_hart.o: ../User/application/inc/at_hc24.h diff --git a/MDK-ARM/controller-v2/app_hart.o b/MDK-ARM/controller-v2/app_hart.o new file mode 100644 index 0000000..54106e8 Binary files /dev/null and b/MDK-ARM/controller-v2/app_hart.o differ diff --git a/MDK-ARM/controller-v2/at_hc24.d b/MDK-ARM/controller-v2/at_hc24.d new file mode 100644 index 0000000..e17ffc4 --- /dev/null +++ b/MDK-ARM/controller-v2/at_hc24.d @@ -0,0 +1,24 @@ +controller-v2\at_hc24.o: ..\User\application\src\at_hc24.c +controller-v2\at_hc24.o: ../User/application/inc/at_hc24.h +controller-v2\at_hc24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\at_hc24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\at_hc24.o: ../User/lib/inc/data_type_def.h +controller-v2\at_hc24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\at_hc24.o: ../User/lib/inc/osel_arch.h +controller-v2\at_hc24.o: ../User/lib/inc/lib.h +controller-v2\at_hc24.o: ../User/lib/inc/malloc.h +controller-v2\at_hc24.o: ../User/lib/inc/data_analysis.h +controller-v2\at_hc24.o: ../User/lib/inc/osel_arch.h +controller-v2\at_hc24.o: ../User/lib/inc/debug.h +controller-v2\at_hc24.o: ../User/lib/inc/lib.h +controller-v2\at_hc24.o: ../User/lib/inc/sqqueue.h +controller-v2\at_hc24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\at_hc24.o: ../User/lib/inc/clist.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\at_hc24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/at_hc24.o b/MDK-ARM/controller-v2/at_hc24.o new file mode 100644 index 0000000..73130b7 Binary files /dev/null and b/MDK-ARM/controller-v2/at_hc24.o differ diff --git a/MDK-ARM/controller-v2/board.d b/MDK-ARM/controller-v2/board.d new file mode 100644 index 0000000..4e25e2c --- /dev/null +++ b/MDK-ARM/controller-v2/board.d @@ -0,0 +1,85 @@ +controller-v2\board.o: ..\User\board\src\board.c +controller-v2\board.o: ../User/board/inc/board.h +controller-v2\board.o: ../Core/Inc/main.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\board.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\board.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\board.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\board.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\board.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\board.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\board.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\board.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\board.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\board.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\board.o: ../User/lib/inc/lib.h +controller-v2\board.o: ../User/lib/inc/data_type_def.h +controller-v2\board.o: ../User/lib/inc/malloc.h +controller-v2\board.o: ../User/lib/inc/data_analysis.h +controller-v2\board.o: ../User/lib/inc/osel_arch.h +controller-v2\board.o: ../User/lib/inc/lib.h +controller-v2\board.o: ../User/lib/inc/debug.h +controller-v2\board.o: ../User/lib/inc/sqqueue.h +controller-v2\board.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\board.o: ../User/lib/inc/clist.h +controller-v2\board.o: ../User/system/bsp/bsp.h +controller-v2\board.o: ../User/system/bsp/gpios.h +controller-v2\board.o: ../User/system/bsp/adcs.h +controller-v2\board.o: ../User/system/bsp/dacs.h +controller-v2\board.o: ../Core/Inc/dac.h +controller-v2\board.o: ../User/system/bsp/tims.h +controller-v2\board.o: ../User/system/bsp/pwms.h +controller-v2\board.o: ../User/system/bsp/uarts.h +controller-v2\board.o: ../User/system/bsp/eeprom.h +controller-v2\board.o: ../User/system/bsp/spis.h +controller-v2\board.o: ../User/system/bsp/i2cs.h +controller-v2\board.o: ../User/system/bsp/iwdgs.h +controller-v2\board.o: ../Core/Inc/tim.h +controller-v2\board.o: ../User/lib/lcd/lcds.h +controller-v2\board.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\board.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\board.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\board.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\board.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\board.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\board.o: ../User/lib/menu/menu.h +controller-v2\board.o: ../User/board/inc/rtc_rx8010.h +controller-v2\board.o: ../User/board/inc/eeprom_m95.h +controller-v2\board.o: ../User/entity.h +controller-v2\board.o: ../User/application/inc/params.h +controller-v2\board.o: ../User/entity.h +controller-v2\board.o: ../User/application/inc/pdctrl.h +controller-v2\board.o: ../User/application/inc/mode.h +controller-v2\board.o: ../User/application/inc/mode_dac.h +controller-v2\board.o: ../User/lib/inc/filter.h +controller-v2\board.o: ../User/application/inc/mode_pwm.h +controller-v2\board.o: ../User/application/inc/mode_pwmp.h +controller-v2\board.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\board.o: ../User/lib/control/inc/pid.h +controller-v2\board.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\board.o: ../User/lib/control/custom/pid_c.h +controller-v2\board.o: ../User/lib/control/custom/pid_g.h +controller-v2\board.o: ../User/lib/control/custom/pid_x.h +controller-v2\board.o: ../User/lib/control/custom/pid_zh.h +controller-v2\board.o: ../User/lib/control/custom/pid_zh.h +controller-v2\board.o: ../User/lib/control/custom/pid_hd.h +controller-v2\board.o: ../User/board/inc/eeprom_fm24.h +controller-v2\board.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\board.o: ../User/board/inc/ntc_3950.h +controller-v2\board.o: ../User/board/inc/leds.h +controller-v2\board.o: ../User/system/inc/delay.h +controller-v2\board.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/board.o b/MDK-ARM/controller-v2/board.o new file mode 100644 index 0000000..120d909 Binary files /dev/null and b/MDK-ARM/controller-v2/board.o differ diff --git a/MDK-ARM/controller-v2/btn.d b/MDK-ARM/controller-v2/btn.d new file mode 100644 index 0000000..c227426 --- /dev/null +++ b/MDK-ARM/controller-v2/btn.d @@ -0,0 +1,21 @@ +controller-v2\btn.o: ..\User\system\src\btn.c +controller-v2\btn.o: ..\User\system\src\../inc/btn.h +controller-v2\btn.o: ../User/lib/inc/lib.h +controller-v2\btn.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\btn.o: ../User/lib/inc/data_type_def.h +controller-v2\btn.o: ../User/lib/inc/malloc.h +controller-v2\btn.o: ../User/lib/inc/data_analysis.h +controller-v2\btn.o: ../User/lib/inc/osel_arch.h +controller-v2\btn.o: ../User/lib/inc/lib.h +controller-v2\btn.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\btn.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\btn.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\btn.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\btn.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\btn.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\btn.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\btn.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\btn.o: ../User/lib/inc/debug.h +controller-v2\btn.o: ../User/lib/inc/sqqueue.h +controller-v2\btn.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\btn.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/btn.o b/MDK-ARM/controller-v2/btn.o new file mode 100644 index 0000000..36a8b7f Binary files /dev/null and b/MDK-ARM/controller-v2/btn.o differ diff --git a/MDK-ARM/controller-v2/clist.d b/MDK-ARM/controller-v2/clist.d new file mode 100644 index 0000000..922a139 --- /dev/null +++ b/MDK-ARM/controller-v2/clist.d @@ -0,0 +1,21 @@ +controller-v2\clist.o: ..\User\lib\src\clist.c +controller-v2\clist.o: ../User/lib/inc/clist.h +controller-v2\clist.o: ../User/lib/inc/lib.h +controller-v2\clist.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\clist.o: ../User/lib/inc/data_type_def.h +controller-v2\clist.o: ../User/lib/inc/malloc.h +controller-v2\clist.o: ../User/lib/inc/data_analysis.h +controller-v2\clist.o: ../User/lib/inc/osel_arch.h +controller-v2\clist.o: ../User/lib/inc/lib.h +controller-v2\clist.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\clist.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\clist.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\clist.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\clist.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\clist.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\clist.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\clist.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\clist.o: ../User/lib/inc/debug.h +controller-v2\clist.o: ../User/lib/inc/sqqueue.h +controller-v2\clist.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\clist.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/clist.o b/MDK-ARM/controller-v2/clist.o new file mode 100644 index 0000000..8a98288 Binary files /dev/null and b/MDK-ARM/controller-v2/clist.o differ diff --git a/MDK-ARM/controller-v2/cmac.d b/MDK-ARM/controller-v2/cmac.d new file mode 100644 index 0000000..06d088f --- /dev/null +++ b/MDK-ARM/controller-v2/cmac.d @@ -0,0 +1,23 @@ +controller-v2\cmac.o: ..\User\lib\src\cmac.c +controller-v2\cmac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\cmac.o: ../User/lib/inc/aes.h +controller-v2\cmac.o: ../User/lib/inc/cmac.h +controller-v2\cmac.o: ../User/lib/inc/osel_arch.h +controller-v2\cmac.o: ../User/lib/inc/lib.h +controller-v2\cmac.o: ../User/lib/inc/data_type_def.h +controller-v2\cmac.o: ../User/lib/inc/malloc.h +controller-v2\cmac.o: ../User/lib/inc/data_analysis.h +controller-v2\cmac.o: ../User/lib/inc/osel_arch.h +controller-v2\cmac.o: ../User/lib/inc/debug.h +controller-v2\cmac.o: ../User/lib/inc/lib.h +controller-v2\cmac.o: ../User/lib/inc/sqqueue.h +controller-v2\cmac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\cmac.o: ../User/lib/inc/clist.h +controller-v2\cmac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\cmac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\cmac.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\cmac.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\cmac.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\cmac.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\cmac.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\cmac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/cmac.o b/MDK-ARM/controller-v2/cmac.o new file mode 100644 index 0000000..25fd98c Binary files /dev/null and b/MDK-ARM/controller-v2/cmac.o differ diff --git a/MDK-ARM/controller-v2/controller-v2.4 b/MDK-ARM/controller-v2/controller-v2.4 index 497cf41..7ddc41e 100644 Binary files a/MDK-ARM/controller-v2/controller-v2.4 and b/MDK-ARM/controller-v2/controller-v2.4 differ diff --git a/MDK-ARM/controller-v2/controller-v2.build_log.htm b/MDK-ARM/controller-v2/controller-v2.build_log.htm new file mode 100644 index 0000000..b5bc41d --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2.build_log.htm @@ -0,0 +1,136 @@ + + +
+

Vision Build Log

+

Tool Versions:

+IDE-Version: Vision V5.25.3.0 +Copyright (C) 2018 ARM Ltd and ARM Germany GmbH. All rights reserved. +License Information: 1 1057513, HP Inc., LIC=TA39H-WDLB6-8Y2VV-PUJQI-ZPP1R-CLZXV + +Tool Versions: +Toolchain: MDK-ARM Professional Version: 5.18 +Toolchain Path: D:\work\Work app\Keil5\ARM\ARMCC\Bin +C Compiler: Armcc.exe V5.06 update 1 (build 61) +Assembler: Armasm.exe V5.06 update 1 (build 61) +Linker/Locator: ArmLink.exe V5.06 update 1 (build 61) +Library Manager: ArmAr.exe V5.06 update 1 (build 61) +Hex Converter: FromElf.exe V5.06 update 1 (build 61) +CPU DLL: SARMCM3.DLL V5.18 +Dialog DLL: DCM.DLL V1.13.6.0 +Target DLL: Segger\JL2CM3.dll V2.99.18.0 +Dialog DLL: TCM.DLL V1.14.8.0 + +

Project:

+C:\Users\10575\Desktop\wuxi\hangdian\controller-hd\MDK-ARM\controller-v2.uvprojx +Project File Date: 01/25/2024 + +

Output:

+*** Using Compiler 'V5.06 update 1 (build 61)', folder: 'D:\work\Work app\Keil5\ARM\ARMCC\Bin' +Rebuild target 'controller-v2' +assembling startup_stm32l476xx.s... +compiling main.c... +compiling i2c.c... +compiling stm32l4xx_ll_pwr.c... +compiling stm32l4xx_ll_tim.c... +compiling gpio.c... +compiling dac.c... +compiling tim.c... +compiling stm32l4xx_ll_utils.c... +compiling stm32l4xx_ll_i2c.c... +compiling adc.c... +compiling stm32l4xx_ll_rcc.c... +compiling stm32l4xx_ll_usart.c... +compiling system_stm32l4xx.c... +compiling stm32l4xx_ll_exti.c... +compiling usart.c... +compiling stm32l4xx_ll_adc.c... +compiling stm32l4xx_ll_spi.c... +compiling spi.c... +compiling stm32l4xx_ll_gpio.c... +compiling dma.c... +compiling stm32l4xx_ll_dma.c... +compiling stm32l4xx_it.c... +compiling stm32l4xx_ll_dac.c... +compiling app.c... +compiling at_hc24.c... +compiling app_hart.c... +compiling key.c... +compiling convert.c... +compiling app_flow.c... +compiling params.c... +compiling pdctrl.c... +compiling mode.c... +compiling mode_dac.c... +compiling mode_pwm.c... +compiling fal_execution.c... +compiling mode_pwmp.c... +compiling eeprom_m95.c... +compiling board.c... +compiling mode_pwmp_hd.c... +compiling rtc_rx8010.c... +compiling eeprom_lc02b.c... +compiling eeprom_fm24.c... +compiling btn.c... +compiling pwms.c... +compiling ntc_3950.c... +compiling leds.c... +compiling delay.c... +compiling sys.c... +compiling malloc.c... +compiling flow_core.c... +compiling gpios.c... +compiling adcs.c... +compiling debug.c... +compiling dacs.c... +compiling lib.c... +compiling spis.c... +compiling uarts.c... +compiling eeprom.c... +compiling sqqueue.c... +compiling aes.c... +compiling i2cs.c... +compiling filter.c... +compiling clist.c... +compiling cmac.c... +compiling fdb.c... +compiling fdb_file.c... +compiling fdb_utils.c... +compiling fal_eeprom95_port.c... +compiling fdb_tsdb.c... +compiling pid_hd.c... +compiling pid.c... +compiling fal_eeprom24_port.c... +compiling fal.c... +compiling fal_flash.c... +compiling fdb_kvdb.c... +compiling fal_partition.c... +compiling fal_rtt.c... +linking... +Program Size: Code=51474 RO-data=5142 RW-data=2720 ZI-data=44084 +"controller-v2\controller-v2.4" - 0 Error(s), 0 Warning(s). + +

Software Packages used:

+ +Package Vendor: ARM + http://www.keil.com/pack/ARM.CMSIS.4.5.0.pack + ARM.CMSIS.4.5.0 + CMSIS (Cortex Microcontroller Software Interface Standard) + * Component: CORE Version: 4.3.0 + +Package Vendor: Keil + http://www.keil.com/pack/Keil.STM32L4xx_DFP.2.1.0.pack + Keil.STM32L4xx_DFP.2.1.0 + STMicroelectronics STM32L4 Series Device Support, Drivers and Examples + +

Collection of Component include folders:

+ .\RTE\_controller-v2 + D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include + D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include + +

Collection of Component Files used:

+ + * Component: ARM::CMSIS:CORE:4.3.0 +Build Time Elapsed: 00:00:04 +
+ + diff --git a/MDK-ARM/controller-v2/controller-v2.htm b/MDK-ARM/controller-v2/controller-v2.htm new file mode 100644 index 0000000..9b10446 --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2.htm @@ -0,0 +1,5488 @@ + + +Static Call Graph - [controller-v2\controller-v2.4] +
+

Static Call Graph for image controller-v2\controller-v2.4


+

#<CALLGRAPH># ARM Linker, 5060061: Last Updated: Fri Jan 26 11:04:55 2024 +

+

Maximum Stack Usage = 896 bytes + Unknown(Cycles, Untraceable Function Pointers)

+Call chain for Maximum Stack Depth:

+do_gc ⇒ move_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +

+

+Mutually Recursive functions +

  • ADC3_IRQHandler   ⇒   ADC3_IRQHandler
    +
  • BusFault_Handler   ⇒   BusFault_Handler
    +
  • HardFault_Handler   ⇒   HardFault_Handler
    +
  • MemManage_Handler   ⇒   MemManage_Handler
    +
  • NMI_Handler   ⇒   NMI_Handler
    +
  • UsageFault_Handler   ⇒   UsageFault_Handler
    + +

    +

    +Function Pointers +

      +
    • ADC1_2_IRQHandler from stm32l4xx_it.o(i.ADC1_2_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • ADC3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • BusFault_Handler from stm32l4xx_it.o(i.BusFault_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • CAN1_RX0_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • CAN1_RX1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • CAN1_SCE_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • CAN1_TX_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • COMP_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DFSDM1_FLT0_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DFSDM1_FLT1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DFSDM1_FLT2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DFSDM1_FLT3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel1_IRQHandler from stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel2_IRQHandler from stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel4_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel5_IRQHandler from stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel6_IRQHandler from stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA1_Channel7_IRQHandler from stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel1_IRQHandler from stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel2_IRQHandler from stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel4_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel5_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel6_IRQHandler from stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DMA2_Channel7_IRQHandler from stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • DebugMon_Handler from stm32l4xx_it.o(i.DebugMon_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI0_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI15_10_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI4_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • EXTI9_5_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • FLASH_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • FMC_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • FPU_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • HardFault_Handler from stm32l4xx_it.o(i.HardFault_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • I2C1_ER_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • I2C1_EV_IRQHandler from stm32l4xx_it.o(i.I2C1_EV_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • I2C2_ER_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • I2C2_EV_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • I2C3_ER_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • I2C3_EV_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • LCD_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • LPTIM1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • LPTIM2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • LPUART1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • MemManage_Handler from stm32l4xx_it.o(i.MemManage_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • NMI_Handler from stm32l4xx_it.o(i.NMI_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • OTG_FS_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • PVD_PVM_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • PendSV_Handler from stm32l4xx_it.o(i.PendSV_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • QUADSPI_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • RCC_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • RNG_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • RTC_Alarm_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • RTC_WKUP_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • Reset_Handler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SAI1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SAI2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SDMMC1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SPI1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SPI2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SPI3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SVC_Handler from stm32l4xx_it.o(i.SVC_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • SWPMI1_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • SysTick_Handler from stm32l4xx_it.o(i.SysTick_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • SystemInit from system_stm32l4xx.o(i.SystemInit) referenced from startup_stm32l476xx.o(.text) +
    • TAMP_STAMP_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM1_BRK_TIM15_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM1_CC_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM1_TRG_COM_TIM17_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM1_UP_TIM16_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM4_IRQHandler from stm32l4xx_it.o(i.TIM4_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • TIM5_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM6_DAC_IRQHandler from stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • TIM7_IRQHandler from stm32l4xx_it.o(i.TIM7_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • TIM8_BRK_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM8_CC_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM8_TRG_COM_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TIM8_UP_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • TSC_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • UART4_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • UART5_IRQHandler from stm32l4xx_it.o(i.UART5_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • USART1_IRQHandler from stm32l4xx_it.o(i.USART1_IRQHandler) referenced from startup_stm32l476xx.o(RESET) +
    • USART2_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • USART3_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • UsageFault_Handler from stm32l4xx_it.o(i.UsageFault_Handler) referenced from startup_stm32l476xx.o(RESET) +
    • WWDG_IRQHandler from startup_stm32l476xx.o(.text) referenced from startup_stm32l476xx.o(RESET) +
    • __main from entry.o(.ARM.Collect$$$$00000000) referenced from startup_stm32l476xx.o(.text) +
    • _dma_enable from spis.o(i._dma_enable) referenced from spis.o(i.spi_create) +
    • _hardware_enable from spis.o(i._hardware_enable) referenced from spis.o(i.spi_create) +
    • _pid_position from pid_hd.o(i._pid_position) referenced from pid_hd.o(i.pid_hd_constructor) +
    • _read from gpios.o(i._read) referenced from gpios.o(i.gpio_create) +
    • _read_byte from i2cs.o(i._read_byte) referenced from i2cs.o(i.i2c_create) +
    • _read_drdy from spis.o(i._read_drdy) referenced from spis.o(i.spi_create) +
    • _read_mem_dma from i2cs.o(i._read_mem_dma) referenced from i2cs.o(i.i2c_create_dma) +
    • _read_regs from spis.o(i._read_regs) referenced from spis.o(i.spi_create) +
    • _reset from gpios.o(i._reset) referenced from gpios.o(i.gpio_create) +
    • _set from gpios.o(i._set) referenced from gpios.o(i.gpio_create) +
    • _set_ctrl_prm_position from pid_hd.o(i._set_ctrl_prm_position) referenced from pid_hd.o(i.pid_hd_constructor) +
    • _set_out_prm_position from pid_hd.o(i._set_out_prm_position) referenced from pid_hd.o(i.pid_hd_constructor) +
    • _spi_dma_callback from spis.o(i._spi_dma_callback) referenced from spis.o(i.spi_create) +
    • _spi_dma_send from spis.o(i._spi_dma_send) referenced from spis.o(i.spi_create) +
    • _spi_read_reg from spis.o(i._spi_read_reg) referenced from spis.o(i.spi_create) +
    • _spi_write_cmd from spis.o(i._spi_write_cmd) referenced from spis.o(i.spi_create) +
    • _spi_write_data from spis.o(i._spi_write_data) referenced from spis.o(i.spi_create) +
    • _spi_write_reg from spis.o(i._spi_write_reg) referenced from spis.o(i.spi_create) +
    • _sputc from printfa.o(i._sputc) referenced from printfa.o(i.__0sprintf) +
    • _start from i2cs.o(i._start) referenced from i2cs.o(i.i2c_create) +
    • _stop from i2cs.o(i._stop) referenced from i2cs.o(i.i2c_create) +
    • _toggle from gpios.o(i._toggle) referenced from gpios.o(i.gpio_create) +
    • _wait_ack from i2cs.o(i._wait_ack) referenced from i2cs.o(i.i2c_create) +
    • _write_byte from i2cs.o(i._write_byte) referenced from i2cs.o(i.i2c_create) +
    • _write_mem_dma from i2cs.o(i._write_mem_dma) referenced from i2cs.o(i.i2c_create_dma) +
    • _write_regs from spis.o(i._write_regs) referenced from spis.o(i.spi_create) +
    • _write_word from i2cs.o(i._write_word) referenced from i2cs.o(i.i2c_create) +
    • alloc_kv_cb from fdb_kvdb.o(i.alloc_kv_cb) referenced from fdb_kvdb.o(i.alloc_kv) +
    • at_cmd_name from at_hc24.o(i.at_cmd_name) referenced 2 times from at_hc24.o(.constdata) +
    • at_cmd_test from at_hc24.o(i.at_cmd_test) referenced from at_hc24.o(.constdata) +
    • check_and_recovery_gc_cb from fdb_kvdb.o(i.check_and_recovery_gc_cb) referenced from fdb_kvdb.o(i._fdb_kv_load) +
    • check_and_recovery_kv_cb from fdb_kvdb.o(i.check_and_recovery_kv_cb) referenced from fdb_kvdb.o(i._fdb_kv_load) +
    • check_oldest_addr_cb from fdb_kvdb.o(i.check_oldest_addr_cb) referenced from fdb_kvdb.o(i.fdb_kvdb_init) +
    • check_sec_hdr_cb from fdb_kvdb.o(i.check_sec_hdr_cb) referenced from fdb_kvdb.o(i._fdb_kv_load) +
    • check_sec_hdr_cb from fdb_tsdb.o(i.check_sec_hdr_cb) referenced from fdb_tsdb.o(i.fdb_tsdb_init) +
    • dma_rx_cb from eeprom_m95.o(i.dma_rx_cb) referenced from eeprom_m95.o(i.eeprom_m95_init) +
    • dma_tx_cb from eeprom_m95.o(i.dma_tx_cb) referenced from eeprom_m95.o(i.eeprom_m95_init) +
    • do_gc from fdb_kvdb.o(i.do_gc) referenced from fdb_kvdb.o(i.gc_collect_by_free_size) +
    • eeprom_fm24_dma_rx_cb from eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb) referenced from eeprom_fm24.o(i.eeprom_fm24_init) +
    • eeprom_fm24_dma_tx_cb from eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb) referenced from eeprom_fm24.o(i.eeprom_fm24_init) +
    • erase from fal_eeprom95_port.o(i.erase) referenced 6 times from fal_eeprom95_port.o(.data) +
    • find_kv_cb from fdb_kvdb.o(i.find_kv_cb) referenced from fdb_kvdb.o(i.find_kv_no_cache) +
    • format_all_cb from fdb_tsdb.o(i.format_all_cb) referenced from fdb_tsdb.o(i.tsl_format_all) +
    • gc_check_cb from fdb_kvdb.o(i.gc_check_cb) referenced from fdb_kvdb.o(i.gc_collect_by_free_size) +
    • get_time from fal_execution.o(i.get_time) referenced from fal_execution.o(i.fal_execution_init) +
    • hart_rx_cb from app_hart.o(i.hart_rx_cb) referenced from app_hart.o(i.hart_ble_init) +
    • hart_rx_cb from app_hart.o(i.hart_rx_cb) referenced from app_hart.o(i.hart_uart_init) +
    • hart_tx_complete_cb from app_hart.o(i.hart_tx_complete_cb) referenced from app_hart.o(i.hart_uart_init) +
    • init from fal_eeprom95_port.o(i.init) referenced 6 times from fal_eeprom95_port.o(.data) +
    • key_1_double_click_handler from key.o(i.key_1_double_click_handler) referenced from key.o(i.key_init) +
    • key_1_long_press_hold_handler from key.o(i.key_1_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_1_press_down_handler from key.o(i.key_1_press_down_handler) referenced from key.o(i.key_init) +
    • key_1_up_handler from key.o(i.key_1_up_handler) referenced from key.o(i.key_init) +
    • key_2_double_click_handler from key.o(i.key_2_double_click_handler) referenced from key.o(i.key_init) +
    • key_2_long_press_hold_handler from key.o(i.key_2_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_2_press_down_handler from key.o(i.key_2_press_down_handler) referenced from key.o(i.key_init) +
    • key_2_up_handler from key.o(i.key_2_up_handler) referenced from key.o(i.key_init) +
    • key_3_double_click_handler from key.o(i.key_3_double_click_handler) referenced from key.o(i.key_init) +
    • key_3_long_press_hold_handler from key.o(i.key_3_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_3_press_down_handler from key.o(i.key_3_press_down_handler) referenced from key.o(i.key_init) +
    • key_3_up_handler from key.o(i.key_3_up_handler) referenced from key.o(i.key_init) +
    • key_4_double_click_handler from key.o(i.key_4_double_click_handler) referenced from key.o(i.key_init) +
    • key_4_long_press_hold_handler from key.o(i.key_4_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_4_press_down_handler from key.o(i.key_4_press_down_handler) referenced from key.o(i.key_init) +
    • key_4_up_handler from key.o(i.key_4_up_handler) referenced from key.o(i.key_init) +
    • key_5_double_click_handler from key.o(i.key_5_double_click_handler) referenced from key.o(i.key_init) +
    • key_5_long_press_hold_handler from key.o(i.key_5_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_5_press_down_handler from key.o(i.key_5_press_down_handler) referenced from key.o(i.key_init) +
    • key_5_up_handler from key.o(i.key_5_up_handler) referenced from key.o(i.key_init) +
    • key_6_double_click_handler from key.o(i.key_6_double_click_handler) referenced from key.o(i.key_init) +
    • key_6_long_press_hold_handler from key.o(i.key_6_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_6_press_down_handler from key.o(i.key_6_press_down_handler) referenced from key.o(i.key_init) +
    • key_6_up_handler from key.o(i.key_6_up_handler) referenced from key.o(i.key_init) +
    • key_auto_long_press_hold_handler from key.o(i.key_auto_long_press_hold_handler) referenced from key.o(i.key_init) +
    • key_auto_press_down_handler from key.o(i.key_auto_press_down_handler) referenced from key.o(i.key_init) +
    • key_auto_up_handler from key.o(i.key_auto_up_handler) referenced from key.o(i.key_init) +
    • main from main.o(i.main) referenced from entry9a.o(.ARM.Collect$$$$0000000B) +
    • mode_params_save_cb from mode.o(i.mode_params_save_cb) referenced from mode.o(i.mode_init) +
    • my_mem_init from malloc.o(i.my_mem_init) referenced 2 times from malloc.o(.data) +
    • my_mem_perused from malloc.o(i.my_mem_perused) referenced 2 times from malloc.o(.data) +
    • read from fal_eeprom24_port.o(i.read) referenced 2 times from fal_eeprom24_port.o(.data) +
    • read1 from fal_eeprom95_port.o(i.read1) referenced 2 times from fal_eeprom95_port.o(.data) +
    • read2 from fal_eeprom95_port.o(i.read2) referenced 2 times from fal_eeprom95_port.o(.data) +
    • read_button_gpio from key.o(i.read_button_gpio) referenced from key.o(i.key_init) +
    • sector_statistics_cb from fdb_kvdb.o(i.sector_statistics_cb) referenced from fdb_kvdb.o(i.alloc_kv) +
    • spi_read_write_byte from spis.o(i.spi_read_write_byte) referenced from spis.o(i.spi_create) +
    • write from fal_eeprom24_port.o(i.write) referenced 2 times from fal_eeprom24_port.o(.data) +
    • write1 from fal_eeprom95_port.o(i.write1) referenced 2 times from fal_eeprom95_port.o(.data) +
    • write2 from fal_eeprom95_port.o(i.write2) referenced 2 times from fal_eeprom95_port.o(.data) +
    +

    +

    +Global Symbols +

    +

    __main (Thumb, 0 bytes, Stack size unknown bytes, entry.o(.ARM.Collect$$$$00000000)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(.text) +
    +

    _main_stk (Thumb, 0 bytes, Stack size unknown bytes, entry2.o(.ARM.Collect$$$$00000001)) + +

    _main_scatterload (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004)) +

    [Calls]

    • >>   __scatterload +
    + +

    __main_after_scatterload (Thumb, 0 bytes, Stack size unknown bytes, entry5.o(.ARM.Collect$$$$00000004)) +

    [Called By]

    • >>   __scatterload +
    + +

    _main_clock (Thumb, 0 bytes, Stack size unknown bytes, entry7b.o(.ARM.Collect$$$$00000008)) + +

    _main_cpp_init (Thumb, 0 bytes, Stack size unknown bytes, entry8b.o(.ARM.Collect$$$$0000000A)) + +

    _main_init (Thumb, 0 bytes, Stack size unknown bytes, entry9a.o(.ARM.Collect$$$$0000000B)) + +

    __rt_final_cpp (Thumb, 0 bytes, Stack size unknown bytes, entry10a.o(.ARM.Collect$$$$0000000D)) + +

    __rt_final_exit (Thumb, 0 bytes, Stack size unknown bytes, entry11a.o(.ARM.Collect$$$$0000000F)) + +

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

    • startup_stm32l476xx.o(RESET) +
    +

    ADC3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +

    [Calls]

    • >>   ADC3_IRQHandler +
    +
    [Called By]
    • >>   ADC3_IRQHandler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    CAN1_RX0_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    CAN1_TX_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    COMP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DFSDM1_FLT0_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DFSDM1_FLT1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DFSDM1_FLT2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DFSDM1_FLT3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel4_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel5_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    FMC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    FPU_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    I2C3_ER_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    I2C3_EV_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    LCD_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    LPTIM1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    LPTIM2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    LPUART1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    OTG_FS_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    PVD_PVM_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    QUADSPI_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    RNG_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    RTC_WKUP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SAI1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SAI2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SDMMC1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    SPI3_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SWPMI1_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TAMP_STAMP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM1_BRK_TIM15_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    TIM1_TRG_COM_TIM17_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM1_UP_TIM16_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM2_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    TIM5_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM8_BRK_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM8_CC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM8_TRG_COM_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM8_UP_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TSC_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    UART4_IRQHandler (Thumb, 0 bytes, Stack size 0 bytes, startup_stm32l476xx.o(.text)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

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

    • startup_stm32l476xx.o(RESET) +
    +

    rand (Thumb, 20 bytes, Stack size 0 bytes, rand.o(.text)) +

    [Called By]

    • >>   key_init +
    + +

    srand (Thumb, 6 bytes, Stack size 0 bytes, rand.o(.text)) +

    [Called By]

    • >>   key_init +
    + +

    __aeabi_memcpy (Thumb, 36 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED) + +

    __aeabi_memcpy4 (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text)) +

    [Called By]

    • >>   check_sec_hdr_cb +
    • >>   update_sector_cache +
    • >>   read_sector_info +
    • >>   format_sector +
    + +

    __aeabi_memcpy8 (Thumb, 0 bytes, Stack size 0 bytes, memcpya.o(.text), UNUSED) + +

    __aeabi_memset (Thumb, 14 bytes, Stack size 0 bytes, memseta.o(.text)) +

    [Called By]

    • >>   _fdb_set_status +
    • >>   format_sector +
    • >>   create_kv_blob +
    • >>   align_write +
    • >>   _memset$wrapper +
    • >>   __aeabi_memclr +
    + +

    __aeabi_memset4 (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED) + +

    __aeabi_memset8 (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED) + +

    __aeabi_memclr (Thumb, 4 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED) +

    [Calls]

    • >>   __aeabi_memset +
    + +

    __aeabi_memclr4 (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    • >>   MX_SPI2_Init +
    • >>   MX_SPI1_Init +
    • >>   MX_I2C1_Init +
    • >>   MX_GPIO_Init +
    • >>   MX_DAC1_Init +
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    • >>   h24_bluetooth_work +
    • >>   move_kv +
    • >>   get_kv_from_cache +
    • >>   del_kv +
    + +

    __aeabi_memclr8 (Thumb, 0 bytes, Stack size 0 bytes, memseta.o(.text), UNUSED) + +

    _memset$wrapper (Thumb, 18 bytes, Stack size 8 bytes, memseta.o(.text), UNUSED) +

    [Calls]

    • >>   __aeabi_memset +
    + +

    strncpy (Thumb, 24 bytes, Stack size 8 bytes, strncpy.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = strncpy +
    +
    [Called By]
    • >>   move_kv +
    + +

    strlen (Thumb, 14 bytes, Stack size 0 bytes, strlen.o(.text)) +

    [Called By]

    • >>   hex_format_dec +
    • >>   dec_format_hex +
    • >>   fdb_kv_set_default +
    • >>   set_kv +
    • >>   kv_auto_update +
    • >>   find_kv_cb +
    • >>   find_kv +
    • >>   del_kv +
    • >>   create_kv_blob +
    + +

    strcmp (Thumb, 28 bytes, Stack size 8 bytes, strcmp.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = strcmp +
    +
    [Called By]
    • >>   fal_partition_find +
    + +

    strncmp (Thumb, 30 bytes, Stack size 12 bytes, strncmp.o(.text)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = strncmp +
    +
    [Called By]
    • >>   get_kv_from_cache +
    • >>   find_kv_cb +
    • >>   fal_flash_device_find +
    + +

    __aeabi_fadd (Thumb, 164 bytes, Stack size 16 bytes, fadd.o(.text)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   _float_round +
    • >>   _float_epilogue +
    +
    [Called By]
    • >>   lpf_window_update +
    • >>   get_actual_travel +
    • >>   pwm_output_position +
    • >>   __aeabi_fsub +
    • >>   __aeabi_frsub +
    • >>   part_travel_deal +
    • >>   i2psb +
    • >>   get_pressure +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   execute_dac_plan1 +
    • >>   calculate_pwm_duty +
    • >>   lpf_update +
    • >>   get_current +
    • >>   _pid_position +
    + +

    __aeabi_fsub (Thumb, 6 bytes, Stack size 0 bytes, fadd.o(.text)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fadd +
    +
    [Called By]
    • >>   calib_parapos_perent +
    • >>   set_pwm_calib_current +
    • >>   part_travel_deal +
    • >>   i2psb +
    • >>   get_show_travel +
    • >>   get_pid_travel +
    • >>   dead_zone_deal +
    • >>   pwmp_control_update +
    • >>   pwmp_adjust_hd_PID_tuning +
    • >>   get_time_tangent +
    • >>   execute_dac_plan1 +
    • >>   lpf_update +
    • >>   _pid_position +
    + +

    __aeabi_frsub (Thumb, 6 bytes, Stack size 0 bytes, fadd.o(.text)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = __aeabi_frsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fadd +
    +
    [Called By]
    • >>   set_pwm_calib_current +
    • >>   i2psb +
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    __aeabi_fmul (Thumb, 100 bytes, Stack size 8 bytes, fmul.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = __aeabi_fmul +
    +
    [Called By]
    • >>   get_actual_travel +
    • >>   calib_parapos_perent +
    • >>   set_pwm_calib_current +
    • >>   pwm_output_position +
    • >>   part_travel_deal +
    • >>   i2psb +
    • >>   scheduler_time_occupancy_get +
    • >>   get_pressure +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   pwmp_adjust_hd_PID_tuning +
    • >>   get_pwmp_control_kp +
    • >>   execute_dac_plan1 +
    • >>   calculate_pwm_duty +
    • >>   mode_pwmp_hd_process +
    • >>   lpf_update +
    • >>   get_current_deal +
    • >>   get_current +
    • >>   _pid_position +
    + +

    __aeabi_fdiv (Thumb, 124 bytes, Stack size 8 bytes, fdiv.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = __aeabi_fdiv +
    +
    [Calls]
    • >>   _float_round +
    +
    [Called By]
    • >>   ip2current +
    • >>   calib_parapos_perent +
    • >>   set_pwm_calib_current +
    • >>   i2psb +
    • >>   scheduler_time_occupancy_get +
    • >>   loop_current_convert +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   pwmp_adjust_hd_PID_tuning +
    • >>   get_time_tangent +
    • >>   execute_dac_plan1 +
    • >>   calculate_pwm_duty +
    • >>   calculate_pwm_freq +
    • >>   mode_pwmp_hd_process +
    • >>   get_current +
    + +

    __ARM_scalbnf (Thumb, 24 bytes, Stack size 0 bytes, fscalb.o(.text)) +

    [Called By]

    • >>   pwm_output_position +
    • >>   i2psb +
    • >>   pwmp_adjust_hd_pid_calculate +
    + +

    scalbnf (Thumb, 0 bytes, Stack size 0 bytes, fscalb.o(.text), UNUSED) + +

    __aeabi_dadd (Thumb, 322 bytes, Stack size 48 bytes, dadd.o(.text)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_lasr +
    • >>   __aeabi_llsl +
    • >>   _double_round +
    • >>   _double_epilogue +
    +
    [Called By]
    • >>   __aeabi_dsub +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   execute_dac_plan1 +
    • >>   __aeabi_drsub +
    • >>   _fp_digits +
    + +

    __aeabi_dsub (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_dadd +
    +
    [Called By]
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   execute_dac_plan1 +
    + +

    __aeabi_drsub (Thumb, 6 bytes, Stack size 0 bytes, dadd.o(.text), UNUSED) +

    [Calls]

    • >>   __aeabi_dadd +
    + +

    __aeabi_dmul (Thumb, 228 bytes, Stack size 48 bytes, dmul.o(.text)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = __aeabi_dmul ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   _double_epilogue +
    +
    [Called By]
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   execute_dac_plan1 +
    • >>   _fp_digits +
    + +

    __aeabi_ddiv (Thumb, 222 bytes, Stack size 32 bytes, ddiv.o(.text)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = __aeabi_ddiv ⇒ _double_round +
    +
    [Calls]
    • >>   _double_round +
    +
    [Called By]
    • >>   ntc_get_temp +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   _fp_digits +
    + +

    __aeabi_i2f (Thumb, 18 bytes, Stack size 0 bytes, fflti.o(.text)) +

    [Stack]

    • Max Depth = 4
    • Call Chain = __aeabi_i2f ⇒ _float_epilogue +
    +
    [Calls]
    • >>   _float_epilogue +
    +
    [Called By]
    • >>   calib_parapos_perent +
    • >>   i2psb +
    • >>   execute_dac_plan1 +
    + +

    __aeabi_ui2f (Thumb, 10 bytes, Stack size 0 bytes, ffltui.o(.text)) +

    [Stack]

    • Max Depth = 4
    • Call Chain = __aeabi_ui2f ⇒ _float_epilogue +
    +
    [Calls]
    • >>   _float_epilogue +
    +
    [Called By]
    • >>   lpf_window_update +
    • >>   ip2current +
    • >>   get_actual_travel +
    • >>   calib_parapos_perent +
    • >>   set_pwm_calib_current +
    • >>   i2psb +
    • >>   scheduler_time_occupancy_get +
    • >>   loop_current_convert +
    • >>   get_pressure +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pwmp_adjust_hd_PID_tuning +
    • >>   execute_dac_plan1 +
    • >>   calculate_pwm_duty +
    • >>   calculate_pwm_freq +
    • >>   mode_pwmp_hd_process +
    • >>   get_current_deal +
    • >>   get_current +
    + +

    __aeabi_i2d (Thumb, 34 bytes, Stack size 16 bytes, dflti.o(.text)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = __aeabi_i2d ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   _double_epilogue +
    +
    [Called By]
    • >>   ntc_get_temp +
    + +

    __aeabi_ui2d (Thumb, 26 bytes, Stack size 16 bytes, dfltui.o(.text)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = __aeabi_ui2d ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   _double_epilogue +
    +
    [Called By]
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   execute_dac_plan1 +
    + +

    __aeabi_f2uiz (Thumb, 40 bytes, Stack size 0 bytes, ffixui.o(.text)) +

    [Called By]

    • >>   lpf_window_update +
    • >>   pwm_output_position +
    • >>   i2psb +
    • >>   scheduler_time_occupancy_get +
    • >>   execute_dac_plan1 +
    • >>   calculate_pwm_duty +
    • >>   get_current_deal +
    + +

    __aeabi_d2uiz (Thumb, 50 bytes, Stack size 8 bytes, dfixui.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = __aeabi_d2uiz +
    +
    [Calls]
    • >>   __aeabi_llsr +
    +
    [Called By]
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   execute_dac_plan1 +
    + +

    __aeabi_f2d (Thumb, 38 bytes, Stack size 0 bytes, f2d.o(.text)) +

    [Called By]

    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   execute_dac_plan1 +
    • >>   mode_pwmp_hd_process +
    • >>   _pid_position +
    + +

    __aeabi_cdcmpeq (Thumb, 0 bytes, Stack size 0 bytes, cdcmple.o(.text), UNUSED) + +

    __aeabi_cdcmple (Thumb, 48 bytes, Stack size 0 bytes, cdcmple.o(.text)) +

    [Called By]

    • >>   execute_dac_plan1 +
    • >>   _pid_position +
    + +

    __aeabi_cdrcmple (Thumb, 48 bytes, Stack size 0 bytes, cdrcmple.o(.text)) +

    [Called By]

    • >>   _pid_position +
    • >>   _fp_digits +
    + +

    __aeabi_d2f (Thumb, 56 bytes, Stack size 8 bytes, d2f.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = __aeabi_d2f +
    +
    [Calls]
    • >>   _float_round +
    +
    [Called By]
    • >>   ntc_get_temp +
    • >>   pwmp_adjust_hd_pid_calculate +
    + +

    __aeabi_cfcmpeq (Thumb, 0 bytes, Stack size 0 bytes, cfcmple.o(.text)) +

    [Called By]

    • >>   travel_statistics +
    + +

    __aeabi_cfcmple (Thumb, 20 bytes, Stack size 0 bytes, cfcmple.o(.text)) +

    [Called By]

    • >>   swo_output_deal +
    • >>   small_signal_deal +
    • >>   temperature_inspection +
    • >>   execute_dac_plan1 +
    • >>   _pid_position +
    + +

    __aeabi_cfrcmple (Thumb, 20 bytes, Stack size 0 bytes, cfrcmple.o(.text)) +

    [Called By]

    • >>   swo_output_deal +
    • >>   small_signal_deal +
    • >>   dead_zone_deal +
    • >>   temperature_inspection +
    • >>   pwmp_adjust_hd_PID_tuning +
    • >>   _pid_position +
    + +

    __aeabi_uidiv (Thumb, 0 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED) + +

    __aeabi_uidivmod (Thumb, 44 bytes, Stack size 12 bytes, uidiv.o(.text), UNUSED) +

    [Called By]

    • >>   _printf_core +
    + +

    __aeabi_uldivmod (Thumb, 98 bytes, Stack size 40 bytes, uldiv.o(.text), UNUSED) +

    [Calls]

    • >>   __aeabi_llsr +
    • >>   __aeabi_llsl +
    +
    [Called By]
    • >>   _printf_core +
    • >>   _fp_digits +
    + +

    __aeabi_llsl (Thumb, 30 bytes, Stack size 0 bytes, llshl.o(.text)) +

    [Called By]

    • >>   __aeabi_dadd +
    • >>   __aeabi_uldivmod +
    • >>   _double_epilogue +
    • >>   __aeabi_d2ulz +
    + +

    _ll_shift_l (Thumb, 0 bytes, Stack size 0 bytes, llshl.o(.text), UNUSED) + +

    __aeabi_llsr (Thumb, 32 bytes, Stack size 0 bytes, llushr.o(.text)) +

    [Called By]

    • >>   __aeabi_d2uiz +
    • >>   __aeabi_uldivmod +
    • >>   _double_epilogue +
    • >>   __aeabi_d2ulz +
    + +

    _ll_ushift_r (Thumb, 0 bytes, Stack size 0 bytes, llushr.o(.text), UNUSED) + +

    __aeabi_lasr (Thumb, 36 bytes, Stack size 0 bytes, llsshr.o(.text)) +

    [Called By]

    • >>   __aeabi_dadd +
    + +

    _ll_sshift_r (Thumb, 0 bytes, Stack size 0 bytes, llsshr.o(.text), UNUSED) + +

    __I$use$fp (Thumb, 0 bytes, Stack size 0 bytes, iusefp.o(.text), UNUSED) + +

    _float_round (Thumb, 18 bytes, Stack size 0 bytes, fepilogue.o(.text)) +

    [Called By]

    • >>   __aeabi_d2f +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    + +

    _float_epilogue (Thumb, 92 bytes, Stack size 4 bytes, fepilogue.o(.text)) +

    [Stack]

    • Max Depth = 4
    • Call Chain = _float_epilogue +
    +
    [Called By]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_i2f +
    • >>   __aeabi_fadd +
    + +

    _double_round (Thumb, 30 bytes, Stack size 8 bytes, depilogue.o(.text)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = _double_round +
    +
    [Called By]
    • >>   __aeabi_ddiv +
    • >>   __aeabi_dadd +
    • >>   _double_epilogue +
    + +

    _double_epilogue (Thumb, 156 bytes, Stack size 32 bytes, depilogue.o(.text)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_llsr +
    • >>   __aeabi_llsl +
    • >>   _double_round +
    +
    [Called By]
    • >>   __aeabi_ui2d +
    • >>   __aeabi_dmul +
    • >>   __aeabi_dadd +
    • >>   __aeabi_i2d +
    + +

    __aeabi_d2ulz (Thumb, 48 bytes, Stack size 0 bytes, dfixul.o(.text), UNUSED) +

    [Calls]

    • >>   __aeabi_llsr +
    • >>   __aeabi_llsl +
    +
    [Called By]
    • >>   _fp_digits +
    + +

    __scatterload (Thumb, 28 bytes, Stack size 0 bytes, init.o(.text)) +

    [Calls]

    • >>   __main_after_scatterload +
    +
    [Called By]
    • >>   _main_scatterload +
    + +

    __scatterload_rt2 (Thumb, 0 bytes, Stack size 0 bytes, init.o(.text), UNUSED) + +

    __decompress (Thumb, 0 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) + +

    __decompress1 (Thumb, 86 bytes, Stack size unknown bytes, __dczerorl2.o(.text), UNUSED) + +

    ADC1_2_IRQHandler (Thumb, 6 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.ADC1_2_IRQHandler)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = ADC1_2_IRQHandler ⇒ adc_env_callback +
    +
    [Calls]
    • >>   adc_env_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    AES_CMAC_Final (Thumb, 328 bytes, Stack size 48 bytes, cmac.o(i.AES_CMAC_Final)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = AES_CMAC_Final ⇒ aes_encrypt ⇒ mix_sub_columns +
    +
    [Calls]
    • >>   aes_encrypt +
    • >>   memcpyL +
    • >>   _memset +
    +
    [Called By]
    • >>   fal_execution_set_cmac +
    + +

    AES_CMAC_Init (Thumb, 36 bytes, Stack size 8 bytes, cmac.o(i.AES_CMAC_Init)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = AES_CMAC_Init +
    +
    [Calls]
    • >>   _memset +
    +
    [Called By]
    • >>   fal_execution_set_cmac +
    + +

    AES_CMAC_SetKey (Thumb, 10 bytes, Stack size 0 bytes, cmac.o(i.AES_CMAC_SetKey)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = AES_CMAC_SetKey ⇒ aes_set_key +
    +
    [Calls]
    • >>   aes_set_key +
    +
    [Called By]
    • >>   fal_execution_set_cmac +
    + +

    AES_CMAC_Update (Thumb, 180 bytes, Stack size 48 bytes, cmac.o(i.AES_CMAC_Update)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = AES_CMAC_Update ⇒ aes_encrypt ⇒ mix_sub_columns +
    +
    [Calls]
    • >>   aes_encrypt +
    • >>   memcpyL +
    +
    [Called By]
    • >>   fal_execution_set_cmac +
    + +

    BusFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.BusFault_Handler)) +

    [Calls]

    • >>   BusFault_Handler +
    +
    [Called By]
    • >>   BusFault_Handler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DBG_ASSERT (Thumb, 10 bytes, Stack size 0 bytes, debug.o(i.DBG_ASSERT)) +

    [Called By]

    • >>   i2c_dma_set_address +
    • >>   eeprom_fm24_dma_tx_cb +
    • >>   eeprom_fm24_dma_rx_cb +
    • >>   spi_create +
    • >>   gpio_create +
    • >>   eeprom_m95_write +
    • >>   eeprom_m95_init +
    • >>   adc_result_median +
    • >>   adc_init +
    • >>   lpf_window_init +
    • >>   spi_read_write_byte +
    • >>   spi_delay +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   _write_regs +
    • >>   _spi_write_reg +
    • >>   _spi_write_data +
    • >>   _spi_write_cmd +
    • >>   _spi_read_reg +
    • >>   _spi_dma_callback +
    • >>   _read_regs +
    • >>   _read_drdy +
    • >>   _hardware_enable +
    • >>   _dma_enable +
    • >>   uart_reception_callback +
    • >>   uart_dma_reception_callback +
    • >>   i2c_ev_callback +
    • >>   i2c_dma_callback +
    • >>   alog_control_module +
    • >>   adc_env_callback +
    • >>   adc_dma_callback +
    • >>   hart_rx_cb +
    • >>   mode_init +
    • >>   fal_execution_kv_write +
    • >>   fal_execution_kv_read +
    • >>   adc_result_average +
    • >>   uart_send_data +
    • >>   uart_create +
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   pwmp_adjust_hd_idle +
    • >>   pwmp_adjust_hd_accurate_position0 +
    • >>   pdctrl_stop +
    • >>   pdctrl_run +
    • >>   pdctrl_init +
    • >>   mode_pwmp_hd_init +
    • >>   delay +
    • >>   _write_mem_dma +
    • >>   _write_byte +
    • >>   _wait_ack +
    • >>   _stop +
    • >>   _start +
    • >>   _read_mem_dma +
    • >>   _read_byte +
    + +

    DMA1_Channel1_IRQHandler (Thumb, 6 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA1_Channel1_IRQHandler ⇒ adc_dma_callback +
    +
    [Calls]
    • >>   adc_dma_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA1_Channel2_IRQHandler (Thumb, 6 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA1_Channel2_IRQHandler ⇒ adc_dma_callback +
    +
    [Calls]
    • >>   adc_dma_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA1_Channel5_IRQHandler (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    DMA1_Channel6_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA1_Channel6_IRQHandler ⇒ i2c_dma_callback +
    +
    [Calls]
    • >>   i2c_dma_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA1_Channel7_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA1_Channel7_IRQHandler ⇒ i2c_dma_callback +
    +
    [Calls]
    • >>   i2c_dma_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel1_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA2_Channel1_IRQHandler ⇒ uart_dma_reception_callback +
    +
    [Calls]
    • >>   uart_dma_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel2_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA2_Channel2_IRQHandler ⇒ uart_dma_reception_callback +
    +
    [Calls]
    • >>   uart_dma_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel6_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA2_Channel6_IRQHandler ⇒ uart_dma_reception_callback +
    +
    [Calls]
    • >>   uart_dma_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DMA2_Channel7_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = DMA2_Channel7_IRQHandler ⇒ uart_dma_reception_callback +
    +
    [Calls]
    • >>   uart_dma_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    DebugMon_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.DebugMon_Handler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    HardFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.HardFault_Handler)) +

    [Calls]

    • >>   HardFault_Handler +
    +
    [Called By]
    • >>   HardFault_Handler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    I2C1_EV_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.I2C1_EV_IRQHandler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = I2C1_EV_IRQHandler ⇒ i2c_ev_callback +
    +
    [Calls]
    • >>   i2c_ev_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    LL_ADC_CommonInit (Thumb, 80 bytes, Stack size 12 bytes, stm32l4xx_ll_adc.o(i.LL_ADC_CommonInit)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_ADC_CommonInit +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_ADC_Init (Thumb, 44 bytes, Stack size 12 bytes, stm32l4xx_ll_adc.o(i.LL_ADC_Init)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_ADC_Init +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_ADC_REG_Init (Thumb, 90 bytes, Stack size 16 bytes, stm32l4xx_ll_adc.o(i.LL_ADC_REG_Init)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = LL_ADC_REG_Init +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DAC_Init (Thumb, 104 bytes, Stack size 16 bytes, stm32l4xx_ll_dac.o(i.LL_DAC_Init)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = LL_DAC_Init +
    +
    [Called By]
    • >>   MX_DAC1_Init +
    + +

    LL_GPIO_Init (Thumb, 316 bytes, Stack size 24 bytes, stm32l4xx_ll_gpio.o(i.LL_GPIO_Init)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = LL_GPIO_Init +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    • >>   MX_SPI2_Init +
    • >>   MX_SPI1_Init +
    • >>   MX_I2C1_Init +
    • >>   MX_GPIO_Init +
    • >>   MX_DAC1_Init +
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_I2C_Init (Thumb, 106 bytes, Stack size 8 bytes, stm32l4xx_ll_i2c.o(i.LL_I2C_Init)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_I2C_Init +
    +
    [Called By]
    • >>   MX_I2C1_Init +
    + +

    LL_IncTick (Thumb, 10 bytes, Stack size 0 bytes, sys.o(i.LL_IncTick)) +

    [Called By]

    • >>   TIM6_DAC_IRQHandler +
    + +

    LL_Init1msTick (Thumb, 26 bytes, Stack size 0 bytes, stm32l4xx_ll_utils.o(i.LL_Init1msTick)) +

    [Called By]

    • >>   SystemClock_Config +
    + +

    LL_RCC_GetUARTClockFreq (Thumb, 192 bytes, Stack size 24 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = LL_RCC_GetUARTClockFreq ⇒ RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   RCC_GetSystemClockFreq +
    • >>   RCC_GetPCLK1ClockFreq +
    • >>   RCC_GetHCLKClockFreq +
    • >>   LL_RCC_LSE_IsReady +
    • >>   LL_RCC_HSI_IsReady +
    +
    [Called By]
    • >>   LL_USART_Init +
    + +

    LL_RCC_GetUSARTClockFreq (Thumb, 268 bytes, Stack size 16 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = LL_RCC_GetUSARTClockFreq ⇒ RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   RCC_GetSystemClockFreq +
    • >>   RCC_GetPCLK2ClockFreq +
    • >>   RCC_GetPCLK1ClockFreq +
    • >>   RCC_GetHCLKClockFreq +
    • >>   LL_RCC_LSE_IsReady +
    • >>   LL_RCC_HSI_IsReady +
    +
    [Called By]
    • >>   LL_USART_Init +
    + +

    LL_SPI_Init (Thumb, 112 bytes, Stack size 8 bytes, stm32l4xx_ll_spi.o(i.LL_SPI_Init)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_SPI_Init +
    +
    [Called By]
    • >>   MX_SPI2_Init +
    • >>   MX_SPI1_Init +
    + +

    LL_SetSystemCoreClock (Thumb, 6 bytes, Stack size 0 bytes, stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock)) +

    [Called By]

    • >>   delay_init +
    • >>   SystemClock_Config +
    + +

    LL_TIM_Init (Thumb, 160 bytes, Stack size 32 bytes, stm32l4xx_ll_tim.o(i.LL_TIM_Init)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = LL_TIM_Init +
    +
    [Called By]
    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    LL_TIM_OC_Init (Thumb, 88 bytes, Stack size 0 bytes, stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_TIM_OC_Init ⇒ OC6Config +
    +
    [Calls]
    • >>   OC6Config +
    • >>   OC5Config +
    • >>   OC4Config +
    • >>   OC3Config +
    • >>   OC2Config +
    • >>   OC1Config +
    +
    [Called By]
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    LL_USART_Init (Thumb, 198 bytes, Stack size 16 bytes, stm32l4xx_ll_usart.o(i.LL_USART_Init)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = LL_USART_Init ⇒ LL_RCC_GetUARTClockFreq ⇒ RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_mDelay (Thumb, 32 bytes, Stack size 8 bytes, stm32l4xx_ll_utils.o(i.LL_mDelay)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_mDelay +
    +
    [Called By]
    • >>   adc_init +
    • >>   hart_uart_init +
    • >>   hart_ble_init +
    + +

    MX_ADC1_Init (Thumb, 730 bytes, Stack size 104 bytes, adc.o(i.MX_ADC1_Init)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = MX_ADC1_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_ADC_REG_Init +
    • >>   LL_ADC_Init +
    • >>   LL_ADC_CommonInit +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_RCC_SetADCClockSource +
    • >>   LL_DMA_SetPeriphSize +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_SetPeriphIncMode +
    • >>   LL_DMA_SetMode +
    • >>   LL_DMA_SetMemorySize +
    • >>   LL_DMA_SetMemoryIncMode +
    • >>   LL_DMA_SetDataTransferDirection +
    • >>   LL_DMA_SetChannelPriorityLevel +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   LL_ADC_SetChannelSingleDiff +
    • >>   LL_ADC_SetChannelSamplingTime +
    • >>   LL_ADC_REG_SetSequencerRanks +
    • >>   LL_GPIO_Init +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_ADC2_Init (Thumb, 348 bytes, Stack size 96 bytes, adc.o(i.MX_ADC2_Init)) +

    [Stack]

    • Max Depth = 120
    • Call Chain = MX_ADC2_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_ADC_REG_Init +
    • >>   LL_ADC_Init +
    • >>   LL_ADC_CommonInit +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_RCC_SetADCClockSource +
    • >>   LL_DMA_SetPeriphSize +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_SetPeriphIncMode +
    • >>   LL_DMA_SetMode +
    • >>   LL_DMA_SetMemorySize +
    • >>   LL_DMA_SetMemoryIncMode +
    • >>   LL_DMA_SetDataTransferDirection +
    • >>   LL_DMA_SetChannelPriorityLevel +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   LL_ADC_SetChannelSingleDiff +
    • >>   LL_ADC_SetChannelSamplingTime +
    • >>   LL_ADC_REG_SetSequencerRanks +
    • >>   LL_GPIO_Init +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_DAC1_Init (Thumb, 172 bytes, Stack size 64 bytes, dac.o(i.MX_DAC1_Init)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = MX_DAC1_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_DAC_Init +
    • >>   LL_GPIO_Init +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_DMA_Init (Thumb, 252 bytes, Stack size 8 bytes, dma.o(i.MX_DMA_Init)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = MX_DMA_Init ⇒ NVIC_EncodePriority +
    +
    [Calls]
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_GetPriorityGrouping +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_AHB1_GRP1_EnableClock +
    +
    [Called By]
    • >>   main +
    + +

    MX_GPIO_Init (Thumb, 480 bytes, Stack size 64 bytes, gpio.o(i.MX_GPIO_Init)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = MX_GPIO_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_I2C1_Init (Thumb, 374 bytes, Stack size 72 bytes, i2c.o(i.MX_I2C1_Init)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = MX_I2C1_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_DMA_SetPeriphSize +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_SetPeriphIncMode +
    • >>   LL_DMA_SetMode +
    • >>   LL_DMA_SetMemorySize +
    • >>   LL_DMA_SetMemoryIncMode +
    • >>   LL_DMA_SetDataTransferDirection +
    • >>   LL_DMA_SetChannelPriorityLevel +
    • >>   LL_GPIO_Init +
    • >>   LL_I2C_Init +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_SPI1_Init (Thumb, 138 bytes, Stack size 80 bytes, spi.o(i.MX_SPI1_Init)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = MX_SPI1_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_SPI_Init +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_SPI2_Init (Thumb, 264 bytes, Stack size 80 bytes, spi.o(i.MX_SPI2_Init)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = MX_SPI2_Init ⇒ LL_GPIO_Init +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_SPI_Init +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_TIM2_Init (Thumb, 194 bytes, Stack size 96 bytes, tim.o(i.MX_TIM2_Init)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = MX_TIM2_Init ⇒ LL_TIM_Init +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_TIM_OC_Init +
    • >>   LL_TIM_Init +
    • >>   LL_TIM_OC_EnablePreload +
    • >>   LL_TIM_OC_DisableFast +
    • >>   LL_APB1_GRP1_EnableClock +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_TIM3_Init (Thumb, 190 bytes, Stack size 96 bytes, tim.o(i.MX_TIM3_Init)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = MX_TIM3_Init ⇒ LL_TIM_Init +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_TIM_OC_Init +
    • >>   LL_TIM_Init +
    • >>   LL_TIM_OC_EnablePreload +
    • >>   LL_TIM_OC_DisableFast +
    • >>   LL_APB1_GRP1_EnableClock +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_TIM4_Init (Thumb, 118 bytes, Stack size 32 bytes, tim.o(i.MX_TIM4_Init)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = MX_TIM4_Init ⇒ LL_TIM_Init +
    +
    [Calls]
    • >>   LL_TIM_Init +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_APB1_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_TIM6_Init (Thumb, 102 bytes, Stack size 32 bytes, tim.o(i.MX_TIM6_Init)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = MX_TIM6_Init ⇒ LL_TIM_Init +
    +
    [Calls]
    • >>   LL_TIM_Init +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_APB1_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_TIM7_Init (Thumb, 102 bytes, Stack size 32 bytes, tim.o(i.MX_TIM7_Init)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = MX_TIM7_Init ⇒ LL_TIM_Init +
    +
    [Calls]
    • >>   LL_TIM_Init +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_APB1_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_UART5_Init (Thumb, 362 bytes, Stack size 80 bytes, usart.o(i.MX_UART5_Init)) +

    [Stack]

    • Max Depth = 136
    • Call Chain = MX_UART5_Init ⇒ LL_USART_Init ⇒ LL_RCC_GetUARTClockFreq ⇒ RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_USART_Init +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_DMA_SetPeriphSize +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_SetPeriphIncMode +
    • >>   LL_DMA_SetMode +
    • >>   LL_DMA_SetMemorySize +
    • >>   LL_DMA_SetMemoryIncMode +
    • >>   LL_DMA_SetDataTransferDirection +
    • >>   LL_DMA_SetChannelPriorityLevel +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MX_USART1_UART_Init (Thumb, 338 bytes, Stack size 72 bytes, usart.o(i.MX_USART1_UART_Init)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = MX_USART1_UART_Init ⇒ LL_USART_Init ⇒ LL_RCC_GetUARTClockFreq ⇒ RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   LL_GPIO_Init +
    • >>   LL_USART_Init +
    • >>   __NVIC_SetPriority +
    • >>   __NVIC_EnableIRQ +
    • >>   NVIC_EncodePriority +
    • >>   LL_DMA_SetPeriphSize +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_SetPeriphIncMode +
    • >>   LL_DMA_SetMode +
    • >>   LL_DMA_SetMemorySize +
    • >>   LL_DMA_SetMemoryIncMode +
    • >>   LL_DMA_SetDataTransferDirection +
    • >>   LL_DMA_SetChannelPriorityLevel +
    • >>   LL_AHB2_GRP1_EnableClock +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   main +
    + +

    MemManage_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.MemManage_Handler)) +

    [Calls]

    • >>   MemManage_Handler +
    +
    [Called By]
    • >>   MemManage_Handler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    NMI_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.NMI_Handler)) +

    [Calls]

    • >>   NMI_Handler +
    +
    [Called By]
    • >>   NMI_Handler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    PendSV_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.PendSV_Handler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    PeriphCommonClock_Config (Thumb, 54 bytes, Stack size 0 bytes, main.o(i.PeriphCommonClock_Config)) +

    [Called By]

    • >>   main +
    + +

    SVC_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.SVC_Handler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SysTick_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.SysTick_Handler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    SysTick_Init (Thumb, 20 bytes, Stack size 0 bytes, delay.o(i.SysTick_Init)) +

    [Called By]

    • >>   delay_init +
    + +

    SystemClock_Config (Thumb, 134 bytes, Stack size 8 bytes, main.o(i.SystemClock_Config)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = SystemClock_Config +
    +
    [Calls]
    • >>   LL_SetSystemCoreClock +
    • >>   LL_Init1msTick +
    +
    [Called By]
    • >>   main +
    + +

    SystemInit (Thumb, 2 bytes, Stack size 0 bytes, system_stm32l4xx.o(i.SystemInit)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(.text) +
    +

    TIM4_IRQHandler (Thumb, 120 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.TIM4_IRQHandler)) +
    [Address Reference Count : 1]

    • startup_stm32l476xx.o(RESET) +
    +

    TIM6_DAC_IRQHandler (Thumb, 136 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.TIM6_DAC_IRQHandler)) +

    [Calls]

    • >>   LL_IncTick +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    TIM7_IRQHandler (Thumb, 128 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.TIM7_IRQHandler)) +

    [Stack]

    • Max Depth = 352
    • Call Chain = TIM7_IRQHandler ⇒ alog_control_module ⇒ mode_pwmp_hd_process ⇒ pwmp_adjust ⇒ pwmp_adjust_hd_pid_calculate ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   alog_control_module +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    UART5_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.UART5_IRQHandler)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = UART5_IRQHandler ⇒ uart_reception_callback +
    +
    [Calls]
    • >>   uart_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    USART1_IRQHandler (Thumb, 8 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.USART1_IRQHandler)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = USART1_IRQHandler ⇒ uart_reception_callback +
    +
    [Calls]
    • >>   uart_reception_callback +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    UsageFault_Handler (Thumb, 2 bytes, Stack size 0 bytes, stm32l4xx_it.o(i.UsageFault_Handler)) +

    [Calls]

    • >>   UsageFault_Handler +
    +
    [Called By]
    • >>   UsageFault_Handler +
    +
    [Address Reference Count : 1]
    • startup_stm32l476xx.o(RESET) +
    +

    __0sprintf (Thumb, 34 bytes, Stack size 24 bytes, printfa.o(i.__0sprintf), UNUSED) +

    [Calls]

    • >>   _sputc +
    • >>   _printf_core +
    + +

    __1sprintf (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0sprintf), UNUSED) + +

    __2sprintf (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0sprintf)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = __2sprintf +
    +
    [Called By]
    • >>   hex_format_dec +
    • >>   dec_format_hex +
    • >>   h24_bluetooth_work +
    • >>   mode_pwmp_hd_process +
    + +

    __c89sprintf (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0sprintf), UNUSED) + +

    sprintf (Thumb, 0 bytes, Stack size 24 bytes, printfa.o(i.__0sprintf), UNUSED) + +

    __scatterload_copy (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_copy), UNUSED) + +

    __scatterload_null (Thumb, 2 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_null), UNUSED) + +

    __scatterload_zeroinit (Thumb, 14 bytes, Stack size unknown bytes, handlers.o(i.__scatterload_zeroinit), UNUSED) + +

    _fdb_continue_ff_addr (Thumb, 100 bytes, Stack size 72 bytes, fdb_utils.o(i._fdb_continue_ff_addr)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = _fdb_continue_ff_addr ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   _fdb_flash_read +
    +
    [Called By]
    • >>   read_sector_info +
    + +

    _fdb_flash_erase (Thumb, 30 bytes, Stack size 8 bytes, fdb_utils.o(i._fdb_flash_erase)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = _fdb_flash_erase ⇒ fal_partition_erase +
    +
    [Calls]
    • >>   fal_partition_erase +
    +
    [Called By]
    • >>   format_sector +
    • >>   format_sector +
    + +

    _fdb_flash_read (Thumb, 30 bytes, Stack size 16 bytes, fdb_utils.o(i._fdb_flash_read)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   fal_partition_read +
    +
    [Called By]
    • >>   read_tsl +
    • >>   read_sector_info +
    • >>   _fdb_read_status +
    • >>   _fdb_continue_ff_addr +
    • >>   read_sector_info +
    • >>   read_kv +
    • >>   move_kv +
    • >>   get_kv_from_cache +
    • >>   get_kv +
    • >>   find_next_kv_addr +
    + +

    _fdb_flash_write (Thumb, 30 bytes, Stack size 16 bytes, fdb_utils.o(i._fdb_flash_write)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fal_partition_write +
    +
    [Called By]
    • >>   format_sector +
    • >>   _fdb_write_status +
    • >>   write_kv_hdr +
    • >>   move_kv +
    • >>   format_sector +
    • >>   align_write +
    + +

    _fdb_get_status (Thumb, 42 bytes, Stack size 20 bytes, fdb_utils.o(i._fdb_get_status)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = _fdb_get_status +
    +
    [Called By]
    • >>   read_tsl +
    • >>   read_sector_info +
    • >>   _fdb_read_status +
    • >>   read_sector_info +
    • >>   read_kv +
    + +

    _fdb_init_ex (Thumb, 134 bytes, Stack size 16 bytes, fdb.o(i._fdb_init_ex)) +

    [Stack]

    • Max Depth = 84
    • Call Chain = _fdb_init_ex ⇒ fal_init ⇒ fal_partition_init ⇒ check_and_update_part_cache ⇒ fal_flash_device_find ⇒ strncmp +
    +
    [Calls]
    • >>   fal_partition_find +
    • >>   fal_init +
    • >>   fal_flash_device_find +
    +
    [Called By]
    • >>   fdb_tsdb_init +
    • >>   fdb_kvdb_init +
    + +

    _fdb_init_finish (Thumb, 20 bytes, Stack size 0 bytes, fdb.o(i._fdb_init_finish)) +

    [Called By]

    • >>   fdb_tsdb_init +
    • >>   fdb_kvdb_init +
    + +

    _fdb_read_status (Thumb, 38 bytes, Stack size 16 bytes, fdb_utils.o(i._fdb_read_status)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = _fdb_read_status ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   _fdb_get_status +
    • >>   _fdb_flash_read +
    +
    [Called By]
    • >>   del_kv +
    + +

    _fdb_set_status (Thumb, 46 bytes, Stack size 16 bytes, fdb_utils.o(i._fdb_set_status)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _fdb_set_status +
    +
    [Calls]
    • >>   __aeabi_memset +
    +
    [Called By]
    • >>   _fdb_write_status +
    • >>   format_sector +
    + +

    _fdb_write_status (Thumb, 54 bytes, Stack size 24 bytes, fdb_utils.o(i._fdb_write_status)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_set_status +
    • >>   _fdb_flash_write +
    +
    [Called By]
    • >>   format_sector +
    • >>   write_kv_hdr +
    • >>   update_sec_status +
    • >>   read_kv +
    • >>   move_kv +
    • >>   do_gc +
    • >>   del_kv +
    • >>   create_kv_blob +
    • >>   check_and_recovery_kv_cb +
    + +

    actual_travel_deal (Thumb, 26 bytes, Stack size 8 bytes, convert.o(i.actual_travel_deal)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = actual_travel_deal ⇒ pwm_output_deal ⇒ pwm_output_position ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   is_manual_test +
    • >>   swo_output_deal +
    • >>   pwm_output_deal +
    +
    [Called By]
    • >>   pwmp_control_update +
    • >>   travel_statistics +
    + +

    adc_dma_callback (Thumb, 76 bytes, Stack size 8 bytes, adcs.o(i.adc_dma_callback)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = adc_dma_callback +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   DMA1_Channel2_IRQHandler +
    • >>   DMA1_Channel1_IRQHandler +
    + +

    adc_env_callback (Thumb, 154 bytes, Stack size 24 bytes, adcs.o(i.adc_env_callback)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = adc_env_callback +
    +
    [Calls]
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_ADC_DMA_GetRegAddr +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   ADC1_2_IRQHandler +
    + +

    adc_init (Thumb, 310 bytes, Stack size 32 bytes, adcs.o(i.adc_init)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = adc_init ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   adc_get_channels_count +
    • >>   _memset +
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_ADC_DMA_GetRegAddr +
    • >>   LL_mDelay +
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   board_init +
    + +

    adc_result_average (Thumb, 88 bytes, Stack size 16 bytes, adcs.o(i.adc_result_average)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = adc_result_average +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   ip2current +
    • >>   get_actual_travel +
    • >>   get_temperature +
    • >>   get_pressure +
    • >>   current_inspection +
    + +

    adc_result_median (Thumb, 218 bytes, Stack size 24 bytes, adcs.o(i.adc_result_median)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   memcpyL +
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    • >>   myfree +
    • >>   malloc +
    • >>   free +
    +
    [Called By]
    • >>   get_actual_travel +
    • >>   get_actual_travel_adc +
    • >>   get_current +
    + +

    aes_encrypt (Thumb, 86 bytes, Stack size 32 bytes, aes.o(i.aes_encrypt)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = aes_encrypt ⇒ mix_sub_columns +
    +
    [Calls]
    • >>   shift_sub_rows +
    • >>   mix_sub_columns +
    • >>   copy_and_key +
    • >>   add_round_key +
    +
    [Called By]
    • >>   AES_CMAC_Update +
    • >>   AES_CMAC_Final +
    + +

    aes_set_key (Thumb, 246 bytes, Stack size 40 bytes, aes.o(i.aes_set_key)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = aes_set_key +
    +
    [Calls]
    • >>   copy_block_nn +
    +
    [Called By]
    • >>   AES_CMAC_SetKey +
    + +

    alog_control_module (Thumb, 122 bytes, Stack size 8 bytes, mode.o(i.alog_control_module)) +

    [Stack]

    • Max Depth = 352
    • Call Chain = alog_control_module ⇒ mode_pwmp_hd_process ⇒ pwmp_adjust ⇒ pwmp_adjust_hd_pid_calculate ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   pdctrl_out +
    • >>   mode_pwmp_process +
    • >>   mode_pwmp_hd_process +
    • >>   mode_pwm_process +
    • >>   mode_dac_process +
    • >>   leds_toggle +
    • >>   travel_statistics +
    +
    [Called By]
    • >>   TIM7_IRQHandler +
    + +

    app_init (Thumb, 30 bytes, Stack size 8 bytes, app.o(i.app_init)) +

    [Stack]

    • Max Depth = 840
    • Call Chain = app_init ⇒ fal_execution_init ⇒ fdb_kvdb_init ⇒ _fdb_kv_load ⇒ fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   params_init +
    • >>   mode_init +
    • >>   key_init +
    • >>   flow_init +
    • >>   fal_execution_init +
    • >>   app_preload +
    +
    [Called By]
    • >>   main +
    + +

    app_start (Thumb, 4 bytes, Stack size 0 bytes, app.o(i.app_start)) +

    [Stack]

    • Max Depth = 272
    • Call Chain = app_start ⇒ flow_start ⇒ systom_inspection ⇒ current_inspection ⇒ h24_bluetooth_work ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   flow_start +
    +
    [Called By]
    • >>   main +
    + +

    at_cmd_parse (Thumb, 110 bytes, Stack size 16 bytes, at_hc24.o(i.at_cmd_parse)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = at_cmd_parse ⇒ at_cmd_search ⇒ mstrncmp +
    +
    [Calls]
    • >>   at_cmd_search +
    • >>   at_cmd_test +
    • >>   _mstrlen +
    +
    [Called By]
    • >>   hart_rx_cb +
    + +

    at_cmd_search (Thumb, 62 bytes, Stack size 24 bytes, at_hc24.o(i.at_cmd_search)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = at_cmd_search ⇒ mstrncmp +
    +
    [Calls]
    • >>   mstrncmp +
    • >>   _mstrlen +
    +
    [Called By]
    • >>   at_cmd_parse +
    + +

    at_set_memcmp_cache (Thumb, 40 bytes, Stack size 12 bytes, at_hc24.o(i.at_set_memcmp_cache)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = at_set_memcmp_cache +
    +
    [Called By]
    • >>   h24_bluetooth_work +
    + +

    board_init (Thumb, 140 bytes, Stack size 24 bytes, board.o(i.board_init)) +

    [Stack]

    • Max Depth = 160
    • Call Chain = board_init ⇒ eeprom_m95_init ⇒ spi_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   rtc_init +
    • >>   leds_init +
    • >>   eeprom_m95_init +
    • >>   eeprom_lc02b_init +
    • >>   eeprom_fm24_init +
    • >>   adc_init +
    • >>   lpf_init +
    +
    [Called By]
    • >>   main +
    + +

    button_attach (Thumb, 8 bytes, Stack size 0 bytes, btn.o(i.button_attach)) +

    [Called By]

    • >>   key_init +
    + +

    button_handler (Thumb, 506 bytes, Stack size 16 bytes, btn.o(i.button_handler)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = button_handler +
    +
    [Called By]
    • >>   button_ticks +
    + +

    button_init (Thumb, 64 bytes, Stack size 24 bytes, btn.o(i.button_init)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = button_init +
    +
    [Called By]
    • >>   key_init +
    + +

    button_start (Thumb, 32 bytes, Stack size 0 bytes, btn.o(i.button_start)) +

    [Called By]

    • >>   key_botton_start +
    + +

    button_stop (Thumb, 26 bytes, Stack size 0 bytes, btn.o(i.button_stop)) +

    [Called By]

    • >>   key_dinit +
    + +

    button_ticks (Thumb, 22 bytes, Stack size 8 bytes, btn.o(i.button_ticks)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = button_ticks ⇒ button_handler +
    +
    [Calls]
    • >>   button_handler +
    +
    [Called By]
    • >>   btn_inspection +
    + +

    calculate_pwm_duty (Thumb, 108 bytes, Stack size 24 bytes, pdctrl.o(i.calculate_pwm_duty)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    • >>   __aeabi_f2uiz +
    • >>   calculate_pwm_freq +
    +
    [Called By]
    • >>   pdctrl_pwm_set_arr +
    + +

    calib_parapos_perent (Thumb, 102 bytes, Stack size 24 bytes, board.o(i.calib_parapos_perent)) +

    [Stack]

    • Max Depth = 44
    • Call Chain = calib_parapos_perent ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_i2f +
    • >>   __aeabi_fsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    +
    [Called By]
    • >>   pwmp_adjust_hd_calculate +
    • >>   mode_pwmp_hd_init +
    + +

    crc16_compute (Thumb, 54 bytes, Stack size 16 bytes, lib.o(i.crc16_compute)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = crc16_compute +
    +
    [Called By]
    • >>   fal_execution_set_crc +
    + +

    dead_zone_deal (Thumb, 36 bytes, Stack size 16 bytes, convert.o(i.dead_zone_deal)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = dead_zone_deal ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    • >>   __aeabi_cfrcmple +
    +
    [Called By]
    • >>   target_travel_deal +
    + +

    dec_format_hex (Thumb, 70 bytes, Stack size 16 bytes, lib.o(i.dec_format_hex)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = dec_format_hex ⇒ __2sprintf +
    +
    [Calls]
    • >>   _memset +
    • >>   strlen +
    • >>   __2sprintf +
    +
    [Called By]
    • >>   params_restart +
    + +

    delay_init (Thumb, 20 bytes, Stack size 8 bytes, delay.o(i.delay_init)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = delay_init +
    +
    [Calls]
    • >>   LL_SetSystemCoreClock +
    • >>   SysTick_Init +
    +
    [Called By]
    • >>   main +
    + +

    delay_ms (Thumb, 54 bytes, Stack size 16 bytes, delay.o(i.delay_ms)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = delay_ms ⇒ delay_us +
    +
    [Calls]
    • >>   delay_us +
    +
    [Called By]
    • >>   main +
    • >>   rtc_soft_reset +
    • >>   current_inspection +
    + +

    delay_tick (Thumb, 12 bytes, Stack size 0 bytes, delay.o(i.delay_tick)) +

    [Called By]

    • >>   eeprom_m95_init +
    + +

    delay_us (Thumb, 52 bytes, Stack size 16 bytes, delay.o(i.delay_us)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = delay_us +
    +
    [Called By]
    • >>   delay_ms +
    + +

    driver_dinit (Thumb, 38 bytes, Stack size 8 bytes, board.o(i.driver_dinit)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = driver_dinit ⇒ pdctrl_stop ⇒ pwmp_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   pdctrl_stop +
    +
    [Called By]
    • >>   current_inspection +
    + +

    driver_init (Thumb, 38 bytes, Stack size 8 bytes, board.o(i.driver_init)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = driver_init ⇒ pdctrl_run ⇒ pwmp_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   pdctrl_run +
    +
    [Called By]
    • >>   current_inspection +
    + +

    eeprom_fm24_disable (Thumb, 12 bytes, Stack size 0 bytes, eeprom_fm24.o(i.eeprom_fm24_disable)) +

    [Called By]

    • >>   eeprom_fm24_write +
    • >>   eeprom_fm24_read +
    + +

    eeprom_fm24_enable (Thumb, 12 bytes, Stack size 0 bytes, eeprom_fm24.o(i.eeprom_fm24_enable)) +

    [Called By]

    • >>   eeprom_fm24_write +
    • >>   eeprom_fm24_read +
    + +

    eeprom_fm24_init (Thumb, 48 bytes, Stack size 24 bytes, eeprom_fm24.o(i.eeprom_fm24_init)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = eeprom_fm24_init ⇒ i2c_create_dma ⇒ _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   i2c_dma_set_address +
    • >>   i2c_create_dma +
    +
    [Called By]
    • >>   board_init +
    + +

    eeprom_fm24_read (Thumb, 34 bytes, Stack size 16 bytes, eeprom_fm24.o(i.eeprom_fm24_read)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = eeprom_fm24_read +
    +
    [Calls]
    • >>   eeprom_fm24_enable +
    • >>   eeprom_fm24_disable +
    +
    [Called By]
    • >>   read +
    + +

    eeprom_fm24_write (Thumb, 184 bytes, Stack size 40 bytes, eeprom_fm24.o(i.eeprom_fm24_write)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = eeprom_fm24_write +
    +
    [Calls]
    • >>   eeprom_fm24_enable +
    • >>   eeprom_fm24_disable +
    +
    [Called By]
    • >>   write +
    + +

    eeprom_lc02b_init (Thumb, 40 bytes, Stack size 16 bytes, eeprom_lc02b.o(i.eeprom_lc02b_init)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = eeprom_lc02b_init ⇒ i2c_create ⇒ _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   i2c_create +
    • >>   gpio_create +
    +
    [Called By]
    • >>   board_init +
    + +

    eeprom_m95_disable (Thumb, 12 bytes, Stack size 0 bytes, eeprom_m95.o(i.eeprom_m95_disable)) +

    [Called By]

    • >>   eeprom_m95_write +
    • >>   eeprom_m95_read +
    + +

    eeprom_m95_enable (Thumb, 12 bytes, Stack size 0 bytes, eeprom_m95.o(i.eeprom_m95_enable)) +

    [Called By]

    • >>   eeprom_m95_write +
    • >>   eeprom_m95_read +
    + +

    eeprom_m95_init (Thumb, 322 bytes, Stack size 72 bytes, eeprom_m95.o(i.eeprom_m95_init)) +

    [Stack]

    • Max Depth = 136
    • Call Chain = eeprom_m95_init ⇒ spi_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   spi_create +
    • >>   gpio_create +
    • >>   delay_tick +
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   board_init +
    + +

    eeprom_m95_read (Thumb, 156 bytes, Stack size 32 bytes, eeprom_m95.o(i.eeprom_m95_read)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = eeprom_m95_read +
    +
    [Calls]
    • >>   eeprom_m95_enable +
    • >>   eeprom_m95_disable +
    +
    [Called By]
    • >>   read2 +
    • >>   read1 +
    + +

    eeprom_m95_write (Thumb, 316 bytes, Stack size 48 bytes, eeprom_m95.o(i.eeprom_m95_write)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = eeprom_m95_write ⇒ eeprom_m95_ready ⇒ read_status +
    +
    [Calls]
    • >>   eeprom_m95_enable +
    • >>   eeprom_m95_disable +
    • >>   write_enable +
    • >>   write_disable +
    • >>   eeprom_m95_ready +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   write2 +
    • >>   write1 +
    + +

    execute_dac (Thumb, 42 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.execute_dac)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = execute_dac ⇒ execute_dac_plan1 ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   execute_dac_plan4 +
    • >>   execute_dac_plan3 +
    • >>   execute_dac_plan2 +
    • >>   execute_dac_plan1 +
    +
    [Called By]
    • >>   mode_pwmp_hd_process +
    + +

    execute_pid_init (Thumb, 58 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.execute_pid_init)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = execute_pid_init ⇒ get_pwmp_control_kp ⇒ __aeabi_fmul +
    +
    [Calls]
    • >>   pid_constructor +
    • >>   get_pwmp_control_kp +
    • >>   get_pwmp_control_ki +
    • >>   get_pwmp_control_kd +
    +
    [Called By]
    • >>   mode_pwmp_hd_init +
    + +

    fal_execution_init (Thumb, 350 bytes, Stack size 32 bytes, fal_execution.o(i.fal_execution_init)) +

    [Stack]

    • Max Depth = 832
    • Call Chain = fal_execution_init ⇒ fdb_kvdb_init ⇒ _fdb_kv_load ⇒ fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fdb_tsdb_init +
    • >>   fdb_tsdb_control +
    • >>   fdb_kvdb_init +
    • >>   fdb_kvdb_control +
    +
    [Called By]
    • >>   app_init +
    + +

    fal_execution_kv_read (Thumb, 198 bytes, Stack size 48 bytes, fal_execution.o(i.fal_execution_kv_read)) +

    [Stack]

    • Max Depth = 600
    • Call Chain = fal_execution_kv_read ⇒ fdb_kv_get_blob ⇒ get_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   fdb_kv_get_blob +
    • >>   fdb_blob_make +
    • >>   fal_execution_set_crc +
    • >>   fal_execution_set_cmac +
    • >>   fal_execution_get +
    +
    [Called By]
    • >>   params_init +
    + +

    fal_execution_kv_write (Thumb, 200 bytes, Stack size 48 bytes, fal_execution.o(i.fal_execution_kv_write)) +

    [Stack]

    • Max Depth = 656
    • Call Chain = fal_execution_kv_write ⇒ fdb_kv_set_blob ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   fdb_kv_set_blob +
    • >>   fdb_blob_make +
    • >>   fal_execution_set_crc +
    • >>   fal_execution_set_cmac +
    • >>   fal_execution_get +
    +
    [Called By]
    • >>   mode_params_save_cb +
    • >>   params_restart +
    + +

    fal_flash_device_find (Thumb, 38 bytes, Stack size 16 bytes, fal_flash.o(i.fal_flash_device_find)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = fal_flash_device_find ⇒ strncmp +
    +
    [Calls]
    • >>   strncmp +
    +
    [Called By]
    • >>   _fdb_init_ex +
    • >>   check_and_update_part_cache +
    + +

    fal_flash_init (Thumb, 42 bytes, Stack size 16 bytes, fal_flash.o(i.fal_flash_init)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = fal_flash_init +
    +
    [Called By]
    • >>   fal_init +
    + +

    fal_init (Thumb, 40 bytes, Stack size 8 bytes, fal.o(i.fal_init)) +

    [Stack]

    • Max Depth = 68
    • Call Chain = fal_init ⇒ fal_partition_init ⇒ check_and_update_part_cache ⇒ fal_flash_device_find ⇒ strncmp +
    +
    [Calls]
    • >>   fal_partition_init +
    • >>   fal_flash_init +
    +
    [Called By]
    • >>   _fdb_init_ex +
    + +

    fal_partition_erase (Thumb, 56 bytes, Stack size 24 bytes, fal_partition.o(i.fal_partition_erase)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = fal_partition_erase +
    +
    [Calls]
    • >>   flash_device_find_by_part +
    +
    [Called By]
    • >>   _fdb_flash_erase +
    + +

    fal_partition_find (Thumb, 46 bytes, Stack size 16 bytes, fal_partition.o(i.fal_partition_find)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = fal_partition_find ⇒ strcmp +
    +
    [Calls]
    • >>   strcmp +
    +
    [Called By]
    • >>   _fdb_init_ex +
    + +

    fal_partition_init (Thumb, 36 bytes, Stack size 8 bytes, fal_partition.o(i.fal_partition_init)) +

    [Stack]

    • Max Depth = 60
    • Call Chain = fal_partition_init ⇒ check_and_update_part_cache ⇒ fal_flash_device_find ⇒ strncmp +
    +
    [Calls]
    • >>   check_and_update_part_cache +
    +
    [Called By]
    • >>   fal_init +
    + +

    fal_partition_read (Thumb, 62 bytes, Stack size 24 bytes, fal_partition.o(i.fal_partition_read)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = fal_partition_read +
    +
    [Calls]
    • >>   flash_device_find_by_part +
    +
    [Called By]
    • >>   _fdb_flash_read +
    + +

    fal_partition_write (Thumb, 62 bytes, Stack size 24 bytes, fal_partition.o(i.fal_partition_write)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = fal_partition_write +
    +
    [Calls]
    • >>   flash_device_find_by_part +
    +
    [Called By]
    • >>   _fdb_flash_write +
    + +

    fdb_blob_make (Thumb, 6 bytes, Stack size 0 bytes, fdb_utils.o(i.fdb_blob_make)) +

    [Called By]

    • >>   fal_execution_kv_write +
    • >>   fal_execution_kv_read +
    + +

    fdb_calc_crc32 (Thumb, 34 bytes, Stack size 8 bytes, fdb_utils.o(i.fdb_calc_crc32)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = fdb_calc_crc32 +
    +
    [Called By]
    • >>   update_kv_cache +
    • >>   read_kv +
    • >>   get_kv_from_cache +
    • >>   create_kv_blob +
    + +

    fdb_kv_get_blob (Thumb, 56 bytes, Stack size 24 bytes, fdb_kvdb.o(i.fdb_kv_get_blob)) +

    [Stack]

    • Max Depth = 552
    • Call Chain = fdb_kv_get_blob ⇒ get_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   get_kv +
    +
    [Called By]
    • >>   fal_execution_kv_read +
    + +

    fdb_kv_set_blob (Thumb, 50 bytes, Stack size 16 bytes, fdb_kvdb.o(i.fdb_kv_set_blob)) +

    [Stack]

    • Max Depth = 608
    • Call Chain = fdb_kv_set_blob ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   set_kv +
    +
    [Called By]
    • >>   fal_execution_kv_write +
    + +

    fdb_kv_set_default (Thumb, 146 bytes, Stack size 64 bytes, fdb_kvdb.o(i.fdb_kv_set_default)) +

    [Stack]

    • Max Depth = 584
    • Call Chain = fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   format_sector +
    • >>   create_kv_blob +
    • >>   strlen +
    +
    [Called By]
    • >>   _fdb_kv_load +
    + +

    fdb_kvdb_control (Thumb, 64 bytes, Stack size 0 bytes, fdb_kvdb.o(i.fdb_kvdb_control)) +

    [Called By]

    • >>   fal_execution_init +
    + +

    fdb_kvdb_init (Thumb, 188 bytes, Stack size 64 bytes, fdb_kvdb.o(i.fdb_kvdb_init)) +

    [Stack]

    • Max Depth = 800
    • Call Chain = fdb_kvdb_init ⇒ _fdb_kv_load ⇒ fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   sector_iterator +
    • >>   kv_auto_update +
    • >>   _fdb_kv_load +
    • >>   _fdb_init_finish +
    • >>   _fdb_init_ex +
    +
    [Called By]
    • >>   fal_execution_init +
    + +

    fdb_tsdb_control (Thumb, 94 bytes, Stack size 0 bytes, fdb_tsdb.o(i.fdb_tsdb_control)) +

    [Called By]

    • >>   fal_execution_init +
    + +

    fdb_tsdb_init (Thumb, 262 bytes, Stack size 120 bytes, fdb_tsdb.o(i.fdb_tsdb_init)) +

    [Stack]

    • Max Depth = 384
    • Call Chain = fdb_tsdb_init ⇒ tsl_format_all ⇒ sector_iterator ⇒ read_sector_info ⇒ read_tsl ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   tsl_format_all +
    • >>   sector_iterator +
    • >>   read_sector_info +
    • >>   _fdb_init_finish +
    • >>   _fdb_init_ex +
    +
    [Called By]
    • >>   fal_execution_init +
    + +

    flow_init (Thumb, 20 bytes, Stack size 0 bytes, app_flow.o(i.flow_init)) +

    [Called By]

    • >>   app_init +
    + +

    flow_start (Thumb, 36 bytes, Stack size 8 bytes, app_flow.o(i.flow_start)) +

    [Stack]

    • Max Depth = 272
    • Call Chain = flow_start ⇒ systom_inspection ⇒ current_inspection ⇒ h24_bluetooth_work ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   systom_inspection +
    • >>   idle_inspection +
    • >>   business_inspection +
    • >>   btn_inspection +
    +
    [Called By]
    • >>   app_start +
    + +

    free (Thumb, 76 bytes, Stack size 8 bytes, malloc.o(i.free)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = free +
    +
    [Called By]
    • >>   adc_result_median +
    + +

    get_actual_travel (Thumb, 92 bytes, Stack size 8 bytes, board.o(i.get_actual_travel)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = get_actual_travel ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   adc_result_median +
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    • >>   adc_result_average +
    +
    [Called By]
    • >>   pwmp_control_update +
    + +

    get_actual_travel_adc (Thumb, 8 bytes, Stack size 0 bytes, board.o(i.get_actual_travel_adc)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   adc_result_median +
    +
    [Called By]
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pwmp_adjust_hd_bleeding_position0 +
    • >>   mode_pwmp_process +
    • >>   mode_pwmp_hd_process +
    • >>   mode_pwm_process +
    + +

    get_current (Thumb, 50 bytes, Stack size 8 bytes, board.o(i.get_current)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = get_current ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   adc_result_median +
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    +
    [Called By]
    • >>   travel_statistics +
    + +

    get_current_deal (Thumb, 28 bytes, Stack size 8 bytes, board.o(i.get_current_deal)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = get_current_deal ⇒ __aeabi_fmul +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_f2uiz +
    +
    [Called By]
    • >>   travel_statistics +
    + +

    get_pid_travel (Thumb, 20 bytes, Stack size 0 bytes, convert.o(i.get_pid_travel)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = get_pid_travel ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    +
    [Called By]
    • >>   pwmp_control_update +
    • >>   travel_statistics +
    + +

    get_pressure (Thumb, 118 bytes, Stack size 16 bytes, board.o(i.get_pressure)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = get_pressure ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    • >>   adc_result_average +
    +
    [Called By]
    • >>   pressure_inspection +
    + +

    get_show_travel (Thumb, 18 bytes, Stack size 0 bytes, convert.o(i.get_show_travel)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = get_show_travel ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    +
    [Called By]
    • >>   travel_statistics +
    + +

    get_temperature (Thumb, 32 bytes, Stack size 8 bytes, board.o(i.get_temperature)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = get_temperature ⇒ ntc_get_temp ⇒ __aeabi_i2d ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   ntc_get_temp +
    • >>   adc_result_average +
    • >>   lpf_update +
    +
    [Called By]
    • >>   temperature_inspection +
    + +

    get_timestamp (Thumb, 48 bytes, Stack size 16 bytes, board.o(i.get_timestamp)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = get_timestamp ⇒ rtc_get_clock_time ⇒ rtc_read_bytes +
    +
    [Calls]
    • >>   rtc_get_clock_time +
    +
    [Called By]
    • >>   params_restart +
    • >>   get_time +
    + +

    get_weekday (Thumb, 76 bytes, Stack size 8 bytes, lib.o(i.get_weekday)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = get_weekday +
    +
    [Called By]
    • >>   params_restart +
    + +

    gpio_create (Thumb, 54 bytes, Stack size 16 bytes, gpios.o(i.gpio_create)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = gpio_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   rtc_init +
    • >>   leds_init +
    • >>   eeprom_m95_init +
    • >>   eeprom_lc02b_init +
    + +

    h24_bluetooth_output_dbg (Thumb, 4 bytes, Stack size 0 bytes, app_hart.o(i.h24_bluetooth_output_dbg)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = h24_bluetooth_output_dbg ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   h24_bluetooth_output +
    +
    [Called By]
    • >>   mode_pwmp_hd_process +
    + +

    h24_bluetooth_work (Thumb, 226 bytes, Stack size 208 bytes, app_hart.o(i.h24_bluetooth_work)) +

    [Stack]

    • Max Depth = 232
    • Call Chain = h24_bluetooth_work ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   h24_bluetooth_output +
    • >>   _mstrlen +
    • >>   at_set_memcmp_cache +
    • >>   __aeabi_memclr4 +
    • >>   __2sprintf +
    +
    [Called By]
    • >>   current_inspection +
    + +

    hart_ble_dinit (Thumb, 78 bytes, Stack size 8 bytes, app_hart.o(i.hart_ble_dinit)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = hart_ble_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   main +
    • >>   current_inspection +
    + +

    hart_ble_init (Thumb, 132 bytes, Stack size 32 bytes, app_hart.o(i.hart_ble_init)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = hart_ble_init ⇒ uart_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   LL_mDelay +
    • >>   LL_GPIO_SetPinMode +
    • >>   uart_recv_en +
    • >>   uart_create +
    +
    [Called By]
    • >>   current_inspection +
    + +

    hart_uart_dinit (Thumb, 84 bytes, Stack size 8 bytes, app_hart.o(i.hart_uart_dinit)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = hart_uart_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   current_inspection +
    + +

    hart_uart_init (Thumb, 184 bytes, Stack size 40 bytes, app_hart.o(i.hart_uart_init)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = hart_uart_init ⇒ uart_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   LL_mDelay +
    • >>   LL_GPIO_SetPinMode +
    • >>   uart_recv_en +
    • >>   uart_create +
    +
    [Called By]
    • >>   current_inspection +
    + +

    hex_format_dec (Thumb, 104 bytes, Stack size 16 bytes, lib.o(i.hex_format_dec)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = hex_format_dec ⇒ __2sprintf +
    +
    [Calls]
    • >>   _memset +
    • >>   strlen +
    • >>   __2sprintf +
    +
    [Called By]
    • >>   params_restart +
    • >>   get_time +
    + +

    i2c_create (Thumb, 52 bytes, Stack size 24 bytes, i2cs.o(i.i2c_create)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = i2c_create ⇒ _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   memcpyL +
    • >>   _malloc +
    +
    [Called By]
    • >>   rtc_init +
    • >>   eeprom_lc02b_init +
    + +

    i2c_create_dma (Thumb, 276 bytes, Stack size 40 bytes, i2cs.o(i.i2c_create_dma)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = i2c_create_dma ⇒ _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   LL_DMA_ConfigAddresses +
    • >>   _malloc +
    • >>   LL_I2C_DMA_GetRegAddr +
    • >>   LL_DMA_SetPeriphRequest +
    • >>   LL_DMA_GetDataTransferDirection +
    • >>   LL_DMA_EnableIT_TE +
    • >>   LL_DMA_EnableIT_TC +
    • >>   LL_DMA_DisableChannel +
    • >>   LL_DMA_ConfigTransfer +
    +
    [Called By]
    • >>   eeprom_fm24_init +
    + +

    i2c_dma_callback (Thumb, 46 bytes, Stack size 8 bytes, i2cs.o(i.i2c_dma_callback)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = i2c_dma_callback +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   DMA1_Channel7_IRQHandler +
    • >>   DMA1_Channel6_IRQHandler +
    + +

    i2c_dma_set_address (Thumb, 34 bytes, Stack size 16 bytes, i2cs.o(i.i2c_dma_set_address)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = i2c_dma_set_address +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   eeprom_fm24_init +
    + +

    i2c_ev_callback (Thumb, 242 bytes, Stack size 8 bytes, i2cs.o(i.i2c_ev_callback)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = i2c_ev_callback +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   I2C1_EV_IRQHandler +
    + +

    i2psb (Thumb, 220 bytes, Stack size 24 bytes, convert.o(i.i2psb)) +

    [Stack]

    • Max Depth = 44
    • Call Chain = i2psb ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_i2f +
    • >>   __aeabi_fsub +
    • >>   __aeabi_frsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    • >>   __aeabi_f2uiz +
    • >>   __ARM_scalbnf +
    +
    [Called By]
    • >>   travel_statistics +
    + +

    ip2current (Thumb, 30 bytes, Stack size 8 bytes, board.o(i.ip2current)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = ip2current ⇒ adc_result_average +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fdiv +
    • >>   adc_result_average +
    +
    [Called By]
    • >>   mode_pwmp_hd_process +
    + +

    is_manual_test (Thumb, 16 bytes, Stack size 0 bytes, mode.o(i.is_manual_test)) +

    [Called By]

    • >>   actual_travel_deal +
    + +

    key_botton_start (Thumb, 58 bytes, Stack size 8 bytes, key.o(i.key_botton_start)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = key_botton_start +
    +
    [Calls]
    • >>   button_start +
    +
    [Called By]
    • >>   key_init +
    + +

    key_dinit (Thumb, 154 bytes, Stack size 16 bytes, key.o(i.key_dinit)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = key_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   button_stop +
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   mode_detection +
    + +

    key_init (Thumb, 590 bytes, Stack size 16 bytes, key.o(i.key_init)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = key_init ⇒ button_init +
    +
    [Calls]
    • >>   sys_millis +
    • >>   button_init +
    • >>   button_attach +
    • >>   key_botton_start +
    • >>   LL_GPIO_SetPinMode +
    • >>   srand +
    • >>   rand +
    +
    [Called By]
    • >>   app_init +
    • >>   mode_detection +
    + +

    lcd_dinit (Thumb, 2 bytes, Stack size 0 bytes, board.o(i.lcd_dinit)) +

    [Called By]

    • >>   mode_detection +
    + +

    lcd_init (Thumb, 2 bytes, Stack size 0 bytes, board.o(i.lcd_init)) +

    [Called By]

    • >>   mode_detection +
    + +

    leds_dinit (Thumb, 68 bytes, Stack size 8 bytes, leds.o(i.leds_dinit)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = leds_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   main +
    + +

    leds_init (Thumb, 168 bytes, Stack size 40 bytes, leds.o(i.leds_init)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = leds_init ⇒ gpio_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   gpio_create +
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   board_init +
    + +

    leds_toggle (Thumb, 26 bytes, Stack size 16 bytes, leds.o(i.leds_toggle)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = leds_toggle +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    loop_current_convert (Thumb, 22 bytes, Stack size 8 bytes, board.o(i.loop_current_convert)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = loop_current_convert ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fdiv +
    +
    [Called By]
    • >>   current_inspection +
    + +

    lpf_init (Thumb, 26 bytes, Stack size 0 bytes, filter.o(i.lpf_init)) +

    [Called By]

    • >>   board_init +
    • >>   mode_init +
    + +

    lpf_update (Thumb, 60 bytes, Stack size 24 bytes, filter.o(i.lpf_update)) +

    [Stack]

    • Max Depth = 44
    • Call Chain = lpf_update ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    +
    [Called By]
    • >>   get_temperature +
    • >>   travel_statistics +
    + +

    lpf_window_init (Thumb, 78 bytes, Stack size 16 bytes, filter.o(i.lpf_window_init)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = lpf_window_init ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   mode_pwmp_hd_init +
    + +

    lpf_window_update (Thumb, 114 bytes, Stack size 16 bytes, filter.o(i.lpf_window_update)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = lpf_window_update ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fadd +
    • >>   __aeabi_f2uiz +
    +
    [Called By]
    • >>   pwmp_control_update +
    + +

    main (Thumb, 214 bytes, Stack size 8 bytes, main.o(i.main)) +

    [Stack]

    • Max Depth = 848
    • Call Chain = main ⇒ app_init ⇒ fal_execution_init ⇒ fdb_kvdb_init ⇒ _fdb_kv_load ⇒ fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   my_mem_init +
    • >>   leds_dinit +
    • >>   hart_ble_dinit +
    • >>   delay_ms +
    • >>   delay_init +
    • >>   board_init +
    • >>   app_start +
    • >>   app_init +
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    • >>   MX_SPI2_Init +
    • >>   MX_SPI1_Init +
    • >>   MX_I2C1_Init +
    • >>   MX_GPIO_Init +
    • >>   MX_DMA_Init +
    • >>   MX_DAC1_Init +
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    • >>   SystemClock_Config +
    • >>   PeriphCommonClock_Config +
    +
    [Address Reference Count : 1]
    • entry9a.o(.ARM.Collect$$$$0000000B) +
    +

    malloc (Thumb, 92 bytes, Stack size 20 bytes, malloc.o(i.malloc)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = malloc +
    +
    [Called By]
    • >>   adc_result_median +
    + +

    mode_dac_dinit (Thumb, 22 bytes, Stack size 8 bytes, mode_dac.o(i.mode_dac_dinit)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = mode_dac_dinit ⇒ myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   myfree +
    +
    [Called By]
    • >>   mode_init +
    + +

    mode_dac_process (Thumb, 36 bytes, Stack size 0 bytes, mode_dac.o(i.mode_dac_process)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = mode_dac_process ⇒ pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    mode_detection (Thumb, 124 bytes, Stack size 16 bytes, mode.o(i.mode_detection)) +

    [Stack]

    • Max Depth = 56
    • Call Chain = mode_detection ⇒ key_init ⇒ button_init +
    +
    [Calls]
    • >>   key_init +
    • >>   wait_mode_adjust +
    • >>   set_manual_test +
    • >>   online_offline_mode_adjust +
    • >>   manual_test_mode +
    • >>   key_dinit +
    • >>   pdctrl_stop +
    • >>   pdctrl_run +
    • >>   lcd_init +
    • >>   lcd_dinit +
    +
    [Called By]
    • >>   business_inspection +
    + +

    mode_init (Thumb, 96 bytes, Stack size 8 bytes, mode.o(i.mode_init)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = mode_init ⇒ mode_pwmp_hd_init ⇒ lpf_window_init ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   mode_autoload_change +
    • >>   DBG_ASSERT +
    • >>   pdctrl_init +
    • >>   mode_pwmp_hd_init +
    • >>   mode_pwmp_hd_dinit +
    • >>   mode_pwmp_dinit +
    • >>   mode_pwm_dinit +
    • >>   mode_dac_dinit +
    • >>   lpf_init +
    +
    [Called By]
    • >>   app_init +
    + +

    mode_pwm_dinit (Thumb, 34 bytes, Stack size 8 bytes, mode_pwm.o(i.mode_pwm_dinit)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = mode_pwm_dinit ⇒ myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    • >>   myfree +
    +
    [Called By]
    • >>   mode_init +
    + +

    mode_pwm_process (Thumb, 50 bytes, Stack size 8 bytes, mode_pwm.o(i.mode_pwm_process)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = mode_pwm_process ⇒ pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   get_actual_travel_adc +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    mode_pwmp_dinit (Thumb, 34 bytes, Stack size 8 bytes, mode_pwmp.o(i.mode_pwmp_dinit)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = mode_pwmp_dinit ⇒ myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    • >>   myfree +
    +
    [Called By]
    • >>   mode_init +
    + +

    mode_pwmp_hd_dinit (Thumb, 30 bytes, Stack size 8 bytes, mode_pwmp_hd.o(i.mode_pwmp_hd_dinit)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = mode_pwmp_hd_dinit ⇒ myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   myfree +
    • >>   pwmp_hd_process_state_set +
    +
    [Called By]
    • >>   mode_init +
    + +

    mode_pwmp_hd_init (Thumb, 216 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.mode_pwmp_hd_init)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = mode_pwmp_hd_init ⇒ lpf_window_init ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   lpf_window_init +
    • >>   calib_parapos_perent +
    • >>   execute_pid_init +
    • >>   DBG_ASSERT +
    • >>   pwmp_public_params_update +
    • >>   _memset +
    • >>   mymalloc +
    • >>   pwmp_hd_process_state_set +
    +
    [Called By]
    • >>   mode_init +
    + +

    mode_pwmp_hd_process (Thumb, 376 bytes, Stack size 192 bytes, mode_pwmp_hd.o(i.mode_pwmp_hd_process)) +

    [Stack]

    • Max Depth = 344
    • Call Chain = mode_pwmp_hd_process ⇒ pwmp_adjust ⇒ pwmp_adjust_hd_pid_calculate ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   ip2current +
    • >>   __aeabi_f2d +
    • >>   pwmp_adjust +
    • >>   execute_dac +
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   h24_bluetooth_output_dbg +
    • >>   pwmp_control_update +
    • >>   _memset +
    • >>   get_actual_travel_adc +
    • >>   pdctrl_out +
    • >>   __2sprintf +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    mode_pwmp_process (Thumb, 44 bytes, Stack size 8 bytes, mode_pwmp.o(i.mode_pwmp_process)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = mode_pwmp_process ⇒ pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   get_actual_travel_adc +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    mstrncmp (Thumb, 30 bytes, Stack size 8 bytes, at_hc24.o(i.mstrncmp)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = mstrncmp +
    +
    [Called By]
    • >>   at_cmd_search +
    • >>   at_cmd_name +
    + +

    my_mem_free (Thumb, 80 bytes, Stack size 16 bytes, malloc.o(i.my_mem_free)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = my_mem_free +
    +
    [Called By]
    • >>   myfree +
    + +

    my_mem_init (Thumb, 50 bytes, Stack size 16 bytes, malloc.o(i.my_mem_init)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = my_mem_init +
    +
    [Calls]
    • >>   mymemset +
    +
    [Called By]
    • >>   main +
    +
    [Address Reference Count : 1]
    • malloc.o(.data) +
    +

    my_mem_malloc (Thumb, 146 bytes, Stack size 24 bytes, malloc.o(i.my_mem_malloc)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = my_mem_malloc +
    +
    [Called By]
    • >>   mymalloc +
    + +

    my_mem_perused (Thumb, 48 bytes, Stack size 8 bytes, malloc.o(i.my_mem_perused)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = my_mem_perused +
    +
    [Address Reference Count : 1]
    • malloc.o(.data) +
    +

    myfree (Thumb, 58 bytes, Stack size 16 bytes, malloc.o(i.myfree)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   mymemset +
    • >>   my_mem_free +
    +
    [Called By]
    • >>   adc_result_median +
    • >>   pwmp_adjust_hd_stop +
    • >>   mode_pwmp_hd_dinit +
    • >>   mode_pwmp_dinit +
    • >>   mode_pwm_dinit +
    • >>   mode_dac_dinit +
    + +

    mymalloc (Thumb, 30 bytes, Stack size 8 bytes, malloc.o(i.mymalloc)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   my_mem_malloc +
    +
    [Called By]
    • >>   spi_create +
    • >>   gpio_create +
    • >>   eeprom_m95_init +
    • >>   adc_result_median +
    • >>   adc_init +
    • >>   lpf_window_init +
    • >>   uart_create +
    • >>   pwmp_adjust_hd_idle +
    • >>   mode_pwmp_hd_init +
    • >>   _malloc +
    + +

    mymemset (Thumb, 14 bytes, Stack size 0 bytes, malloc.o(i.mymemset)) +

    [Called By]

    • >>   my_mem_init +
    • >>   myfree +
    + +

    ntc_get_temp (Thumb, 114 bytes, Stack size 16 bytes, ntc_3950.o(i.ntc_get_temp)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = ntc_get_temp ⇒ __aeabi_i2d ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_ddiv +
    • >>   __aeabi_d2f +
    • >>   __aeabi_i2d +
    • >>   ntc_lookup +
    +
    [Called By]
    • >>   get_temperature +
    + +

    params_init (Thumb, 150 bytes, Stack size 16 bytes, params.o(i.params_init)) +

    [Stack]

    • Max Depth = 712
    • Call Chain = params_init ⇒ params_restart ⇒ fal_execution_kv_write ⇒ fdb_kv_set_blob ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   set_app_preload_language_flag +
    • >>   fal_execution_kv_read +
    • >>   params_restart +
    • >>   _memset +
    +
    [Called By]
    • >>   app_init +
    + +

    params_restart (Thumb, 586 bytes, Stack size 40 bytes, params.o(i.params_restart)) +

    [Stack]

    • Max Depth = 696
    • Call Chain = params_restart ⇒ fal_execution_kv_write ⇒ fdb_kv_set_blob ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   set_pwm_calib_current +
    • >>   rtc_weekday_convert +
    • >>   rtc_set_clock_time +
    • >>   hex_format_dec +
    • >>   get_weekday +
    • >>   get_timestamp +
    • >>   fal_execution_kv_write +
    • >>   dec_format_hex +
    • >>   _memset +
    +
    [Called By]
    • >>   params_init +
    + +

    part_travel_deal (Thumb, 54 bytes, Stack size 16 bytes, convert.o(i.part_travel_deal)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = part_travel_deal ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    +
    [Called By]
    • >>   target_travel_deal +
    + +

    pdctrl_init (Thumb, 96 bytes, Stack size 8 bytes, pdctrl.o(i.pdctrl_init)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = pdctrl_init ⇒ pwmp_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   pwmp_init +
    • >>   pwmp_dinit +
    • >>   pwm_init +
    • >>   pwm_dinit +
    • >>   dac_init +
    • >>   dac_dinit +
    +
    [Called By]
    • >>   mode_init +
    + +

    pdctrl_out (Thumb, 84 bytes, Stack size 0 bytes, pdctrl.o(i.pdctrl_out)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   pdctrl_pwm_set_arr +
    +
    [Called By]
    • >>   alog_control_module +
    • >>   set_step_signal +
    • >>   pwmp_adjust_hd_rough_position100 +
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   pwmp_adjust_hd_bleeding_position0 +
    • >>   pwmp_adjust_hd_bleeding +
    • >>   pwmp_adjust_hd_accurate_position100 +
    • >>   pwmp_adjust_hd_accurate_position0 +
    • >>   mode_pwmp_process +
    • >>   mode_pwmp_hd_process +
    • >>   mode_pwm_process +
    • >>   mode_dac_process +
    + +

    pdctrl_pwm_set_arr (Thumb, 44 bytes, Stack size 8 bytes, pdctrl.o(i.pdctrl_pwm_set_arr)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   calculate_pwm_duty +
    +
    [Called By]
    • >>   pdctrl_out +
    + +

    pdctrl_run (Thumb, 50 bytes, Stack size 0 bytes, pdctrl.o(i.pdctrl_run)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = pdctrl_run ⇒ pwmp_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   pwmp_init +
    • >>   pwm_init +
    • >>   dac_init +
    +
    [Called By]
    • >>   mode_detection +
    • >>   driver_init +
    + +

    pdctrl_stop (Thumb, 50 bytes, Stack size 0 bytes, pdctrl.o(i.pdctrl_stop)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = pdctrl_stop ⇒ pwmp_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   pwmp_dinit +
    • >>   pwm_dinit +
    • >>   dac_dinit +
    +
    [Called By]
    • >>   mode_detection +
    • >>   driver_dinit +
    + +

    pid_constructor (Thumb, 14 bytes, Stack size 0 bytes, pid.o(i.pid_constructor)) +

    [Calls]

    • >>   pid_hd_constructor +
    +
    [Called By]
    • >>   execute_pid_init +
    + +

    pid_hd_constructor (Thumb, 14 bytes, Stack size 0 bytes, pid_hd.o(i.pid_hd_constructor)) +

    [Called By]

    • >>   pid_constructor +
    + +

    pwm_output_deal (Thumb, 16 bytes, Stack size 0 bytes, convert.o(i.pwm_output_deal)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = pwm_output_deal ⇒ pwm_output_position ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   pwm_output_position +
    +
    [Called By]
    • >>   actual_travel_deal +
    + +

    pwm_output_position (Thumb, 40 bytes, Stack size 8 bytes, board.o(i.pwm_output_position)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = pwm_output_position ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    • >>   __aeabi_f2uiz +
    • >>   __ARM_scalbnf +
    +
    [Called By]
    • >>   pwm_output_deal +
    + +

    pwmp_adjust (Thumb, 270 bytes, Stack size 16 bytes, mode_pwmp_hd.o(i.pwmp_adjust)) +

    [Stack]

    • Max Depth = 152
    • Call Chain = pwmp_adjust ⇒ pwmp_adjust_hd_pid_calculate ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   pwmp_adjust_hd_stop +
    • >>   pwmp_adjust_hd_save +
    • >>   pwmp_adjust_hd_rough_position100 +
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   pwmp_adjust_hd_pid_calculate +
    • >>   pwmp_adjust_hd_idle +
    • >>   pwmp_adjust_hd_fail +
    • >>   pwmp_adjust_hd_calculate +
    • >>   pwmp_adjust_hd_bleeding_position0 +
    • >>   pwmp_adjust_hd_bleeding +
    • >>   pwmp_adjust_hd_accurate_position100 +
    • >>   pwmp_adjust_hd_accurate_position0 +
    • >>   pwmp_adjust_hd_PID_tuning +
    +
    [Called By]
    • >>   mode_pwmp_hd_process +
    + +

    pwmp_hd_process_state_set (Thumb, 34 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.pwmp_hd_process_state_set)) +

    [Called By]

    • >>   pwmp_adjust_hd_stop +
    • >>   mode_pwmp_hd_init +
    • >>   mode_pwmp_hd_dinit +
    + +

    rtc_get_clock_time (Thumb, 8 bytes, Stack size 0 bytes, rtc_rx8010.o(i.rtc_get_clock_time)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = rtc_get_clock_time ⇒ rtc_read_bytes +
    +
    [Calls]
    • >>   rtc_read_bytes +
    +
    [Called By]
    • >>   get_timestamp +
    + +

    rtc_init (Thumb, 76 bytes, Stack size 16 bytes, rtc_rx8010.o(i.rtc_init)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = rtc_init ⇒ i2c_create ⇒ _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   rtc_wait_vlf_clear +
    • >>   rtc_soft_reset +
    • >>   rtc_dummy_read +
    • >>   rtc_clock_reginit +
    • >>   i2c_create +
    • >>   gpio_create +
    +
    [Called By]
    • >>   board_init +
    + +

    rtc_set_clock_time (Thumb, 72 bytes, Stack size 16 bytes, rtc_rx8010.o(i.rtc_set_clock_time)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = rtc_set_clock_time ⇒ rtc_write_bytes +
    +
    [Calls]
    • >>   rtc_write_bytes +
    • >>   rtc_write_byte +
    +
    [Called By]
    • >>   params_restart +
    + +

    rtc_weekday_convert (Thumb, 66 bytes, Stack size 0 bytes, rtc_rx8010.o(i.rtc_weekday_convert)) +

    [Called By]

    • >>   params_restart +
    + +

    scheduler_time_occupancy_get (Thumb, 40 bytes, Stack size 16 bytes, sys.o(i.scheduler_time_occupancy_get)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = scheduler_time_occupancy_get ⇒ __aeabi_fmul +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_f2uiz +
    +
    [Called By]
    • >>   idle_inspection +
    + +

    scheduler_time_start (Thumb, 12 bytes, Stack size 4 bytes, sys.o(i.scheduler_time_start)) +

    [Stack]

    • Max Depth = 4
    • Call Chain = scheduler_time_start +
    +
    [Calls]
    • >>   sys_millis +
    +
    [Called By]
    • >>   systom_inspection +
    • >>   business_inspection +
    • >>   btn_inspection +
    + +

    scheduler_time_stop (Thumb, 20 bytes, Stack size 4 bytes, sys.o(i.scheduler_time_stop)) +

    [Stack]

    • Max Depth = 4
    • Call Chain = scheduler_time_stop +
    +
    [Calls]
    • >>   sys_millis +
    +
    [Called By]
    • >>   systom_inspection +
    • >>   business_inspection +
    • >>   btn_inspection +
    + +

    set_app_preload_language_flag (Thumb, 12 bytes, Stack size 0 bytes, board.o(i.set_app_preload_language_flag)) +

    [Called By]

    • >>   params_init +
    + +

    set_pwm_calib_current (Thumb, 68 bytes, Stack size 24 bytes, board.o(i.set_pwm_calib_current)) +

    [Stack]

    • Max Depth = 44
    • Call Chain = set_pwm_calib_current ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fsub +
    • >>   __aeabi_frsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    +
    [Called By]
    • >>   params_restart +
    + +

    small_signal_deal (Thumb, 56 bytes, Stack size 16 bytes, convert.o(i.small_signal_deal)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = small_signal_deal +
    +
    [Calls]
    • >>   __aeabi_cfrcmple +
    • >>   __aeabi_cfcmple +
    +
    [Called By]
    • >>   target_travel_deal +
    + +

    spi_create (Thumb, 140 bytes, Stack size 32 bytes, spis.o(i.spi_create)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = spi_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   eeprom_m95_init +
    + +

    swo_output_deal (Thumb, 130 bytes, Stack size 16 bytes, convert.o(i.swo_output_deal)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = swo_output_deal +
    +
    [Calls]
    • >>   __aeabi_cfrcmple +
    • >>   __aeabi_cfcmple +
    +
    [Called By]
    • >>   actual_travel_deal +
    + +

    sys_millis (Thumb, 12 bytes, Stack size 0 bytes, sys.o(i.sys_millis)) +

    [Called By]

    • >>   key_init +
    • >>   scheduler_time_stop +
    • >>   scheduler_time_start +
    • >>   pwmp_adjust_hd_rough_position100 +
    • >>   pwmp_adjust_hd_bleeding +
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    sys_millis_reset (Thumb, 8 bytes, Stack size 0 bytes, sys.o(i.sys_millis_reset)) +

    [Called By]

    • >>   pwmp_adjust_hd_rough_position100 +
    • >>   pwmp_adjust_hd_idle +
    • >>   pwmp_adjust_hd_bleeding +
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    target_travel_deal (Thumb, 18 bytes, Stack size 8 bytes, convert.o(i.target_travel_deal)) +

    [Stack]

    • Max Depth = 44
    • Call Chain = target_travel_deal ⇒ part_travel_deal ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   small_signal_deal +
    • >>   part_travel_deal +
    • >>   dead_zone_deal +
    +
    [Called By]
    • >>   travel_statistics +
    + +

    time2Stamp (Thumb, 162 bytes, Stack size 20 bytes, lib.o(i.time2Stamp)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = time2Stamp +
    +
    [Called By]
    • >>   get_time +
    + +

    travel_statistics (Thumb, 150 bytes, Stack size 16 bytes, mode.o(i.travel_statistics)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = travel_statistics ⇒ get_current ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   target_travel_deal +
    • >>   i2psb +
    • >>   get_show_travel +
    • >>   get_pid_travel +
    • >>   actual_travel_deal +
    • >>   lpf_update +
    • >>   get_current_deal +
    • >>   get_current +
    • >>   __aeabi_cfcmpeq +
    +
    [Called By]
    • >>   alog_control_module +
    + +

    uart_create (Thumb, 132 bytes, Stack size 40 bytes, uarts.o(i.uart_create)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = uart_create ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   mymalloc +
    +
    [Called By]
    • >>   hart_uart_init +
    • >>   hart_ble_init +
    + +

    uart_dma_reception_callback (Thumb, 118 bytes, Stack size 8 bytes, uarts.o(i.uart_dma_reception_callback)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = uart_dma_reception_callback +
    +
    [Calls]
    • >>   LL_DMA_DisableChannel +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   DMA2_Channel7_IRQHandler +
    • >>   DMA2_Channel6_IRQHandler +
    • >>   DMA2_Channel2_IRQHandler +
    • >>   DMA2_Channel1_IRQHandler +
    + +

    uart_reception_callback (Thumb, 310 bytes, Stack size 16 bytes, uarts.o(i.uart_reception_callback)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = uart_reception_callback +
    +
    [Calls]
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_DMA_DisableChannel +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   USART1_IRQHandler +
    • >>   UART5_IRQHandler +
    + +

    uart_recv_en (Thumb, 232 bytes, Stack size 24 bytes, uarts.o(i.uart_recv_en)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = uart_recv_en +
    +
    [Calls]
    • >>   LL_USART_DMA_GetRegAddr +
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableIT_TC +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_DMA_DisableChannel +
    +
    [Called By]
    • >>   hart_uart_init +
    • >>   hart_ble_init +
    + +

    uart_send_data (Thumb, 202 bytes, Stack size 24 bytes, uarts.o(i.uart_send_data)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = uart_send_data +
    +
    [Calls]
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_DMA_DisableChannel +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   h24_bluetooth_output +
    +

    +

    +Local Symbols +

    +

    LL_AHB2_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, gpio.o(i.LL_AHB2_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB2_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_GPIO_Init +
    + +

    LL_ADC_REG_SetSequencerRanks (Thumb, 34 bytes, Stack size 8 bytes, adc.o(i.LL_ADC_REG_SetSequencerRanks)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_ADC_REG_SetSequencerRanks +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_ADC_SetChannelSamplingTime (Thumb, 30 bytes, Stack size 8 bytes, adc.o(i.LL_ADC_SetChannelSamplingTime)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_ADC_SetChannelSamplingTime +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_ADC_SetChannelSingleDiff (Thumb, 28 bytes, Stack size 8 bytes, adc.o(i.LL_ADC_SetChannelSingleDiff)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_ADC_SetChannelSingleDiff +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_AHB2_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, adc.o(i.LL_AHB2_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB2_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetChannelPriorityLevel (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetChannelPriorityLevel)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetDataTransferDirection (Thumb, 20 bytes, Stack size 8 bytes, adc.o(i.LL_DMA_SetDataTransferDirection)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetDataTransferDirection +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetMemoryIncMode (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetMemoryIncMode)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetMemorySize (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetMemorySize)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetMode (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetMode)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetPeriphIncMode (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetPeriphIncMode)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetPeriphRequest (Thumb, 30 bytes, Stack size 8 bytes, adc.o(i.LL_DMA_SetPeriphRequest)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetPeriphRequest +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_DMA_SetPeriphSize (Thumb, 16 bytes, Stack size 0 bytes, adc.o(i.LL_DMA_SetPeriphSize)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_RCC_SetADCClockSource (Thumb, 14 bytes, Stack size 0 bytes, adc.o(i.LL_RCC_SetADCClockSource)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    NVIC_EncodePriority (Thumb, 50 bytes, Stack size 12 bytes, adc.o(i.NVIC_EncodePriority)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = NVIC_EncodePriority +
    +
    [Called By]
    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    __NVIC_EnableIRQ (Thumb, 26 bytes, Stack size 0 bytes, adc.o(i.__NVIC_EnableIRQ)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    __NVIC_SetPriority (Thumb, 32 bytes, Stack size 0 bytes, adc.o(i.__NVIC_SetPriority)) +

    [Called By]

    • >>   MX_ADC2_Init +
    • >>   MX_ADC1_Init +
    + +

    LL_AHB1_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, dma.o(i.LL_AHB1_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB1_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_DMA_Init +
    + +

    NVIC_EncodePriority (Thumb, 50 bytes, Stack size 12 bytes, dma.o(i.NVIC_EncodePriority)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = NVIC_EncodePriority +
    +
    [Called By]
    • >>   MX_DMA_Init +
    + +

    __NVIC_EnableIRQ (Thumb, 26 bytes, Stack size 0 bytes, dma.o(i.__NVIC_EnableIRQ)) +

    [Called By]

    • >>   MX_DMA_Init +
    + +

    __NVIC_GetPriorityGrouping (Thumb, 10 bytes, Stack size 0 bytes, dma.o(i.__NVIC_GetPriorityGrouping)) +

    [Called By]

    • >>   MX_DMA_Init +
    + +

    __NVIC_SetPriority (Thumb, 32 bytes, Stack size 0 bytes, dma.o(i.__NVIC_SetPriority)) +

    [Called By]

    • >>   MX_DMA_Init +
    + +

    LL_DMA_SetChannelPriorityLevel (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetChannelPriorityLevel)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetDataTransferDirection (Thumb, 20 bytes, Stack size 8 bytes, i2c.o(i.LL_DMA_SetDataTransferDirection)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetDataTransferDirection +
    +
    [Called By]
    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetMemoryIncMode (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetMemoryIncMode)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetMemorySize (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetMemorySize)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetMode (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetMode)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetPeriphIncMode (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetPeriphIncMode)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetPeriphRequest (Thumb, 30 bytes, Stack size 8 bytes, i2c.o(i.LL_DMA_SetPeriphRequest)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetPeriphRequest +
    +
    [Called By]
    • >>   MX_I2C1_Init +
    + +

    LL_DMA_SetPeriphSize (Thumb, 16 bytes, Stack size 0 bytes, i2c.o(i.LL_DMA_SetPeriphSize)) +

    [Called By]

    • >>   MX_I2C1_Init +
    + +

    LL_AHB2_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, spi.o(i.LL_AHB2_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB2_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_SPI2_Init +
    • >>   MX_SPI1_Init +
    + +

    LL_AHB2_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, tim.o(i.LL_AHB2_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB2_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    LL_APB1_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, tim.o(i.LL_APB1_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_APB1_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    LL_TIM_OC_DisableFast (Thumb, 100 bytes, Stack size 0 bytes, tim.o(i.LL_TIM_OC_DisableFast)) +

    [Called By]

    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    LL_TIM_OC_EnablePreload (Thumb, 100 bytes, Stack size 0 bytes, tim.o(i.LL_TIM_OC_EnablePreload)) +

    [Called By]

    • >>   MX_TIM3_Init +
    • >>   MX_TIM2_Init +
    + +

    NVIC_EncodePriority (Thumb, 50 bytes, Stack size 12 bytes, tim.o(i.NVIC_EncodePriority)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = NVIC_EncodePriority +
    +
    [Called By]
    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    + +

    __NVIC_EnableIRQ (Thumb, 26 bytes, Stack size 0 bytes, tim.o(i.__NVIC_EnableIRQ)) +

    [Called By]

    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    + +

    __NVIC_SetPriority (Thumb, 32 bytes, Stack size 0 bytes, tim.o(i.__NVIC_SetPriority)) +

    [Called By]

    • >>   MX_TIM7_Init +
    • >>   MX_TIM6_Init +
    • >>   MX_TIM4_Init +
    + +

    LL_AHB2_GRP1_EnableClock (Thumb, 18 bytes, Stack size 8 bytes, usart.o(i.LL_AHB2_GRP1_EnableClock)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_AHB2_GRP1_EnableClock +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetChannelPriorityLevel (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetChannelPriorityLevel)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetDataTransferDirection (Thumb, 20 bytes, Stack size 8 bytes, usart.o(i.LL_DMA_SetDataTransferDirection)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetDataTransferDirection +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetMemoryIncMode (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetMemoryIncMode)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetMemorySize (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetMemorySize)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetMode (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetMode)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetPeriphIncMode (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetPeriphIncMode)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetPeriphRequest (Thumb, 30 bytes, Stack size 8 bytes, usart.o(i.LL_DMA_SetPeriphRequest)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetPeriphRequest +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    LL_DMA_SetPeriphSize (Thumb, 16 bytes, Stack size 0 bytes, usart.o(i.LL_DMA_SetPeriphSize)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    NVIC_EncodePriority (Thumb, 50 bytes, Stack size 12 bytes, usart.o(i.NVIC_EncodePriority)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = NVIC_EncodePriority +
    +
    [Called By]
    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    __NVIC_EnableIRQ (Thumb, 26 bytes, Stack size 0 bytes, usart.o(i.__NVIC_EnableIRQ)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    __NVIC_SetPriority (Thumb, 32 bytes, Stack size 0 bytes, usart.o(i.__NVIC_SetPriority)) +

    [Called By]

    • >>   MX_USART1_UART_Init +
    • >>   MX_UART5_Init +
    + +

    OC1Config (Thumb, 126 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC1Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC1Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    OC2Config (Thumb, 134 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC2Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC2Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    OC3Config (Thumb, 132 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC3Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC3Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    OC4Config (Thumb, 104 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC4Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC4Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    OC5Config (Thumb, 100 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC5Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC5Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    OC6Config (Thumb, 100 bytes, Stack size 12 bytes, stm32l4xx_ll_tim.o(i.OC6Config)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = OC6Config +
    +
    [Called By]
    • >>   LL_TIM_OC_Init +
    + +

    LL_RCC_HSI_IsReady (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady)) +

    [Called By]

    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    + +

    LL_RCC_LSE_IsReady (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady)) +

    [Called By]

    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    + +

    LL_RCC_MSI_GetRange (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange)) +

    [Called By]

    • >>   RCC_PLL_GetFreqDomain_SYS +
    • >>   RCC_GetSystemClockFreq +
    + +

    LL_RCC_MSI_GetRangeAfterStandby (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby)) +

    [Called By]

    • >>   RCC_PLL_GetFreqDomain_SYS +
    • >>   RCC_GetSystemClockFreq +
    + +

    LL_RCC_MSI_IsEnabledRangeSelect (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect)) +

    [Called By]

    • >>   RCC_PLL_GetFreqDomain_SYS +
    • >>   RCC_GetSystemClockFreq +
    + +

    LL_RCC_PLL_GetDivider (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider)) +

    [Called By]

    • >>   RCC_PLL_GetFreqDomain_SYS +
    + +

    LL_RCC_PLL_GetMainSource (Thumb, 10 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource)) +

    [Called By]

    • >>   RCC_PLL_GetFreqDomain_SYS +
    + +

    RCC_GetHCLKClockFreq (Thumb, 18 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq)) +

    [Called By]

    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    + +

    RCC_GetPCLK1ClockFreq (Thumb, 20 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq)) +

    [Called By]

    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    + +

    RCC_GetPCLK2ClockFreq (Thumb, 20 bytes, Stack size 0 bytes, stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq)) +

    [Called By]

    • >>   LL_RCC_GetUSARTClockFreq +
    + +

    RCC_GetSystemClockFreq (Thumb, 154 bytes, Stack size 8 bytes, stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = RCC_GetSystemClockFreq ⇒ RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   RCC_PLL_GetFreqDomain_SYS +
    • >>   LL_RCC_MSI_IsEnabledRangeSelect +
    • >>   LL_RCC_MSI_GetRangeAfterStandby +
    • >>   LL_RCC_MSI_GetRange +
    +
    [Called By]
    • >>   LL_RCC_GetUSARTClockFreq +
    • >>   LL_RCC_GetUARTClockFreq +
    + +

    RCC_PLL_GetFreqDomain_SYS (Thumb, 176 bytes, Stack size 8 bytes, stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = RCC_PLL_GetFreqDomain_SYS +
    +
    [Calls]
    • >>   LL_RCC_PLL_GetMainSource +
    • >>   LL_RCC_PLL_GetDivider +
    • >>   LL_RCC_MSI_IsEnabledRangeSelect +
    • >>   LL_RCC_MSI_GetRangeAfterStandby +
    • >>   LL_RCC_MSI_GetRange +
    +
    [Called By]
    • >>   RCC_GetSystemClockFreq +
    + +

    app_preload (Thumb, 38 bytes, Stack size 0 bytes, app.o(i.app_preload)) +

    [Called By]

    • >>   app_init +
    + +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, app_hart.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   hart_ble_dinit +
    • >>   hart_uart_init +
    • >>   hart_uart_dinit +
    • >>   hart_ble_init +
    + +

    _mstrlen (Thumb, 16 bytes, Stack size 0 bytes, app_hart.o(i._mstrlen)) +

    [Called By]

    • >>   h24_bluetooth_work +
    + +

    h24_bluetooth_output (Thumb, 20 bytes, Stack size 0 bytes, app_hart.o(i.h24_bluetooth_output)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   uart_send_data +
    +
    [Called By]
    • >>   h24_bluetooth_work +
    • >>   h24_bluetooth_output_dbg +
    + +

    hart_rx_cb (Thumb, 66 bytes, Stack size 16 bytes, app_hart.o(i.hart_rx_cb)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = hart_rx_cb ⇒ at_cmd_parse ⇒ at_cmd_search ⇒ mstrncmp +
    +
    [Calls]
    • >>   at_cmd_parse +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 2]
    • app_hart.o(i.hart_ble_init) +
    • app_hart.o(i.hart_uart_init) +
    +

    hart_tx_complete_cb (Thumb, 12 bytes, Stack size 0 bytes, app_hart.o(i.hart_tx_complete_cb)) +
    [Address Reference Count : 1]

    • app_hart.o(i.hart_uart_init) +
    +

    LL_GPIO_IsInputPinSet (Thumb, 14 bytes, Stack size 0 bytes, app_flow.o(i.LL_GPIO_IsInputPinSet)) +

    [Called By]

    • >>   icon_inspection +
    • >>   current_inspection +
    + +

    btn_inspection (Thumb, 64 bytes, Stack size 16 bytes, app_flow.o(i.btn_inspection)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = btn_inspection ⇒ button_ticks ⇒ button_handler +
    +
    [Calls]
    • >>   scheduler_time_stop +
    • >>   scheduler_time_start +
    • >>   button_ticks +
    +
    [Called By]
    • >>   flow_start +
    + +

    business_inspection (Thumb, 70 bytes, Stack size 16 bytes, app_flow.o(i.business_inspection)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = business_inspection ⇒ mode_detection ⇒ key_init ⇒ button_init +
    +
    [Calls]
    • >>   scheduler_time_stop +
    • >>   scheduler_time_start +
    • >>   mode_detection +
    +
    [Called By]
    • >>   flow_start +
    + +

    current_inspection (Thumb, 164 bytes, Stack size 8 bytes, app_flow.o(i.current_inspection)) +

    [Stack]

    • Max Depth = 240
    • Call Chain = current_inspection ⇒ h24_bluetooth_work ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   hart_ble_dinit +
    • >>   delay_ms +
    • >>   loop_current_convert +
    • >>   driver_init +
    • >>   driver_dinit +
    • >>   adc_result_average +
    • >>   LL_GPIO_IsInputPinSet +
    • >>   hart_uart_init +
    • >>   hart_uart_dinit +
    • >>   hart_ble_init +
    • >>   h24_bluetooth_work +
    +
    [Called By]
    • >>   systom_inspection +
    + +

    icon_inspection (Thumb, 82 bytes, Stack size 16 bytes, app_flow.o(i.icon_inspection)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = icon_inspection +
    +
    [Calls]
    • >>   LL_GPIO_IsInputPinSet +
    +
    [Called By]
    • >>   systom_inspection +
    + +

    idle_inspection (Thumb, 62 bytes, Stack size 16 bytes, app_flow.o(i.idle_inspection)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = idle_inspection ⇒ scheduler_time_occupancy_get ⇒ __aeabi_fmul +
    +
    [Calls]
    • >>   scheduler_time_occupancy_get +
    +
    [Called By]
    • >>   flow_start +
    + +

    pressure_inspection (Thumb, 4 bytes, Stack size 0 bytes, app_flow.o(i.pressure_inspection)) +

    [Stack]

    • Max Depth = 36
    • Call Chain = pressure_inspection ⇒ get_pressure ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   get_pressure +
    +
    [Called By]
    • >>   systom_inspection +
    + +

    systom_inspection (Thumb, 120 bytes, Stack size 24 bytes, app_flow.o(i.systom_inspection)) +

    [Stack]

    • Max Depth = 264
    • Call Chain = systom_inspection ⇒ current_inspection ⇒ h24_bluetooth_work ⇒ h24_bluetooth_output ⇒ uart_send_data +
    +
    [Calls]
    • >>   scheduler_time_stop +
    • >>   scheduler_time_start +
    • >>   temperature_inspection +
    • >>   pressure_inspection +
    • >>   icon_inspection +
    • >>   current_inspection +
    +
    [Called By]
    • >>   flow_start +
    + +

    temperature_inspection (Thumb, 50 bytes, Stack size 16 bytes, app_flow.o(i.temperature_inspection)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = temperature_inspection ⇒ get_temperature ⇒ ntc_get_temp ⇒ __aeabi_i2d ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   get_temperature +
    • >>   __aeabi_cfrcmple +
    • >>   __aeabi_cfcmple +
    +
    [Called By]
    • >>   systom_inspection +
    + +

    LL_GPIO_IsInputPinSet (Thumb, 14 bytes, Stack size 0 bytes, key.o(i.LL_GPIO_IsInputPinSet)) +

    [Called By]

    • >>   read_button_gpio +
    + +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, key.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   key_init +
    • >>   key_dinit +
    + +

    allow_condition (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.allow_condition)) +

    [Called By]

    • >>   read_button_gpio +
    • >>   key_2_5_press_down +
    + +

    key_1_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_1_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_1_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_1_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_1_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_1_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_1_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_1_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_2_5_press_down (Thumb, 26 bytes, Stack size 8 bytes, key.o(i.key_2_5_press_down)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = key_2_5_press_down +
    +
    [Calls]
    • >>   allow_condition +
    +
    [Called By]
    • >>   key_2_press_down_handler +
    + +

    key_2_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_2_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_2_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_2_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_2_press_down_handler (Thumb, 6 bytes, Stack size 0 bytes, key.o(i.key_2_press_down_handler)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = key_2_press_down_handler ⇒ key_2_5_press_down +
    +
    [Calls]
    • >>   key_2_5_press_down +
    +
    [Address Reference Count : 1]
    • key.o(i.key_init) +
    +

    key_2_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_2_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_3_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_3_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_3_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_3_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_3_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_3_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_3_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_3_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_4_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_4_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_4_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_4_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_4_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_4_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_4_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_4_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_5_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_5_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_5_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_5_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_5_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_5_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_5_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_5_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_6_double_click_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_6_double_click_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_6_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_6_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_6_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_6_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_6_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_6_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_auto_long_press_hold_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_auto_long_press_hold_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_auto_press_down_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_auto_press_down_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    key_auto_up_handler (Thumb, 4 bytes, Stack size 0 bytes, key.o(i.key_auto_up_handler)) +
    [Address Reference Count : 1]

    • key.o(i.key_init) +
    +

    read_button_gpio (Thumb, 154 bytes, Stack size 8 bytes, key.o(i.read_button_gpio)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = read_button_gpio +
    +
    [Calls]
    • >>   allow_condition +
    • >>   LL_GPIO_IsInputPinSet +
    +
    [Address Reference Count : 1]
    • key.o(i.key_init) +
    +

    _memset (Thumb, 14 bytes, Stack size 0 bytes, params.o(i._memset)) +

    [Called By]

    • >>   params_init +
    • >>   params_restart +
    + +

    manual_test_mode (Thumb, 16 bytes, Stack size 8 bytes, mode.o(i.manual_test_mode)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = manual_test_mode +
    +
    [Calls]
    • >>   set_manual_test +
    +
    [Called By]
    • >>   mode_detection +
    + +

    mode_autoload_change (Thumb, 6 bytes, Stack size 0 bytes, mode.o(i.mode_autoload_change)) +

    [Called By]

    • >>   mode_init +
    + +

    mode_params_save_cb (Thumb, 12 bytes, Stack size 0 bytes, mode.o(i.mode_params_save_cb)) +

    [Stack]

    • Max Depth = 656
    • Call Chain = mode_params_save_cb ⇒ fal_execution_kv_write ⇒ fdb_kv_set_blob ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fal_execution_kv_write +
    +
    [Address Reference Count : 1]
    • mode.o(i.mode_init) +
    +

    online_offline_mode_adjust (Thumb, 8 bytes, Stack size 0 bytes, mode.o(i.online_offline_mode_adjust)) +

    [Called By]

    • >>   mode_detection +
    + +

    set_manual_test (Thumb, 6 bytes, Stack size 0 bytes, mode.o(i.set_manual_test)) +

    [Called By]

    • >>   manual_test_mode +
    • >>   mode_detection +
    + +

    wait_mode_adjust (Thumb, 8 bytes, Stack size 0 bytes, mode.o(i.wait_mode_adjust)) +

    [Called By]

    • >>   mode_detection +
    + +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, pdctrl.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pwmp_init +
    • >>   pwmp_dinit +
    • >>   pwm_init +
    • >>   pwm_dinit +
    • >>   dac_init +
    • >>   dac_dinit +
    + +

    calculate_pwm_freq (Thumb, 66 bytes, Stack size 24 bytes, pdctrl.o(i.calculate_pwm_freq)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fdiv +
    +
    [Called By]
    • >>   calculate_pwm_duty +
    + +

    dac_dinit (Thumb, 22 bytes, Stack size 0 bytes, pdctrl.o(i.dac_dinit)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = dac_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_stop +
    • >>   pdctrl_init +
    + +

    dac_init (Thumb, 34 bytes, Stack size 8 bytes, pdctrl.o(i.dac_init)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = dac_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_run +
    • >>   pdctrl_init +
    + +

    pwm_dinit (Thumb, 30 bytes, Stack size 0 bytes, pdctrl.o(i.pwm_dinit)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = pwm_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_stop +
    • >>   pdctrl_init +
    + +

    pwm_init (Thumb, 50 bytes, Stack size 8 bytes, pdctrl.o(i.pwm_init)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = pwm_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_run +
    • >>   pdctrl_init +
    + +

    pwmp_dinit (Thumb, 30 bytes, Stack size 0 bytes, pdctrl.o(i.pwmp_dinit)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = pwmp_dinit ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_stop +
    • >>   pdctrl_init +
    + +

    pwmp_init (Thumb, 42 bytes, Stack size 8 bytes, pdctrl.o(i.pwmp_init)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = pwmp_init ⇒ LL_GPIO_SetPinMode +
    +
    [Calls]
    • >>   LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   pdctrl_run +
    • >>   pdctrl_init +
    + +

    _mstrlen (Thumb, 16 bytes, Stack size 0 bytes, at_hc24.o(i._mstrlen)) +

    [Called By]

    • >>   at_cmd_parse +
    • >>   at_cmd_search +
    + +

    at_cmd_name (Thumb, 34 bytes, Stack size 4 bytes, at_hc24.o(i.at_cmd_name)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = at_cmd_name ⇒ mstrncmp +
    +
    [Calls]
    • >>   mstrncmp +
    +
    [Address Reference Count : 1]
    • at_hc24.o(.constdata) +
    +

    at_cmd_test (Thumb, 14 bytes, Stack size 0 bytes, at_hc24.o(i.at_cmd_test)) +

    [Called By]

    • >>   at_cmd_parse +
    +
    [Address Reference Count : 1]
    • at_hc24.o(.constdata) +
    +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, mode_pwm.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   mode_pwm_dinit +
    + +

    fal_execution_get (Thumb, 40 bytes, Stack size 0 bytes, fal_execution.o(i.fal_execution_get)) +

    [Called By]

    • >>   fal_execution_kv_write +
    • >>   fal_execution_kv_read +
    + +

    fal_execution_set_cmac (Thumb, 102 bytes, Stack size 320 bytes, fal_execution.o(i.fal_execution_set_cmac)) +

    [Stack]

    • Max Depth = 432
    • Call Chain = fal_execution_set_cmac ⇒ AES_CMAC_Update ⇒ aes_encrypt ⇒ mix_sub_columns +
    +
    [Calls]
    • >>   AES_CMAC_Update +
    • >>   AES_CMAC_SetKey +
    • >>   AES_CMAC_Init +
    • >>   AES_CMAC_Final +
    +
    [Called By]
    • >>   fal_execution_kv_write +
    • >>   fal_execution_kv_read +
    + +

    fal_execution_set_crc (Thumb, 20 bytes, Stack size 8 bytes, fal_execution.o(i.fal_execution_set_crc)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = fal_execution_set_crc ⇒ crc16_compute +
    +
    [Calls]
    • >>   crc16_compute +
    +
    [Called By]
    • >>   fal_execution_kv_write +
    • >>   fal_execution_kv_read +
    + +

    get_time (Thumb, 92 bytes, Stack size 24 bytes, fal_execution.o(i.get_time)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = get_time ⇒ hex_format_dec ⇒ __2sprintf +
    +
    [Calls]
    • >>   hex_format_dec +
    • >>   get_timestamp +
    • >>   time2Stamp +
    +
    [Address Reference Count : 1]
    • fal_execution.o(i.fal_execution_init) +
    +

    _memset (Thumb, 14 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i._memset)) +

    [Called By]

    • >>   pwmp_adjust_hd_idle +
    • >>   mode_pwmp_hd_process +
    • >>   mode_pwmp_hd_init +
    + +

    execute_dac_plan1 (Thumb, 540 bytes, Stack size 40 bytes, mode_pwmp_hd.o(i.execute_dac_plan1)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = execute_dac_plan1 ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_ui2d +
    • >>   __aeabi_f2d +
    • >>   __aeabi_dsub +
    • >>   __aeabi_dmul +
    • >>   __aeabi_dadd +
    • >>   __aeabi_d2uiz +
    • >>   __aeabi_cdcmple +
    • >>   __aeabi_ui2f +
    • >>   __aeabi_i2f +
    • >>   __aeabi_fsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    • >>   __aeabi_f2uiz +
    • >>   __aeabi_cfcmple +
    +
    [Called By]
    • >>   execute_dac +
    + +

    execute_dac_plan2 (Thumb, 4 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.execute_dac_plan2)) +

    [Called By]

    • >>   execute_dac +
    + +

    execute_dac_plan3 (Thumb, 4 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.execute_dac_plan3)) +

    [Called By]

    • >>   execute_dac +
    + +

    execute_dac_plan4 (Thumb, 4 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.execute_dac_plan4)) +

    [Called By]

    • >>   execute_dac +
    + +

    get_pwmp_control_kd (Thumb, 10 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.get_pwmp_control_kd)) +

    [Called By]

    • >>   execute_pid_init +
    + +

    get_pwmp_control_ki (Thumb, 10 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.get_pwmp_control_ki)) +

    [Called By]

    • >>   execute_pid_init +
    + +

    get_pwmp_control_kp (Thumb, 22 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.get_pwmp_control_kp)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = get_pwmp_control_kp ⇒ __aeabi_fmul +
    +
    [Calls]
    • >>   __aeabi_fmul +
    +
    [Called By]
    • >>   execute_pid_init +
    + +

    get_time_tangent (Thumb, 22 bytes, Stack size 8 bytes, mode_pwmp_hd.o(i.get_time_tangent)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = get_time_tangent ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_fsub +
    • >>   __aeabi_fdiv +
    +
    [Called By]
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    pid_autotune_way_set (Thumb, 8 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.pid_autotune_way_set)) +

    [Called By]

    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    pwmp_adjust_hd_PID_tuning (Thumb, 280 bytes, Stack size 32 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = pwmp_adjust_hd_PID_tuning ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   sys_millis_reset +
    • >>   __aeabi_ui2f +
    • >>   __aeabi_fsub +
    • >>   __aeabi_frsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   sys_millis +
    • >>   __aeabi_cfrcmple +
    • >>   set_step_signal +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pid_autotune_way_set +
    • >>   get_time_tangent +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_accurate_position0 (Thumb, 196 bytes, Stack size 16 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = pwmp_adjust_hd_accurate_position0 ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_accurate_position100 (Thumb, 242 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = pwmp_adjust_hd_accurate_position100 ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_bleeding (Thumb, 284 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = pwmp_adjust_hd_bleeding ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   sys_millis_reset +
    • >>   sys_millis +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_bleeding_position0 (Thumb, 260 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = pwmp_adjust_hd_bleeding_position0 ⇒ pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   get_actual_travel_adc +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_calculate (Thumb, 164 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate)) +

    [Stack]

    • Max Depth = 68
    • Call Chain = pwmp_adjust_hd_calculate ⇒ calib_parapos_perent ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   calib_parapos_perent +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_fail (Thumb, 10 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_fail)) +

    [Called By]

    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_idle (Thumb, 174 bytes, Stack size 16 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_idle)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = pwmp_adjust_hd_idle ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   sys_millis_reset +
    • >>   DBG_ASSERT +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   _memset +
    • >>   mymalloc +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_pid_calculate (Thumb, 490 bytes, Stack size 48 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate)) +

    [Stack]

    • Max Depth = 136
    • Call Chain = pwmp_adjust_hd_pid_calculate ⇒ __aeabi_dsub ⇒ __aeabi_dadd ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_f2d +
    • >>   __aeabi_dsub +
    • >>   __aeabi_dmul +
    • >>   __aeabi_ddiv +
    • >>   __aeabi_dadd +
    • >>   __aeabi_d2f +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fdiv +
    • >>   __aeabi_fadd +
    • >>   __ARM_scalbnf +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_rough_position0 (Thumb, 324 bytes, Stack size 40 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = pwmp_adjust_hd_rough_position0 ⇒ __aeabi_dmul ⇒ _double_epilogue ⇒ _double_round +
    +
    [Calls]
    • >>   __aeabi_ui2d +
    • >>   __aeabi_dmul +
    • >>   __aeabi_d2uiz +
    • >>   DBG_ASSERT +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_rough_position100 (Thumb, 166 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = pwmp_adjust_hd_rough_position100 ⇒ pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   sys_millis_reset +
    • >>   sys_millis +
    • >>   pwmp_adjust_hd_valve_position_change +
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_save (Thumb, 56 bytes, Stack size 8 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_save)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = pwmp_adjust_hd_save +
    +
    [Calls]
    • >>   pwmp_public_params_update +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_stop (Thumb, 44 bytes, Stack size 16 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_stop)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = pwmp_adjust_hd_stop ⇒ myfree ⇒ my_mem_free +
    +
    [Calls]
    • >>   myfree +
    • >>   pwmp_hd_process_state_set +
    +
    [Called By]
    • >>   pwmp_adjust +
    + +

    pwmp_adjust_hd_valve_position_change (Thumb, 90 bytes, Stack size 24 bytes, mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = pwmp_adjust_hd_valve_position_change ⇒ get_actual_travel_adc ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   __aeabi_ui2f +
    • >>   get_actual_travel_adc +
    +
    [Called By]
    • >>   pwmp_adjust_hd_rough_position100 +
    • >>   pwmp_adjust_hd_rough_position0 +
    • >>   pwmp_adjust_hd_idle +
    • >>   pwmp_adjust_hd_bleeding +
    • >>   pwmp_adjust_hd_accurate_position100 +
    • >>   pwmp_adjust_hd_accurate_position0 +
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    pwmp_control_update (Thumb, 74 bytes, Stack size 16 bytes, mode_pwmp_hd.o(i.pwmp_control_update)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = pwmp_control_update ⇒ get_actual_travel ⇒ adc_result_median ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   lpf_window_update +
    • >>   get_actual_travel +
    • >>   __aeabi_fsub +
    • >>   get_pid_travel +
    • >>   actual_travel_deal +
    +
    [Called By]
    • >>   mode_pwmp_hd_process +
    + +

    pwmp_public_params_update (Thumb, 84 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.pwmp_public_params_update)) +

    [Called By]

    • >>   pwmp_adjust_hd_save +
    • >>   mode_pwmp_hd_init +
    + +

    set_step_signal (Thumb, 4 bytes, Stack size 0 bytes, mode_pwmp_hd.o(i.set_step_signal)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = set_step_signal ⇒ pdctrl_out ⇒ pdctrl_pwm_set_arr ⇒ calculate_pwm_duty ⇒ calculate_pwm_freq ⇒ __aeabi_fdiv +
    +
    [Calls]
    • >>   pdctrl_out +
    +
    [Called By]
    • >>   pwmp_adjust_hd_PID_tuning +
    + +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, mode_pwmp.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   mode_pwmp_dinit +
    + +

    dma_rx_cb (Thumb, 58 bytes, Stack size 0 bytes, eeprom_m95.o(i.dma_rx_cb)) +
    [Address Reference Count : 1]

    • eeprom_m95.o(i.eeprom_m95_init) +
    +

    dma_tx_cb (Thumb, 62 bytes, Stack size 0 bytes, eeprom_m95.o(i.dma_tx_cb)) +
    [Address Reference Count : 1]

    • eeprom_m95.o(i.eeprom_m95_init) +
    +

    eeprom_m95_ready (Thumb, 48 bytes, Stack size 16 bytes, eeprom_m95.o(i.eeprom_m95_ready)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = eeprom_m95_ready ⇒ read_status +
    +
    [Calls]
    • >>   read_status +
    +
    [Called By]
    • >>   eeprom_m95_write +
    + +

    read_status (Thumb, 58 bytes, Stack size 24 bytes, eeprom_m95.o(i.read_status)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = read_status +
    +
    [Called By]
    • >>   eeprom_m95_ready +
    + +

    write_disable (Thumb, 46 bytes, Stack size 24 bytes, eeprom_m95.o(i.write_disable)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = write_disable +
    +
    [Called By]
    • >>   eeprom_m95_write +
    + +

    write_enable (Thumb, 46 bytes, Stack size 24 bytes, eeprom_m95.o(i.write_enable)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = write_enable +
    +
    [Called By]
    • >>   eeprom_m95_write +
    + +

    eeprom_fm24_dma_rx_cb (Thumb, 80 bytes, Stack size 8 bytes, eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = eeprom_fm24_dma_rx_cb +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • eeprom_fm24.o(i.eeprom_fm24_init) +
    +

    eeprom_fm24_dma_tx_cb (Thumb, 80 bytes, Stack size 8 bytes, eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = eeprom_fm24_dma_tx_cb +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • eeprom_fm24.o(i.eeprom_fm24_init) +
    +

    rtc_check_vlf (Thumb, 32 bytes, Stack size 8 bytes, rtc_rx8010.o(i.rtc_check_vlf)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = rtc_check_vlf ⇒ rtc_read_byte +
    +
    [Calls]
    • >>   rtc_read_byte +
    +
    [Called By]
    • >>   rtc_wait_vlf_clear +
    + +

    rtc_clock_reginit (Thumb, 70 bytes, Stack size 8 bytes, rtc_rx8010.o(i.rtc_clock_reginit)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = rtc_clock_reginit ⇒ rtc_write_byte +
    +
    [Calls]
    • >>   rtc_write_byte +
    +
    [Called By]
    • >>   rtc_init +
    + +

    rtc_dummy_read (Thumb, 58 bytes, Stack size 8 bytes, rtc_rx8010.o(i.rtc_dummy_read)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = rtc_dummy_read +
    +
    [Called By]
    • >>   rtc_init +
    + +

    rtc_read_byte (Thumb, 124 bytes, Stack size 16 bytes, rtc_rx8010.o(i.rtc_read_byte)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = rtc_read_byte +
    +
    [Called By]
    • >>   rtc_check_vlf +
    + +

    rtc_read_bytes (Thumb, 160 bytes, Stack size 24 bytes, rtc_rx8010.o(i.rtc_read_bytes)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = rtc_read_bytes +
    +
    [Called By]
    • >>   rtc_get_clock_time +
    + +

    rtc_soft_reset (Thumb, 64 bytes, Stack size 8 bytes, rtc_rx8010.o(i.rtc_soft_reset)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = rtc_soft_reset ⇒ delay_ms ⇒ delay_us +
    +
    [Calls]
    • >>   delay_ms +
    • >>   rtc_write_byte +
    +
    [Called By]
    • >>   rtc_init +
    + +

    rtc_wait_vlf_clear (Thumb, 42 bytes, Stack size 16 bytes, rtc_rx8010.o(i.rtc_wait_vlf_clear)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = rtc_wait_vlf_clear ⇒ rtc_write_byte +
    +
    [Calls]
    • >>   rtc_write_byte +
    • >>   rtc_check_vlf +
    +
    [Called By]
    • >>   rtc_init +
    + +

    rtc_write_byte (Thumb, 124 bytes, Stack size 24 bytes, rtc_rx8010.o(i.rtc_write_byte)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = rtc_write_byte +
    +
    [Called By]
    • >>   rtc_wait_vlf_clear +
    • >>   rtc_soft_reset +
    • >>   rtc_clock_reginit +
    • >>   rtc_set_clock_time +
    + +

    rtc_write_bytes (Thumb, 138 bytes, Stack size 32 bytes, rtc_rx8010.o(i.rtc_write_bytes)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = rtc_write_bytes +
    +
    [Called By]
    • >>   rtc_set_clock_time +
    + +

    ntc_lookup (Thumb, 62 bytes, Stack size 12 bytes, ntc_3950.o(i.ntc_lookup)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = ntc_lookup +
    +
    [Called By]
    • >>   ntc_get_temp +
    + +

    LL_GPIO_SetPinMode (Thumb, 38 bytes, Stack size 12 bytes, leds.o(i.LL_GPIO_SetPinMode)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = LL_GPIO_SetPinMode +
    +
    [Called By]
    • >>   leds_dinit +
    • >>   leds_init +
    + +

    LL_ADC_DMA_GetRegAddr (Thumb, 12 bytes, Stack size 0 bytes, adcs.o(i.LL_ADC_DMA_GetRegAddr)) +

    [Called By]

    • >>   adc_init +
    • >>   adc_env_callback +
    + +

    LL_DMA_EnableChannel (Thumb, 14 bytes, Stack size 0 bytes, adcs.o(i.LL_DMA_EnableChannel)) +

    [Called By]

    • >>   adc_init +
    • >>   adc_env_callback +
    + +

    LL_DMA_SetDataLength (Thumb, 18 bytes, Stack size 0 bytes, adcs.o(i.LL_DMA_SetDataLength)) +

    [Called By]

    • >>   adc_init +
    • >>   adc_env_callback +
    + +

    _memset (Thumb, 14 bytes, Stack size 0 bytes, adcs.o(i._memset)) +

    [Called By]

    • >>   adc_init +
    + +

    adc_get_channels_count (Thumb, 148 bytes, Stack size 0 bytes, adcs.o(i.adc_get_channels_count)) +

    [Called By]

    • >>   adc_init +
    + +

    memcpyL (Thumb, 18 bytes, Stack size 0 bytes, adcs.o(i.memcpyL)) +

    [Called By]

    • >>   adc_result_median +
    + +

    _read (Thumb, 26 bytes, Stack size 16 bytes, gpios.o(i._read)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _read +
    +
    [Address Reference Count : 1]
    • gpios.o(i.gpio_create) +
    +

    _reset (Thumb, 14 bytes, Stack size 16 bytes, gpios.o(i._reset)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _reset +
    +
    [Address Reference Count : 1]
    • gpios.o(i.gpio_create) +
    +

    _set (Thumb, 14 bytes, Stack size 16 bytes, gpios.o(i._set)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _set +
    +
    [Address Reference Count : 1]
    • gpios.o(i.gpio_create) +
    +

    _toggle (Thumb, 26 bytes, Stack size 16 bytes, gpios.o(i._toggle)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _toggle +
    +
    [Address Reference Count : 1]
    • gpios.o(i.gpio_create) +
    +

    _dma_enable (Thumb, 144 bytes, Stack size 32 bytes, spis.o(i._dma_enable)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = _dma_enable +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _hardware_enable (Thumb, 54 bytes, Stack size 16 bytes, spis.o(i._hardware_enable)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _hardware_enable +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _read_drdy (Thumb, 36 bytes, Stack size 16 bytes, spis.o(i._read_drdy)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _read_drdy +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _read_regs (Thumb, 106 bytes, Stack size 24 bytes, spis.o(i._read_regs)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = _read_regs ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_dma_callback (Thumb, 44 bytes, Stack size 8 bytes, spis.o(i._spi_dma_callback)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = _spi_dma_callback +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_dma_send (Thumb, 96 bytes, Stack size 16 bytes, spis.o(i._spi_dma_send)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = _spi_dma_send +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_read_reg (Thumb, 58 bytes, Stack size 16 bytes, spis.o(i._spi_read_reg)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = _spi_read_reg ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_write_cmd (Thumb, 86 bytes, Stack size 32 bytes, spis.o(i._spi_write_cmd)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = _spi_write_cmd ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_write_data (Thumb, 106 bytes, Stack size 32 bytes, spis.o(i._spi_write_data)) +

    [Stack]

    • Max Depth = 80
    • Call Chain = _spi_write_data ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _spi_write_reg (Thumb, 58 bytes, Stack size 16 bytes, spis.o(i._spi_write_reg)) +

    [Stack]

    • Max Depth = 64
    • Call Chain = _spi_write_reg ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    _write_regs (Thumb, 102 bytes, Stack size 24 bytes, spis.o(i._write_regs)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = _write_regs ⇒ spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_read_write_byte +
    • >>   spi_cs_low +
    • >>   spi_cs_high +
    • >>   DBG_ASSERT +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    spi_cs_high (Thumb, 40 bytes, Stack size 16 bytes, spis.o(i.spi_cs_high)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = spi_cs_high +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   _write_regs +
    • >>   _spi_write_reg +
    • >>   _spi_write_data +
    • >>   _spi_write_cmd +
    • >>   _spi_read_reg +
    • >>   _read_regs +
    + +

    spi_cs_low (Thumb, 40 bytes, Stack size 16 bytes, spis.o(i.spi_cs_low)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = spi_cs_low +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   _write_regs +
    • >>   _spi_write_reg +
    • >>   _spi_write_data +
    • >>   _spi_write_cmd +
    • >>   _spi_read_reg +
    • >>   _read_regs +
    + +

    spi_delay (Thumb, 36 bytes, Stack size 8 bytes, spis.o(i.spi_delay)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = spi_delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   spi_read_write_byte +
    + +

    spi_read_write_byte (Thumb, 318 bytes, Stack size 40 bytes, spis.o(i.spi_read_write_byte)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = spi_read_write_byte ⇒ spi_delay +
    +
    [Calls]
    • >>   spi_delay +
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   _write_regs +
    • >>   _spi_write_reg +
    • >>   _spi_write_data +
    • >>   _spi_write_cmd +
    • >>   _spi_read_reg +
    • >>   _read_regs +
    +
    [Address Reference Count : 1]
    • spis.o(i.spi_create) +
    +

    LL_DMA_DisableChannel (Thumb, 14 bytes, Stack size 0 bytes, uarts.o(i.LL_DMA_DisableChannel)) +

    [Called By]

    • >>   uart_reception_callback +
    • >>   uart_dma_reception_callback +
    • >>   uart_send_data +
    • >>   uart_recv_en +
    + +

    LL_DMA_EnableChannel (Thumb, 14 bytes, Stack size 0 bytes, uarts.o(i.LL_DMA_EnableChannel)) +

    [Called By]

    • >>   uart_reception_callback +
    • >>   uart_send_data +
    • >>   uart_recv_en +
    + +

    LL_DMA_EnableIT_TC (Thumb, 14 bytes, Stack size 0 bytes, uarts.o(i.LL_DMA_EnableIT_TC)) +

    [Called By]

    • >>   uart_recv_en +
    + +

    LL_DMA_SetDataLength (Thumb, 18 bytes, Stack size 0 bytes, uarts.o(i.LL_DMA_SetDataLength)) +

    [Called By]

    • >>   uart_reception_callback +
    • >>   uart_send_data +
    • >>   uart_recv_en +
    + +

    LL_USART_DMA_GetRegAddr (Thumb, 12 bytes, Stack size 0 bytes, uarts.o(i.LL_USART_DMA_GetRegAddr)) +

    [Called By]

    • >>   uart_recv_en +
    + +

    LL_DMA_ConfigAddresses (Thumb, 34 bytes, Stack size 20 bytes, i2cs.o(i.LL_DMA_ConfigAddresses)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = LL_DMA_ConfigAddresses +
    +
    [Called By]
    • >>   i2c_create_dma +
    + +

    LL_DMA_ConfigTransfer (Thumb, 20 bytes, Stack size 8 bytes, i2cs.o(i.LL_DMA_ConfigTransfer)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_ConfigTransfer +
    +
    [Called By]
    • >>   i2c_create_dma +
    + +

    LL_DMA_DisableChannel (Thumb, 14 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_DisableChannel)) +

    [Called By]

    • >>   i2c_create_dma +
    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    LL_DMA_EnableChannel (Thumb, 14 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_EnableChannel)) +

    [Called By]

    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    LL_DMA_EnableIT_TC (Thumb, 14 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_EnableIT_TC)) +

    [Called By]

    • >>   i2c_create_dma +
    + +

    LL_DMA_EnableIT_TE (Thumb, 14 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_EnableIT_TE)) +

    [Called By]

    • >>   i2c_create_dma +
    + +

    LL_DMA_GetDataTransferDirection (Thumb, 14 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_GetDataTransferDirection)) +

    [Called By]

    • >>   i2c_create_dma +
    + +

    LL_DMA_SetDataLength (Thumb, 18 bytes, Stack size 0 bytes, i2cs.o(i.LL_DMA_SetDataLength)) +

    [Called By]

    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    LL_DMA_SetPeriphRequest (Thumb, 30 bytes, Stack size 8 bytes, i2cs.o(i.LL_DMA_SetPeriphRequest)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = LL_DMA_SetPeriphRequest +
    +
    [Called By]
    • >>   i2c_create_dma +
    + +

    LL_I2C_DMA_GetRegAddr (Thumb, 12 bytes, Stack size 0 bytes, i2cs.o(i.LL_I2C_DMA_GetRegAddr)) +

    [Called By]

    • >>   i2c_create_dma +
    + +

    LL_I2C_HandleTransfer (Thumb, 46 bytes, Stack size 20 bytes, i2cs.o(i.LL_I2C_HandleTransfer)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = LL_I2C_HandleTransfer +
    +
    [Called By]
    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    _malloc (Thumb, 8 bytes, Stack size 0 bytes, i2cs.o(i._malloc)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = _malloc ⇒ mymalloc ⇒ my_mem_malloc +
    +
    [Calls]
    • >>   mymalloc +
    +
    [Called By]
    • >>   i2c_create +
    • >>   i2c_create_dma +
    + +

    _read_byte (Thumb, 324 bytes, Stack size 40 bytes, i2cs.o(i._read_byte)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = _read_byte ⇒ delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   delay +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    _read_mem_dma (Thumb, 352 bytes, Stack size 40 bytes, i2cs.o(i._read_mem_dma)) +

    [Stack]

    • Max Depth = 60
    • Call Chain = _read_mem_dma ⇒ LL_I2C_HandleTransfer +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   memcpyL +
    • >>   i2c_reset +
    • >>   LL_I2C_HandleTransfer +
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_DMA_DisableChannel +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create_dma) +
    +

    _start (Thumb, 114 bytes, Stack size 32 bytes, i2cs.o(i._start)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _start ⇒ delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   delay +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    _stop (Thumb, 108 bytes, Stack size 32 bytes, i2cs.o(i._stop)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _stop ⇒ delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   delay +
    +
    [Called By]
    • >>   _wait_ack +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    _wait_ack (Thumb, 142 bytes, Stack size 32 bytes, i2cs.o(i._wait_ack)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = _wait_ack ⇒ _stop ⇒ delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   delay +
    • >>   _stop +
    +
    [Called By]
    • >>   _write_word +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    _write_byte (Thumb, 174 bytes, Stack size 32 bytes, i2cs.o(i._write_byte)) +

    [Stack]

    • Max Depth = 40
    • Call Chain = _write_byte ⇒ delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   delay +
    +
    [Called By]
    • >>   _write_word +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    _write_mem_dma (Thumb, 244 bytes, Stack size 40 bytes, i2cs.o(i._write_mem_dma)) +

    [Stack]

    • Max Depth = 60
    • Call Chain = _write_mem_dma ⇒ LL_I2C_HandleTransfer +
    +
    [Calls]
    • >>   DBG_ASSERT +
    • >>   memcpyL +
    • >>   i2c_reset +
    • >>   LL_I2C_HandleTransfer +
    • >>   LL_DMA_SetDataLength +
    • >>   LL_DMA_EnableChannel +
    • >>   LL_DMA_DisableChannel +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create_dma) +
    +

    _write_word (Thumb, 38 bytes, Stack size 16 bytes, i2cs.o(i._write_word)) +

    [Stack]

    • Max Depth = 88
    • Call Chain = _write_word ⇒ _wait_ack ⇒ _stop ⇒ delay +
    +
    [Calls]
    • >>   _write_byte +
    • >>   _wait_ack +
    +
    [Address Reference Count : 1]
    • i2cs.o(i.i2c_create) +
    +

    delay (Thumb, 36 bytes, Stack size 8 bytes, i2cs.o(i.delay)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = delay +
    +
    [Calls]
    • >>   DBG_ASSERT +
    +
    [Called By]
    • >>   _write_byte +
    • >>   _wait_ack +
    • >>   _stop +
    • >>   _start +
    • >>   _read_byte +
    + +

    i2c_reset (Thumb, 18 bytes, Stack size 0 bytes, i2cs.o(i.i2c_reset)) +

    [Called By]

    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    memcpyL (Thumb, 18 bytes, Stack size 0 bytes, i2cs.o(i.memcpyL)) +

    [Called By]

    • >>   i2c_create +
    • >>   _write_mem_dma +
    • >>   _read_mem_dma +
    + +

    _memset (Thumb, 14 bytes, Stack size 0 bytes, lib.o(i._memset)) +

    [Called By]

    • >>   hex_format_dec +
    • >>   dec_format_hex +
    + +

    _memset (Thumb, 14 bytes, Stack size 0 bytes, cmac.o(i._memset)) +

    [Called By]

    • >>   AES_CMAC_Init +
    • >>   AES_CMAC_Final +
    + +

    memcpyL (Thumb, 18 bytes, Stack size 0 bytes, cmac.o(i.memcpyL)) +

    [Called By]

    • >>   AES_CMAC_Update +
    • >>   AES_CMAC_Final +
    + +

    add_round_key (Thumb, 4 bytes, Stack size 0 bytes, aes.o(i.add_round_key)) +

    [Calls]

    • >>   xor_block +
    +
    [Called By]
    • >>   aes_encrypt +
    + +

    copy_and_key (Thumb, 132 bytes, Stack size 8 bytes, aes.o(i.copy_and_key)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = copy_and_key +
    +
    [Called By]
    • >>   aes_encrypt +
    + +

    copy_block (Thumb, 66 bytes, Stack size 0 bytes, aes.o(i.copy_block)) +

    [Called By]

    • >>   mix_sub_columns +
    + +

    copy_block_nn (Thumb, 18 bytes, Stack size 0 bytes, aes.o(i.copy_block_nn)) +

    [Called By]

    • >>   aes_set_key +
    + +

    mix_sub_columns (Thumb, 536 bytes, Stack size 32 bytes, aes.o(i.mix_sub_columns)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = mix_sub_columns +
    +
    [Calls]
    • >>   copy_block +
    +
    [Called By]
    • >>   aes_encrypt +
    + +

    shift_sub_rows (Thumb, 100 bytes, Stack size 0 bytes, aes.o(i.shift_sub_rows)) +

    [Called By]

    • >>   aes_encrypt +
    + +

    xor_block (Thumb, 130 bytes, Stack size 0 bytes, aes.o(i.xor_block)) +

    [Called By]

    • >>   add_round_key +
    + +

    _fdb_kv_load (Thumb, 130 bytes, Stack size 152 bytes, fdb_kvdb.o(i._fdb_kv_load)) +

    [Stack]

    • Max Depth = 736
    • Call Chain = _fdb_kv_load ⇒ fdb_kv_set_default ⇒ create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fdb_kv_set_default +
    • >>   sector_iterator +
    • >>   kv_iterator +
    • >>   gc_collect +
    +
    [Called By]
    • >>   fdb_kvdb_init +
    + +

    align_write (Thumb, 42 bytes, Stack size 32 bytes, fdb_kvdb.o(i.align_write)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = align_write ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_flash_write +
    • >>   __aeabi_memset +
    +
    [Called By]
    • >>   create_kv_blob +
    + +

    alloc_kv (Thumb, 132 bytes, Stack size 64 bytes, fdb_kvdb.o(i.alloc_kv)) +

    [Stack]

    • Max Depth = 416
    • Call Chain = alloc_kv ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   sector_iterator +
    +
    [Called By]
    • >>   new_kv +
    • >>   move_kv +
    + +

    alloc_kv_cb (Thumb, 48 bytes, Stack size 0 bytes, fdb_kvdb.o(i.alloc_kv_cb)) +
    [Address Reference Count : 1]

    • fdb_kvdb.o(i.alloc_kv) +
    +

    check_and_recovery_gc_cb (Thumb, 32 bytes, Stack size 8 bytes, fdb_kvdb.o(i.check_and_recovery_gc_cb)) +

    [Stack]

    • Max Depth = 432
    • Call Chain = check_and_recovery_gc_cb ⇒ gc_collect ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   gc_collect +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i._fdb_kv_load) +
    +

    check_and_recovery_kv_cb (Thumb, 84 bytes, Stack size 24 bytes, fdb_kvdb.o(i.check_and_recovery_kv_cb)) +

    [Stack]

    • Max Depth = 800
    • Call Chain = check_and_recovery_kv_cb ⇒ move_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   update_kv_cache +
    • >>   move_kv +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i._fdb_kv_load) +
    +

    check_oldest_addr_cb (Thumb, 28 bytes, Stack size 0 bytes, fdb_kvdb.o(i.check_oldest_addr_cb)) +
    [Address Reference Count : 1]

    • fdb_kvdb.o(i.fdb_kvdb_init) +
    +

    check_sec_hdr_cb (Thumb, 40 bytes, Stack size 8 bytes, fdb_kvdb.o(i.check_sec_hdr_cb)) +

    [Stack]

    • Max Depth = 112
    • Call Chain = check_sec_hdr_cb ⇒ format_sector ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   format_sector +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i._fdb_kv_load) +
    +

    create_kv_blob (Thumb, 376 bytes, Stack size 72 bytes, fdb_kvdb.o(i.create_kv_blob)) +

    [Stack]

    • Max Depth = 520
    • Call Chain = create_kv_blob ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fdb_calc_crc32 +
    • >>   _fdb_write_status +
    • >>   write_kv_hdr +
    • >>   update_sector_empty_addr_cache +
    • >>   update_sec_status +
    • >>   update_kv_cache +
    • >>   new_kv +
    • >>   align_write +
    • >>   strlen +
    • >>   __aeabi_memset +
    +
    [Called By]
    • >>   fdb_kv_set_default +
    • >>   set_kv +
    • >>   kv_auto_update +
    + +

    del_kv (Thumb, 242 bytes, Stack size 136 bytes, fdb_kvdb.o(i.del_kv)) +

    [Stack]

    • Max Depth = 552
    • Call Chain = del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   _fdb_read_status +
    • >>   update_kv_cache +
    • >>   get_sector_from_cache +
    • >>   find_kv +
    • >>   strlen +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   set_kv +
    • >>   move_kv +
    + +

    do_gc (Thumb, 154 bytes, Stack size 120 bytes, fdb_kvdb.o(i.do_gc)) +

    [Stack]

    • Max Depth = 896
    • Call Chain = do_gc ⇒ move_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   read_kv +
    • >>   move_kv +
    • >>   get_next_sector_addr +
    • >>   get_next_kv_addr +
    • >>   format_sector +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i.gc_collect_by_free_size) +
    +

    find_kv (Thumb, 78 bytes, Stack size 24 bytes, fdb_kvdb.o(i.find_kv)) +

    [Stack]

    • Max Depth = 416
    • Call Chain = find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   update_kv_cache +
    • >>   read_kv +
    • >>   get_kv_from_cache +
    • >>   find_kv_no_cache +
    • >>   strlen +
    +
    [Called By]
    • >>   set_kv +
    • >>   kv_auto_update +
    • >>   get_kv +
    • >>   del_kv +
    + +

    find_kv_cb (Thumb, 60 bytes, Stack size 16 bytes, fdb_kvdb.o(i.find_kv_cb)) +

    [Stack]

    • Max Depth = 28
    • Call Chain = find_kv_cb ⇒ strncmp +
    +
    [Calls]
    • >>   strncmp +
    • >>   strlen +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i.find_kv_no_cache) +
    +

    find_kv_no_cache (Thumb, 30 bytes, Stack size 24 bytes, fdb_kvdb.o(i.find_kv_no_cache)) +

    [Stack]

    • Max Depth = 392
    • Call Chain = find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   kv_iterator +
    +
    [Called By]
    • >>   move_kv +
    • >>   find_kv +
    + +

    find_next_kv_addr (Thumb, 154 bytes, Stack size 64 bytes, fdb_kvdb.o(i.find_next_kv_addr)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = find_next_kv_addr ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   _fdb_flash_read +
    • >>   get_sector_from_cache +
    +
    [Called By]
    • >>   get_next_kv_addr +
    + +

    format_sector (Thumb, 136 bytes, Stack size 64 bytes, fdb_kvdb.o(i.format_sector)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = format_sector ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_set_status +
    • >>   _fdb_flash_write +
    • >>   _fdb_flash_erase +
    • >>   update_sector_cache +
    • >>   __aeabi_memset +
    • >>   __aeabi_memcpy4 +
    +
    [Called By]
    • >>   fdb_kv_set_default +
    • >>   do_gc +
    • >>   check_sec_hdr_cb +
    + +

    gc_check_cb (Thumb, 16 bytes, Stack size 0 bytes, fdb_kvdb.o(i.gc_check_cb)) +
    [Address Reference Count : 1]

    • fdb_kvdb.o(i.gc_collect_by_free_size) +
    +

    gc_collect (Thumb, 6 bytes, Stack size 0 bytes, fdb_kvdb.o(i.gc_collect)) +

    [Stack]

    • Max Depth = 424
    • Call Chain = gc_collect ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   gc_collect_by_free_size +
    +
    [Called By]
    • >>   check_and_recovery_gc_cb +
    • >>   _fdb_kv_load +
    + +

    gc_collect_by_free_size (Thumb, 72 bytes, Stack size 72 bytes, fdb_kvdb.o(i.gc_collect_by_free_size)) +

    [Stack]

    • Max Depth = 424
    • Call Chain = gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   sector_iterator +
    +
    [Called By]
    • >>   set_kv +
    • >>   new_kv +
    • >>   gc_collect +
    + +

    get_kv (Thumb, 74 bytes, Stack size 112 bytes, fdb_kvdb.o(i.get_kv)) +

    [Stack]

    • Max Depth = 528
    • Call Chain = get_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_flash_read +
    • >>   find_kv +
    +
    [Called By]
    • >>   fdb_kv_get_blob +
    • >>   kv_auto_update +
    + +

    get_kv_from_cache (Thumb, 142 bytes, Stack size 104 bytes, fdb_kvdb.o(i.get_kv_from_cache)) +

    [Stack]

    • Max Depth = 144
    • Call Chain = get_kv_from_cache ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   fdb_calc_crc32 +
    • >>   _fdb_flash_read +
    • >>   strncmp +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   find_kv +
    + +

    get_next_kv_addr (Thumb, 96 bytes, Stack size 24 bytes, fdb_kvdb.o(i.get_next_kv_addr)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = get_next_kv_addr ⇒ find_next_kv_addr ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   find_next_kv_addr +
    +
    [Called By]
    • >>   read_sector_info +
    • >>   kv_iterator +
    • >>   do_gc +
    + +

    get_next_sector_addr (Thumb, 38 bytes, Stack size 12 bytes, fdb_kvdb.o(i.get_next_sector_addr)) +

    [Stack]

    • Max Depth = 12
    • Call Chain = get_next_sector_addr +
    +
    [Called By]
    • >>   sector_iterator +
    • >>   kv_iterator +
    • >>   do_gc +
    + +

    get_sector_from_cache (Thumb, 42 bytes, Stack size 0 bytes, fdb_kvdb.o(i.get_sector_from_cache)) +

    [Called By]

    • >>   update_sector_status_store_cache +
    • >>   update_sector_empty_addr_cache +
    • >>   read_sector_info +
    • >>   find_next_kv_addr +
    • >>   del_kv +
    + +

    kv_auto_update (Thumb, 146 bytes, Stack size 40 bytes, fdb_kvdb.o(i.kv_auto_update)) +

    [Stack]

    • Max Depth = 632
    • Call Chain = kv_auto_update ⇒ set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   set_kv +
    • >>   get_kv +
    • >>   find_kv +
    • >>   create_kv_blob +
    • >>   strlen +
    +
    [Called By]
    • >>   fdb_kvdb_init +
    + +

    kv_iterator (Thumb, 114 bytes, Stack size 56 bytes, fdb_kvdb.o(i.kv_iterator)) +

    [Stack]

    • Max Depth = 368
    • Call Chain = kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   read_sector_info +
    • >>   read_kv +
    • >>   get_next_sector_addr +
    • >>   get_next_kv_addr +
    +
    [Called By]
    • >>   find_kv_no_cache +
    • >>   _fdb_kv_load +
    + +

    move_kv (Thumb, 282 bytes, Stack size 224 bytes, fdb_kvdb.o(i.move_kv)) +

    [Stack]

    • Max Depth = 776
    • Call Chain = move_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   _fdb_flash_write +
    • >>   _fdb_flash_read +
    • >>   update_sector_empty_addr_cache +
    • >>   update_sec_status +
    • >>   update_kv_cache +
    • >>   find_kv_no_cache +
    • >>   del_kv +
    • >>   alloc_kv +
    • >>   strncpy +
    • >>   __aeabi_memclr4 +
    +
    [Called By]
    • >>   do_gc +
    • >>   check_and_recovery_kv_cb +
    + +

    new_kv (Thumb, 62 bytes, Stack size 24 bytes, fdb_kvdb.o(i.new_kv)) +

    [Stack]

    • Max Depth = 448
    • Call Chain = new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   gc_collect_by_free_size +
    • >>   alloc_kv +
    +
    [Called By]
    • >>   new_kv_ex +
    • >>   create_kv_blob +
    + +

    new_kv_ex (Thumb, 8 bytes, Stack size 0 bytes, fdb_kvdb.o(i.new_kv_ex)) +

    [Stack]

    • Max Depth = 448
    • Call Chain = new_kv_ex ⇒ new_kv ⇒ gc_collect_by_free_size ⇒ sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   new_kv +
    +
    [Called By]
    • >>   set_kv +
    + +

    read_kv (Thumb, 288 bytes, Stack size 112 bytes, fdb_kvdb.o(i.read_kv)) +

    [Stack]

    • Max Depth = 176
    • Call Chain = read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   fdb_calc_crc32 +
    • >>   _fdb_write_status +
    • >>   _fdb_get_status +
    • >>   _fdb_flash_read +
    +
    [Called By]
    • >>   read_sector_info +
    • >>   kv_iterator +
    • >>   find_kv +
    • >>   do_gc +
    + +

    read_sector_info (Thumb, 346 bytes, Stack size 136 bytes, fdb_kvdb.o(i.read_sector_info)) +

    [Stack]

    • Max Depth = 312
    • Call Chain = read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_get_status +
    • >>   _fdb_flash_read +
    • >>   _fdb_continue_ff_addr +
    • >>   update_sector_cache +
    • >>   read_kv +
    • >>   get_sector_from_cache +
    • >>   get_next_kv_addr +
    • >>   __aeabi_memcpy4 +
    +
    [Called By]
    • >>   sector_iterator +
    • >>   kv_iterator +
    + +

    sector_iterator (Thumb, 100 bytes, Stack size 40 bytes, fdb_kvdb.o(i.sector_iterator)) +

    [Stack]

    • Max Depth = 352
    • Call Chain = sector_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   read_sector_info +
    • >>   get_next_sector_addr +
    +
    [Called By]
    • >>   fdb_kvdb_init +
    • >>   gc_collect_by_free_size +
    • >>   alloc_kv +
    • >>   _fdb_kv_load +
    + +

    sector_statistics_cb (Thumb, 42 bytes, Stack size 8 bytes, fdb_kvdb.o(i.sector_statistics_cb)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = sector_statistics_cb +
    +
    [Address Reference Count : 1]
    • fdb_kvdb.o(i.alloc_kv) +
    +

    set_kv (Thumb, 172 bytes, Stack size 40 bytes, fdb_kvdb.o(i.set_kv)) +

    [Stack]

    • Max Depth = 592
    • Call Chain = set_kv ⇒ del_kv ⇒ find_kv ⇒ find_kv_no_cache ⇒ kv_iterator ⇒ read_sector_info ⇒ read_kv ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   new_kv_ex +
    • >>   gc_collect_by_free_size +
    • >>   find_kv +
    • >>   del_kv +
    • >>   create_kv_blob +
    • >>   strlen +
    +
    [Called By]
    • >>   fdb_kv_set_blob +
    • >>   kv_auto_update +
    + +

    update_kv_cache (Thumb, 178 bytes, Stack size 24 bytes, fdb_kvdb.o(i.update_kv_cache)) +

    [Stack]

    • Max Depth = 32
    • Call Chain = update_kv_cache ⇒ fdb_calc_crc32 +
    +
    [Calls]
    • >>   fdb_calc_crc32 +
    +
    [Called By]
    • >>   move_kv +
    • >>   find_kv +
    • >>   del_kv +
    • >>   create_kv_blob +
    • >>   check_and_recovery_kv_cb +
    + +

    update_sec_status (Thumb, 118 bytes, Stack size 40 bytes, fdb_kvdb.o(i.update_sec_status)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = update_sec_status ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   update_sector_status_store_cache +
    +
    [Called By]
    • >>   move_kv +
    • >>   create_kv_blob +
    + +

    update_sector_cache (Thumb, 110 bytes, Stack size 8 bytes, fdb_kvdb.o(i.update_sector_cache)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = update_sector_cache +
    +
    [Calls]
    • >>   __aeabi_memcpy4 +
    +
    [Called By]
    • >>   read_sector_info +
    • >>   format_sector +
    + +

    update_sector_empty_addr_cache (Thumb, 30 bytes, Stack size 16 bytes, fdb_kvdb.o(i.update_sector_empty_addr_cache)) +

    [Stack]

    • Max Depth = 16
    • Call Chain = update_sector_empty_addr_cache +
    +
    [Calls]
    • >>   get_sector_from_cache +
    +
    [Called By]
    • >>   move_kv +
    • >>   create_kv_blob +
    + +

    update_sector_status_store_cache (Thumb, 16 bytes, Stack size 8 bytes, fdb_kvdb.o(i.update_sector_status_store_cache)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = update_sector_status_store_cache +
    +
    [Calls]
    • >>   get_sector_from_cache +
    +
    [Called By]
    • >>   update_sec_status +
    + +

    write_kv_hdr (Thumb, 52 bytes, Stack size 32 bytes, fdb_kvdb.o(i.write_kv_hdr)) +

    [Stack]

    • Max Depth = 96
    • Call Chain = write_kv_hdr ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   _fdb_flash_write +
    +
    [Called By]
    • >>   create_kv_blob +
    + +

    check_sec_hdr_cb (Thumb, 92 bytes, Stack size 8 bytes, fdb_tsdb.o(i.check_sec_hdr_cb)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = check_sec_hdr_cb +
    +
    [Calls]
    • >>   __aeabi_memcpy4 +
    +
    [Address Reference Count : 1]
    • fdb_tsdb.o(i.fdb_tsdb_init) +
    +

    format_all_cb (Thumb, 16 bytes, Stack size 8 bytes, fdb_tsdb.o(i.format_all_cb)) +

    [Stack]

    • Max Depth = 136
    • Call Chain = format_all_cb ⇒ format_sector ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   format_sector +
    +
    [Address Reference Count : 1]
    • fdb_tsdb.o(i.tsl_format_all) +
    +

    format_sector (Thumb, 80 bytes, Stack size 64 bytes, fdb_tsdb.o(i.format_sector)) +

    [Stack]

    • Max Depth = 128
    • Call Chain = format_sector ⇒ _fdb_write_status ⇒ _fdb_flash_write ⇒ fal_partition_write +
    +
    [Calls]
    • >>   _fdb_write_status +
    • >>   _fdb_flash_write +
    • >>   _fdb_flash_erase +
    +
    [Called By]
    • >>   format_all_cb +
    + +

    get_next_sector_addr (Thumb, 30 bytes, Stack size 8 bytes, fdb_tsdb.o(i.get_next_sector_addr)) +

    [Stack]

    • Max Depth = 8
    • Call Chain = get_next_sector_addr +
    +
    [Called By]
    • >>   sector_iterator +
    + +

    read_sector_info (Thumb, 252 bytes, Stack size 88 bytes, fdb_tsdb.o(i.read_sector_info)) +

    [Stack]

    • Max Depth = 160
    • Call Chain = read_sector_info ⇒ read_tsl ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   read_tsl +
    • >>   _fdb_get_status +
    • >>   _fdb_flash_read +
    +
    [Called By]
    • >>   fdb_tsdb_init +
    • >>   tsl_format_all +
    • >>   sector_iterator +
    + +

    read_tsl (Thumb, 70 bytes, Stack size 32 bytes, fdb_tsdb.o(i.read_tsl)) +

    [Stack]

    • Max Depth = 72
    • Call Chain = read_tsl ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   _fdb_get_status +
    • >>   _fdb_flash_read +
    +
    [Called By]
    • >>   read_sector_info +
    + +

    sector_iterator (Thumb, 100 bytes, Stack size 40 bytes, fdb_tsdb.o(i.sector_iterator)) +

    [Stack]

    • Max Depth = 200
    • Call Chain = sector_iterator ⇒ read_sector_info ⇒ read_tsl ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   read_sector_info +
    • >>   get_next_sector_addr +
    +
    [Called By]
    • >>   fdb_tsdb_init +
    • >>   tsl_format_all +
    + +

    tsl_format_all (Thumb, 54 bytes, Stack size 64 bytes, fdb_tsdb.o(i.tsl_format_all)) +

    [Stack]

    • Max Depth = 264
    • Call Chain = tsl_format_all ⇒ sector_iterator ⇒ read_sector_info ⇒ read_tsl ⇒ _fdb_flash_read ⇒ fal_partition_read +
    +
    [Calls]
    • >>   sector_iterator +
    • >>   read_sector_info +
    +
    [Called By]
    • >>   fdb_tsdb_init +
    + +

    erase (Thumb, 6 bytes, Stack size 0 bytes, fal_eeprom95_port.o(i.erase)) +
    [Address Reference Count : 1]

    • fal_eeprom95_port.o(.data) +
    +

    init (Thumb, 4 bytes, Stack size 0 bytes, fal_eeprom95_port.o(i.init)) +
    [Address Reference Count : 1]

    • fal_eeprom95_port.o(.data) +
    +

    read1 (Thumb, 26 bytes, Stack size 16 bytes, fal_eeprom95_port.o(i.read1)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = read1 ⇒ eeprom_m95_read +
    +
    [Calls]
    • >>   eeprom_m95_read +
    +
    [Address Reference Count : 1]
    • fal_eeprom95_port.o(.data) +
    +

    read2 (Thumb, 26 bytes, Stack size 16 bytes, fal_eeprom95_port.o(i.read2)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = read2 ⇒ eeprom_m95_read +
    +
    [Calls]
    • >>   eeprom_m95_read +
    +
    [Address Reference Count : 1]
    • fal_eeprom95_port.o(.data) +
    +

    write1 (Thumb, 26 bytes, Stack size 16 bytes, fal_eeprom95_port.o(i.write1)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = write1 ⇒ eeprom_m95_write ⇒ eeprom_m95_ready ⇒ read_status +
    +
    [Calls]
    • >>   eeprom_m95_write +
    +
    [Address Reference Count : 1]
    • fal_eeprom95_port.o(.data) +
    +

    write2 (Thumb, 26 bytes, Stack size 16 bytes, fal_eeprom95_port.o(i.write2)) +

    [Stack]

    • Max Depth = 104
    • Call Chain = write2 ⇒ eeprom_m95_write ⇒ eeprom_m95_ready ⇒ read_status +
    +
    [Calls]
    • >>   eeprom_m95_write +
    +
    [Address Reference Count : 1]
    • fal_eeprom95_port.o(.data) +
    +

    erase (Thumb, 4 bytes, Stack size 0 bytes, fal_eeprom24_port.o(i.erase)) +
    [Address Reference Count : 1]

    • fal_eeprom24_port.o(.data) +
    +

    init (Thumb, 4 bytes, Stack size 0 bytes, fal_eeprom24_port.o(i.init)) +
    [Address Reference Count : 1]

    • fal_eeprom24_port.o(.data) +
    +

    read (Thumb, 28 bytes, Stack size 8 bytes, fal_eeprom24_port.o(i.read)) +

    [Stack]

    • Max Depth = 24
    • Call Chain = read ⇒ eeprom_fm24_read +
    +
    [Calls]
    • >>   eeprom_fm24_read +
    +
    [Address Reference Count : 1]
    • fal_eeprom24_port.o(.data) +
    +

    write (Thumb, 20 bytes, Stack size 8 bytes, fal_eeprom24_port.o(i.write)) +

    [Stack]

    • Max Depth = 48
    • Call Chain = write ⇒ eeprom_fm24_write +
    +
    [Calls]
    • >>   eeprom_fm24_write +
    +
    [Address Reference Count : 1]
    • fal_eeprom24_port.o(.data) +
    +

    check_and_update_part_cache (Thumb, 64 bytes, Stack size 24 bytes, fal_partition.o(i.check_and_update_part_cache)) +

    [Stack]

    • Max Depth = 52
    • Call Chain = check_and_update_part_cache ⇒ fal_flash_device_find ⇒ strncmp +
    +
    [Calls]
    • >>   fal_flash_device_find +
    +
    [Called By]
    • >>   fal_partition_init +
    + +

    flash_device_find_by_part (Thumb, 16 bytes, Stack size 0 bytes, fal_partition.o(i.flash_device_find_by_part)) +

    [Called By]

    • >>   fal_partition_write +
    • >>   fal_partition_read +
    • >>   fal_partition_erase +
    + +

    _pid_position (Thumb, 366 bytes, Stack size 40 bytes, pid_hd.o(i._pid_position)) +

    [Stack]

    • Max Depth = 60
    • Call Chain = _pid_position ⇒ __aeabi_fsub ⇒ __aeabi_fadd ⇒ _float_epilogue +
    +
    [Calls]
    • >>   __aeabi_f2d +
    • >>   __aeabi_cdcmple +
    • >>   __aeabi_fsub +
    • >>   __aeabi_fmul +
    • >>   __aeabi_fadd +
    • >>   __aeabi_cfrcmple +
    • >>   __aeabi_cfcmple +
    • >>   __aeabi_cdrcmple +
    +
    [Address Reference Count : 1]
    • pid_hd.o(i.pid_hd_constructor) +
    +

    _set_ctrl_prm_position (Thumb, 50 bytes, Stack size 20 bytes, pid_hd.o(i._set_ctrl_prm_position)) +

    [Stack]

    • Max Depth = 20
    • Call Chain = _set_ctrl_prm_position +
    +
    [Address Reference Count : 1]
    • pid_hd.o(i.pid_hd_constructor) +
    +

    _set_out_prm_position (Thumb, 6 bytes, Stack size 0 bytes, pid_hd.o(i._set_out_prm_position)) +
    [Address Reference Count : 1]

    • pid_hd.o(i.pid_hd_constructor) +
    +

    _fp_digits (Thumb, 334 bytes, Stack size 56 bytes, printfa.o(i._fp_digits), UNUSED) +

    [Calls]

    • >>   __aeabi_dmul +
    • >>   __aeabi_ddiv +
    • >>   __aeabi_dadd +
    • >>   __aeabi_cdrcmple +
    • >>   __aeabi_uldivmod +
    • >>   __aeabi_d2ulz +
    +
    [Called By]
    • >>   _printf_core +
    + +

    _printf_core (Thumb, 1744 bytes, Stack size 136 bytes, printfa.o(i._printf_core), UNUSED) +

    [Calls]

    • >>   __aeabi_uldivmod +
    • >>   __aeabi_uidivmod +
    • >>   _printf_pre_padding +
    • >>   _printf_post_padding +
    • >>   _fp_digits +
    +
    [Called By]
    • >>   __0sprintf +
    + +

    _printf_post_padding (Thumb, 36 bytes, Stack size 24 bytes, printfa.o(i._printf_post_padding), UNUSED) +

    [Called By]

    • >>   _printf_core +
    + +

    _printf_pre_padding (Thumb, 46 bytes, Stack size 24 bytes, printfa.o(i._printf_pre_padding), UNUSED) +

    [Called By]

    • >>   _printf_core +
    + +

    _sputc (Thumb, 10 bytes, Stack size 0 bytes, printfa.o(i._sputc)) +

    [Called By]

    • >>   __0sprintf +
    +
    [Address Reference Count : 1]
    • printfa.o(i.__0sprintf) +

    +

    +Undefined Global Symbols +


    diff --git a/MDK-ARM/controller-v2/controller-v2.lnp b/MDK-ARM/controller-v2/controller-v2.lnp new file mode 100644 index 0000000..f646dd6 --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2.lnp @@ -0,0 +1,84 @@ +--cpu=Cortex-M4 --fpu=SoftVFP --branchpatch=sdcomp-29491-629360 +"controller-v2\startup_stm32l476xx.o" +"controller-v2\main.o" +"controller-v2\gpio.o" +"controller-v2\adc.o" +"controller-v2\dac.o" +"controller-v2\dma.o" +"controller-v2\i2c.o" +"controller-v2\spi.o" +"controller-v2\tim.o" +"controller-v2\usart.o" +"controller-v2\stm32l4xx_it.o" +"controller-v2\stm32l4xx_ll_utils.o" +"controller-v2\stm32l4xx_ll_exti.o" +"controller-v2\stm32l4xx_ll_gpio.o" +"controller-v2\stm32l4xx_ll_adc.o" +"controller-v2\stm32l4xx_ll_dma.o" +"controller-v2\stm32l4xx_ll_dac.o" +"controller-v2\stm32l4xx_ll_i2c.o" +"controller-v2\stm32l4xx_ll_spi.o" +"controller-v2\stm32l4xx_ll_pwr.o" +"controller-v2\stm32l4xx_ll_tim.o" +"controller-v2\stm32l4xx_ll_usart.o" +"controller-v2\stm32l4xx_ll_rcc.o" +"controller-v2\system_stm32l4xx.o" +"controller-v2\app.o" +"controller-v2\app_hart.o" +"controller-v2\app_flow.o" +"controller-v2\key.o" +"controller-v2\convert.o" +"controller-v2\params.o" +"controller-v2\mode.o" +"controller-v2\pdctrl.o" +"controller-v2\at_hc24.o" +"controller-v2\mode_dac.o" +"controller-v2\mode_pwm.o" +"controller-v2\fal_execution.o" +"controller-v2\mode_pwmp_hd.o" +"controller-v2\mode_pwmp.o" +"controller-v2\board.o" +"controller-v2\eeprom_m95.o" +"controller-v2\eeprom_fm24.o" +"controller-v2\eeprom_lc02b.o" +"controller-v2\rtc_rx8010.o" +"controller-v2\ntc_3950.o" +"controller-v2\leds.o" +"controller-v2\delay.o" +"controller-v2\sys.o" +"controller-v2\btn.o" +"controller-v2\adcs.o" +"controller-v2\dacs.o" +"controller-v2\gpios.o" +"controller-v2\spis.o" +"controller-v2\uarts.o" +"controller-v2\eeprom.o" +"controller-v2\i2cs.o" +"controller-v2\pwms.o" +"controller-v2\debug.o" +"controller-v2\lib.o" +"controller-v2\malloc.o" +"controller-v2\flow_core.o" +"controller-v2\sqqueue.o" +"controller-v2\filter.o" +"controller-v2\clist.o" +"controller-v2\cmac.o" +"controller-v2\aes.o" +"controller-v2\fdb.o" +"controller-v2\fdb_kvdb.o" +"controller-v2\fdb_tsdb.o" +"controller-v2\fdb_utils.o" +"controller-v2\fdb_file.o" +"controller-v2\fal_eeprom95_port.o" +"controller-v2\fal_eeprom24_port.o" +"controller-v2\fal.o" +"controller-v2\fal_flash.o" +"controller-v2\fal_partition.o" +"controller-v2\fal_rtt.o" +"controller-v2\pid.o" +"controller-v2\pid_hd.o" +"../Middlewares/ST/ARM/DSP/Lib/arm_cortexM4l_math.lib" +--library_type=microlib --strict --scatter "controller-v2\controller-v2.sct" +--summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols +--info sizes --info totals --info unused --info veneers +--list "controller-v2.map" -o controller-v2\controller-v2.4 \ No newline at end of file diff --git a/MDK-ARM/controller-v2/controller-v2.map b/MDK-ARM/controller-v2/controller-v2.map new file mode 100644 index 0000000..c256c30 --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2.map @@ -0,0 +1,5519 @@ +Component: ARM Compiler 5.06 update 1 (build 61) Tool: armlink [4d35a8] + +============================================================================== + +Section Cross References + + startup_stm32l476xx.o(RESET) refers to startup_stm32l476xx.o(STACK) for __initial_sp + startup_stm32l476xx.o(RESET) refers to startup_stm32l476xx.o(.text) for Reset_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.NMI_Handler) for NMI_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.HardFault_Handler) for HardFault_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.MemManage_Handler) for MemManage_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.BusFault_Handler) for BusFault_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.UsageFault_Handler) for UsageFault_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.SVC_Handler) for SVC_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DebugMon_Handler) for DebugMon_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.PendSV_Handler) for PendSV_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.SysTick_Handler) for SysTick_Handler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler) for DMA1_Channel1_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler) for DMA1_Channel2_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler) for DMA1_Channel5_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) for DMA1_Channel6_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) for DMA1_Channel7_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.ADC1_2_IRQHandler) for ADC1_2_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.TIM4_IRQHandler) for TIM4_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.I2C1_EV_IRQHandler) for I2C1_EV_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.USART1_IRQHandler) for USART1_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.UART5_IRQHandler) for UART5_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) for TIM6_DAC_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.TIM7_IRQHandler) for TIM7_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) for DMA2_Channel1_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) for DMA2_Channel2_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) for DMA2_Channel6_IRQHandler + startup_stm32l476xx.o(RESET) refers to stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) for DMA2_Channel7_IRQHandler + startup_stm32l476xx.o(.text) refers to system_stm32l4xx.o(i.SystemInit) for SystemInit + startup_stm32l476xx.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main + main.o(i.SystemClock_Config) refers to stm32l4xx_ll_utils.o(i.LL_Init1msTick) for LL_Init1msTick + main.o(i.SystemClock_Config) refers to stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) for LL_SetSystemCoreClock + main.o(i.main) refers to main.o(i.SystemClock_Config) for SystemClock_Config + main.o(i.main) refers to main.o(i.PeriphCommonClock_Config) for PeriphCommonClock_Config + main.o(i.main) refers to delay.o(i.delay_init) for delay_init + main.o(i.main) refers to delay.o(i.delay_ms) for delay_ms + main.o(i.main) refers to gpio.o(i.MX_GPIO_Init) for MX_GPIO_Init + main.o(i.main) refers to dma.o(i.MX_DMA_Init) for MX_DMA_Init + main.o(i.main) refers to adc.o(i.MX_ADC1_Init) for MX_ADC1_Init + main.o(i.main) refers to tim.o(i.MX_TIM3_Init) for MX_TIM3_Init + main.o(i.main) refers to dac.o(i.MX_DAC1_Init) for MX_DAC1_Init + main.o(i.main) refers to spi.o(i.MX_SPI2_Init) for MX_SPI2_Init + main.o(i.main) refers to spi.o(i.MX_SPI1_Init) for MX_SPI1_Init + main.o(i.main) refers to tim.o(i.MX_TIM2_Init) for MX_TIM2_Init + main.o(i.main) refers to usart.o(i.MX_UART5_Init) for MX_UART5_Init + main.o(i.main) refers to usart.o(i.MX_USART1_UART_Init) for MX_USART1_UART_Init + main.o(i.main) refers to tim.o(i.MX_TIM6_Init) for MX_TIM6_Init + main.o(i.main) refers to tim.o(i.MX_TIM7_Init) for MX_TIM7_Init + main.o(i.main) refers to i2c.o(i.MX_I2C1_Init) for MX_I2C1_Init + main.o(i.main) refers to adc.o(i.MX_ADC2_Init) for MX_ADC2_Init + main.o(i.main) refers to tim.o(i.MX_TIM4_Init) for MX_TIM4_Init + main.o(i.main) refers to app_hart.o(i.hart_ble_dinit) for hart_ble_dinit + main.o(i.main) refers to leds.o(i.leds_dinit) for leds_dinit + main.o(i.main) refers to malloc.o(i.my_mem_init) for my_mem_init + main.o(i.main) refers to board.o(i.board_init) for board_init + main.o(i.main) refers to app.o(i.app_init) for app_init + main.o(i.main) refers to app.o(i.app_start) for app_start + gpio.o(i.MX_GPIO_Init) refers to memseta.o(.text) for __aeabi_memclr4 + gpio.o(i.MX_GPIO_Init) refers to gpio.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + gpio.o(i.MX_GPIO_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + adc.o(i.LL_DMA_SetChannelPriorityLevel) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetDataTransferDirection) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetMemoryIncMode) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetMemorySize) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetMode) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetPeriphIncMode) refers to adc.o(.constdata) for .constdata + adc.o(i.LL_DMA_SetPeriphSize) refers to adc.o(.constdata) for .constdata + adc.o(i.MX_ADC1_Init) refers to memseta.o(.text) for __aeabi_memclr4 + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_RCC_SetADCClockSource) for LL_RCC_SetADCClockSource + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + adc.o(i.MX_ADC1_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetMode) for LL_DMA_SetMode + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize + adc.o(i.MX_ADC1_Init) refers to adc.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + adc.o(i.MX_ADC1_Init) refers to adc.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + adc.o(i.MX_ADC1_Init) refers to adc.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + adc.o(i.MX_ADC1_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_Init) for LL_ADC_Init + adc.o(i.MX_ADC1_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_REG_Init) for LL_ADC_REG_Init + adc.o(i.MX_ADC1_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_CommonInit) for LL_ADC_CommonInit + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_REG_SetSequencerRanks) for LL_ADC_REG_SetSequencerRanks + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_SetChannelSamplingTime) for LL_ADC_SetChannelSamplingTime + adc.o(i.MX_ADC1_Init) refers to adc.o(i.LL_ADC_SetChannelSingleDiff) for LL_ADC_SetChannelSingleDiff + adc.o(i.MX_ADC1_Init) refers to system_stm32l4xx.o(.data) for SystemCoreClock + adc.o(i.MX_ADC2_Init) refers to memseta.o(.text) for __aeabi_memclr4 + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_RCC_SetADCClockSource) for LL_RCC_SetADCClockSource + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + adc.o(i.MX_ADC2_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetMode) for LL_DMA_SetMode + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize + adc.o(i.MX_ADC2_Init) refers to adc.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + adc.o(i.MX_ADC2_Init) refers to adc.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + adc.o(i.MX_ADC2_Init) refers to adc.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + adc.o(i.MX_ADC2_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_Init) for LL_ADC_Init + adc.o(i.MX_ADC2_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_REG_Init) for LL_ADC_REG_Init + adc.o(i.MX_ADC2_Init) refers to stm32l4xx_ll_adc.o(i.LL_ADC_CommonInit) for LL_ADC_CommonInit + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_ADC_REG_SetSequencerRanks) for LL_ADC_REG_SetSequencerRanks + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_ADC_SetChannelSamplingTime) for LL_ADC_SetChannelSamplingTime + adc.o(i.MX_ADC2_Init) refers to adc.o(i.LL_ADC_SetChannelSingleDiff) for LL_ADC_SetChannelSingleDiff + adc.o(i.MX_ADC2_Init) refers to system_stm32l4xx.o(.data) for SystemCoreClock + dac.o(i.MX_DAC1_Init) refers to memseta.o(.text) for __aeabi_memclr4 + dac.o(i.MX_DAC1_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + dac.o(i.MX_DAC1_Init) refers to stm32l4xx_ll_dac.o(i.LL_DAC_Init) for LL_DAC_Init + dma.o(i.MX_DMA_Init) refers to dma.o(i.LL_AHB1_GRP1_EnableClock) for LL_AHB1_GRP1_EnableClock + dma.o(i.MX_DMA_Init) refers to dma.o(i.__NVIC_GetPriorityGrouping) for __NVIC_GetPriorityGrouping + dma.o(i.MX_DMA_Init) refers to dma.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + dma.o(i.MX_DMA_Init) refers to dma.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + dma.o(i.MX_DMA_Init) refers to dma.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + i2c.o(i.LL_DMA_SetChannelPriorityLevel) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetDataTransferDirection) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetMemoryIncMode) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetMemorySize) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetMode) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetPeriphIncMode) refers to i2c.o(.constdata) for .constdata + i2c.o(i.LL_DMA_SetPeriphSize) refers to i2c.o(.constdata) for .constdata + i2c.o(i.MX_I2C1_Init) refers to memseta.o(.text) for __aeabi_memclr4 + i2c.o(i.MX_I2C1_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetMode) for LL_DMA_SetMode + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize + i2c.o(i.MX_I2C1_Init) refers to i2c.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize + i2c.o(i.MX_I2C1_Init) refers to stm32l4xx_ll_i2c.o(i.LL_I2C_Init) for LL_I2C_Init + spi.o(i.MX_SPI1_Init) refers to memseta.o(.text) for __aeabi_memclr4 + spi.o(i.MX_SPI1_Init) refers to spi.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + spi.o(i.MX_SPI1_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + spi.o(i.MX_SPI1_Init) refers to stm32l4xx_ll_spi.o(i.LL_SPI_Init) for LL_SPI_Init + spi.o(i.MX_SPI2_Init) refers to memseta.o(.text) for __aeabi_memclr4 + spi.o(i.MX_SPI2_Init) refers to spi.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + spi.o(i.MX_SPI2_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + spi.o(i.MX_SPI2_Init) refers to stm32l4xx_ll_spi.o(i.LL_SPI_Init) for LL_SPI_Init + spi.o(i.MX_SPI2_Init) refers to spi.o(.constdata) for .constdata + tim.o(i.LL_TIM_OC_DisableFast) refers to tim.o(.constdata) for .constdata + tim.o(i.LL_TIM_OC_EnablePreload) refers to tim.o(.constdata) for .constdata + tim.o(i.MX_TIM2_Init) refers to memseta.o(.text) for __aeabi_memclr4 + tim.o(i.MX_TIM2_Init) refers to tim.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock + tim.o(i.MX_TIM2_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init + tim.o(i.MX_TIM2_Init) refers to tim.o(i.LL_TIM_OC_EnablePreload) for LL_TIM_OC_EnablePreload + tim.o(i.MX_TIM2_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) for LL_TIM_OC_Init + tim.o(i.MX_TIM2_Init) refers to tim.o(i.LL_TIM_OC_DisableFast) for LL_TIM_OC_DisableFast + tim.o(i.MX_TIM2_Init) refers to tim.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + tim.o(i.MX_TIM2_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + tim.o(i.MX_TIM3_Init) refers to memseta.o(.text) for __aeabi_memclr4 + tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock + tim.o(i.MX_TIM3_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init + tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_TIM_OC_EnablePreload) for LL_TIM_OC_EnablePreload + tim.o(i.MX_TIM3_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) for LL_TIM_OC_Init + tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_TIM_OC_DisableFast) for LL_TIM_OC_DisableFast + tim.o(i.MX_TIM3_Init) refers to tim.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + tim.o(i.MX_TIM3_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + tim.o(i.MX_TIM4_Init) refers to memseta.o(.text) for __aeabi_memclr4 + tim.o(i.MX_TIM4_Init) refers to tim.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock + tim.o(i.MX_TIM4_Init) refers to tim.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + tim.o(i.MX_TIM4_Init) refers to tim.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + tim.o(i.MX_TIM4_Init) refers to tim.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + tim.o(i.MX_TIM4_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init + tim.o(i.MX_TIM6_Init) refers to memseta.o(.text) for __aeabi_memclr4 + tim.o(i.MX_TIM6_Init) refers to tim.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock + tim.o(i.MX_TIM6_Init) refers to tim.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + tim.o(i.MX_TIM6_Init) refers to tim.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + tim.o(i.MX_TIM6_Init) refers to tim.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + tim.o(i.MX_TIM6_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init + tim.o(i.MX_TIM7_Init) refers to memseta.o(.text) for __aeabi_memclr4 + tim.o(i.MX_TIM7_Init) refers to tim.o(i.LL_APB1_GRP1_EnableClock) for LL_APB1_GRP1_EnableClock + tim.o(i.MX_TIM7_Init) refers to tim.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + tim.o(i.MX_TIM7_Init) refers to tim.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + tim.o(i.MX_TIM7_Init) refers to tim.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + tim.o(i.MX_TIM7_Init) refers to stm32l4xx_ll_tim.o(i.LL_TIM_Init) for LL_TIM_Init + usart.o(i.LL_DMA_SetChannelPriorityLevel) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetDataTransferDirection) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetMemoryIncMode) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetMemorySize) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetMode) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetPeriphIncMode) refers to usart.o(.constdata) for .constdata + usart.o(i.LL_DMA_SetPeriphSize) refers to usart.o(.constdata) for .constdata + usart.o(i.MX_UART5_Init) refers to memseta.o(.text) for __aeabi_memclr4 + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + usart.o(i.MX_UART5_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetMode) for LL_DMA_SetMode + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize + usart.o(i.MX_UART5_Init) refers to usart.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize + usart.o(i.MX_UART5_Init) refers to usart.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + usart.o(i.MX_UART5_Init) refers to usart.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + usart.o(i.MX_UART5_Init) refers to usart.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + usart.o(i.MX_UART5_Init) refers to stm32l4xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init + usart.o(i.MX_USART1_UART_Init) refers to memseta.o(.text) for __aeabi_memclr4 + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_AHB2_GRP1_EnableClock) for LL_AHB2_GRP1_EnableClock + usart.o(i.MX_USART1_UART_Init) refers to stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) for LL_GPIO_Init + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetDataTransferDirection) for LL_DMA_SetDataTransferDirection + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetChannelPriorityLevel) for LL_DMA_SetChannelPriorityLevel + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMode) for LL_DMA_SetMode + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphIncMode) for LL_DMA_SetPeriphIncMode + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMemoryIncMode) for LL_DMA_SetMemoryIncMode + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetPeriphSize) for LL_DMA_SetPeriphSize + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.LL_DMA_SetMemorySize) for LL_DMA_SetMemorySize + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.NVIC_EncodePriority) for NVIC_EncodePriority + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.__NVIC_SetPriority) for __NVIC_SetPriority + usart.o(i.MX_USART1_UART_Init) refers to usart.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ + usart.o(i.MX_USART1_UART_Init) refers to stm32l4xx_ll_usart.o(i.LL_USART_Init) for LL_USART_Init + stm32l4xx_it.o(i.ADC1_2_IRQHandler) refers to adcs.o(i.adc_env_callback) for adc_env_callback + stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler) refers to adcs.o(i.adc_dma_callback) for adc_dma_callback + stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler) refers to adcs.o(i.adc_dma_callback) for adc_dma_callback + stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler) refers to board.o(.data) for lcd + stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) refers to i2cs.o(i.i2c_dma_callback) for i2c_dma_callback + stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) refers to eeprom_fm24.o(.data) for eeprom_fm24_i2c + stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) refers to i2cs.o(i.i2c_dma_callback) for i2c_dma_callback + stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) refers to eeprom_fm24.o(.data) for eeprom_fm24_i2c + stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) refers to uarts.o(i.uart_dma_reception_callback) for uart_dma_reception_callback + stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) refers to uarts.o(i.uart_dma_reception_callback) for uart_dma_reception_callback + stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) refers to uarts.o(i.uart_dma_reception_callback) for uart_dma_reception_callback + stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) refers to uarts.o(i.uart_dma_reception_callback) for uart_dma_reception_callback + stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_it.o(i.I2C1_EV_IRQHandler) refers to i2cs.o(i.i2c_ev_callback) for i2c_ev_callback + stm32l4xx_it.o(i.I2C1_EV_IRQHandler) refers to eeprom_fm24.o(.data) for eeprom_fm24_i2c + stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) refers to sys.o(i.LL_IncTick) for LL_IncTick + stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) refers to flow_core.o(.data) for flow_tick + stm32l4xx_it.o(i.TIM7_IRQHandler) refers to mode.o(i.alog_control_module) for alog_control_module + stm32l4xx_it.o(i.UART5_IRQHandler) refers to uarts.o(i.uart_reception_callback) for uart_reception_callback + stm32l4xx_it.o(i.UART5_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_it.o(i.USART1_IRQHandler) refers to uarts.o(i.uart_reception_callback) for uart_reception_callback + stm32l4xx_it.o(i.USART1_IRQHandler) refers to app_hart.o(.data) for uarts + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32l4xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32l4xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32l4xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE) refers to stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32l4xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32l4xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32l4xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI) refers to stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI) refers to stm32l4xx_ll_utils.o(i.UTILS_PLL_IsBusy) for UTILS_PLL_IsBusy + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI) refers to stm32l4xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency) for UTILS_GetPLLOutputFrequency + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI) refers to stm32l4xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS) for LL_RCC_PLL_ConfigDomain_SYS + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI) refers to stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) for UTILS_EnablePLLAndSwitchSystem + stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) refers to system_stm32l4xx.o(.data) for SystemCoreClock + stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to stm32l4xx_ll_utils.o(i.LL_SetFlashLatency) for LL_SetFlashLatency + stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) for LL_SetSystemCoreClock + stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32l4xx.o(.constdata) for AHBPrescTable + stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem) refers to system_stm32l4xx.o(.data) for SystemCoreClock + stm32l4xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32l4xx_ll_gpio.o(i.LL_AHB2_GRP1_ForceReset) for LL_AHB2_GRP1_ForceReset + stm32l4xx_ll_gpio.o(i.LL_GPIO_DeInit) refers to stm32l4xx_ll_gpio.o(i.LL_AHB2_GRP1_ReleaseReset) for LL_AHB2_GRP1_ReleaseReset + stm32l4xx_ll_dma.o(i.LL_DMA_DeInit) refers to stm32l4xx_ll_dma.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + stm32l4xx_ll_dma.o(i.LL_DMA_Init) refers to stm32l4xx_ll_dma.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + stm32l4xx_ll_dma.o(i.LL_DMA_Init) refers to stm32l4xx_ll_dma.o(.constdata) for .constdata + stm32l4xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32l4xx_ll_tim.o(i.LL_APB2_GRP1_ForceReset) for LL_APB2_GRP1_ForceReset + stm32l4xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32l4xx_ll_tim.o(i.LL_APB2_GRP1_ReleaseReset) for LL_APB2_GRP1_ReleaseReset + stm32l4xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32l4xx_ll_tim.o(i.LL_APB1_GRP1_ForceReset) for LL_APB1_GRP1_ForceReset + stm32l4xx_ll_tim.o(i.LL_TIM_DeInit) refers to stm32l4xx_ll_tim.o(i.LL_APB1_GRP1_ReleaseReset) for LL_APB1_GRP1_ReleaseReset + stm32l4xx_ll_tim.o(i.LL_TIM_IC_Init) refers to stm32l4xx_ll_tim.o(i.IC4Config) for IC4Config + stm32l4xx_ll_tim.o(i.LL_TIM_IC_Init) refers to stm32l4xx_ll_tim.o(i.IC1Config) for IC1Config + stm32l4xx_ll_tim.o(i.LL_TIM_IC_Init) refers to stm32l4xx_ll_tim.o(i.IC2Config) for IC2Config + stm32l4xx_ll_tim.o(i.LL_TIM_IC_Init) refers to stm32l4xx_ll_tim.o(i.IC3Config) for IC3Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC3Config) for OC3Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC6Config) for OC6Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC1Config) for OC1Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC2Config) for OC2Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC4Config) for OC4Config + stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) refers to stm32l4xx_ll_tim.o(i.OC5Config) for OC5Config + stm32l4xx_ll_usart.o(i.LL_USART_DeInit) refers to stm32l4xx_ll_usart.o(i.LL_APB1_GRP1_ForceReset) for LL_APB1_GRP1_ForceReset + stm32l4xx_ll_usart.o(i.LL_USART_DeInit) refers to stm32l4xx_ll_usart.o(i.LL_APB1_GRP1_ReleaseReset) for LL_APB1_GRP1_ReleaseReset + stm32l4xx_ll_usart.o(i.LL_USART_Init) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) for LL_RCC_GetUSARTClockFreq + stm32l4xx_ll_usart.o(i.LL_USART_Init) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) for LL_RCC_GetUARTClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_DeInit) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsReady) for LL_RCC_MSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady) for LL_RCC_PLLSAI1_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) for RCC_PLLSAI1_GetFreqDomain_ADC + stm32l4xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) for RCC_PLLSAI2_GetFreqDomain_ADC + stm32l4xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetDFSDMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetDFSDMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetDFSDMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) for RCC_GetPCLK2ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockSource) for LL_RCC_GetI2CClockSource + stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) for LL_RCC_LSE_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) for LL_RCC_LSE_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady) for LL_RCC_PLLSAI1_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) for RCC_PLLSAI1_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_IsReady) for LL_RCC_PLL_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) for RCC_PLL_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsReady) for LL_RCC_MSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady) for LL_RCC_PLLSAI1_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) for RCC_PLLSAI1_GetFreqDomain_SAI + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) for RCC_PLLSAI2_GetFreqDomain_SAI + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_IsReady) for LL_RCC_PLL_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) for RCC_PLL_GetFreqDomain_SAI + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady) for LL_RCC_PLLSAI1_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) for RCC_PLLSAI1_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_IsReady) for LL_RCC_PLL_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) for RCC_PLL_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsReady) for LL_RCC_MSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSWPMIClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSWPMIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSWPMIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSWPMIClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) for RCC_GetPCLK2ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) for LL_RCC_LSE_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) for RCC_GetSystemClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) for LL_RCC_HSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) for LL_RCC_LSE_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) for RCC_GetHCLKClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) for RCC_GetPCLK2ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) for RCC_GetPCLK1ClockFreq + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady) for LL_RCC_PLLSAI1_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) for RCC_PLLSAI1_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_IsReady) for LL_RCC_PLL_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) for RCC_PLL_GetFreqDomain_48M + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsReady) for LL_RCC_MSI_IsReady + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) refers to system_stm32l4xx.o(.constdata) for AHBPrescTable + stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) refers to system_stm32l4xx.o(.constdata) for APBPrescTable + stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) refers to system_stm32l4xx.o(.constdata) for APBPrescTable + stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) for RCC_PLL_GetFreqDomain_SYS + stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) for LL_RCC_PLL_GetMainSource + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) for LL_RCC_MSI_IsEnabledRangeSelect + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) for LL_RCC_MSI_GetRange + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) for LL_RCC_MSI_GetRangeAfterStandby + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) for LL_RCC_PLL_GetDivider + stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) refers to system_stm32l4xx.o(.constdata) for MSIRangeTable + system_stm32l4xx.o(i.SystemCoreClockUpdate) refers to system_stm32l4xx.o(.constdata) for .constdata + system_stm32l4xx.o(i.SystemCoreClockUpdate) refers to system_stm32l4xx.o(.data) for .data + app.o(i.app_init) refers to app.o(i.app_preload) for app_preload + app.o(i.app_init) refers to fal_execution.o(i.fal_execution_init) for fal_execution_init + app.o(i.app_init) refers to params.o(i.params_init) for params_init + app.o(i.app_init) refers to key.o(i.key_init) for key_init + app.o(i.app_init) refers to app_flow.o(i.flow_init) for flow_init + app.o(i.app_init) refers to mode.o(i.mode_init) for mode_init + app.o(i.app_preload) refers to app.o(.data) for .data + app.o(i.app_preload) refers to board.o(.ARM.__AT_0x10007FF0) for app_preload_flag + app.o(i.app_preload) refers to app.o(.bss) for .bss + app.o(i.app_preload) refers to board.o(.ARM.__AT_0x10007FF1) for app_preload_language_flag + app.o(i.app_start) refers to app_flow.o(i.flow_start) for flow_start + app_hart.o(i.app_hart_is_idle) refers to app_hart.o(.data) for .data + app_hart.o(i.h24_bluetooth_output) refers to uarts.o(i.uart_send_data) for uart_send_data + app_hart.o(i.h24_bluetooth_output) refers to app_hart.o(.data) for .data + app_hart.o(i.h24_bluetooth_output_dbg) refers to app_hart.o(i.h24_bluetooth_output) for h24_bluetooth_output + app_hart.o(i.h24_bluetooth_work) refers to memseta.o(.text) for __aeabi_memclr4 + app_hart.o(i.h24_bluetooth_work) refers to printfa.o(i.__0sprintf) for __2sprintf + app_hart.o(i.h24_bluetooth_work) refers to app_hart.o(i._mstrlen) for _mstrlen + app_hart.o(i.h24_bluetooth_work) refers to app_hart.o(i.h24_bluetooth_output) for h24_bluetooth_output + app_hart.o(i.h24_bluetooth_work) refers to at_hc24.o(i.at_set_memcmp_cache) for at_set_memcmp_cache + app_hart.o(i.h24_bluetooth_work) refers to app_hart.o(.constdata) for .constdata + app_hart.o(i.h24_bluetooth_work) refers to at_hc24.o(.data) for hc_24_state + app_hart.o(i.hart_ble_dinit) refers to app_hart.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + app_hart.o(i.hart_ble_init) refers to app_hart.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + app_hart.o(i.hart_ble_init) refers to stm32l4xx_ll_utils.o(i.LL_mDelay) for LL_mDelay + app_hart.o(i.hart_ble_init) refers to uarts.o(i.uart_create) for uart_create + app_hart.o(i.hart_ble_init) refers to uarts.o(i.uart_recv_en) for uart_recv_en + app_hart.o(i.hart_ble_init) refers to app_hart.o(.data) for .data + app_hart.o(i.hart_ble_init) refers to app_hart.o(i.hart_rx_cb) for hart_rx_cb + app_hart.o(i.hart_rx_cb) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + app_hart.o(i.hart_rx_cb) refers to at_hc24.o(i.at_cmd_parse) for at_cmd_parse + app_hart.o(i.hart_rx_cb) refers to app_hart.o(.data) for .data + app_hart.o(i.hart_uart_dinit) refers to app_hart.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + app_hart.o(i.hart_uart_init) refers to app_hart.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + app_hart.o(i.hart_uart_init) refers to stm32l4xx_ll_utils.o(i.LL_mDelay) for LL_mDelay + app_hart.o(i.hart_uart_init) refers to uarts.o(i.uart_create) for uart_create + app_hart.o(i.hart_uart_init) refers to uarts.o(i.uart_recv_en) for uart_recv_en + app_hart.o(i.hart_uart_init) refers to app_hart.o(.data) for .data + app_hart.o(i.hart_uart_init) refers to app_hart.o(i.hart_tx_complete_cb) for hart_tx_complete_cb + app_hart.o(i.hart_uart_init) refers to app_hart.o(i.hart_rx_cb) for hart_rx_cb + app_hart.o(.constdata) refers to app_hart.o(.conststring) for .conststring + app_flow.o(i.btn_inspection) refers to sys.o(i.scheduler_time_start) for scheduler_time_start + app_flow.o(i.btn_inspection) refers to btn.o(i.button_ticks) for button_ticks + app_flow.o(i.btn_inspection) refers to sys.o(i.scheduler_time_stop) for scheduler_time_stop + app_flow.o(i.btn_inspection) refers to flow_core.o(.data) for flow_tick + app_flow.o(i.btn_inspection) refers to app_flow.o(.data) for .data + app_flow.o(i.business_inspection) refers to sys.o(i.scheduler_time_start) for scheduler_time_start + app_flow.o(i.business_inspection) refers to mode.o(i.mode_detection) for mode_detection + app_flow.o(i.business_inspection) refers to sys.o(i.scheduler_time_stop) for scheduler_time_stop + app_flow.o(i.business_inspection) refers to flow_core.o(.data) for flow_tick + app_flow.o(i.business_inspection) refers to app.o(.bss) for uDevice + app_flow.o(i.business_inspection) refers to app_flow.o(.data) for .data + app_flow.o(i.current_inspection) refers to adcs.o(i.adc_result_average) for adc_result_average + app_flow.o(i.current_inspection) refers to board.o(i.loop_current_convert) for loop_current_convert + app_flow.o(i.current_inspection) refers to board.o(i.driver_init) for driver_init + app_flow.o(i.current_inspection) refers to app_flow.o(i.LL_GPIO_IsInputPinSet) for LL_GPIO_IsInputPinSet + app_flow.o(i.current_inspection) refers to app_hart.o(i.hart_uart_init) for hart_uart_init + app_flow.o(i.current_inspection) refers to board.o(i.driver_dinit) for driver_dinit + app_flow.o(i.current_inspection) refers to app_hart.o(i.hart_uart_dinit) for hart_uart_dinit + app_flow.o(i.current_inspection) refers to app_hart.o(i.hart_ble_init) for hart_ble_init + app_flow.o(i.current_inspection) refers to app_hart.o(i.h24_bluetooth_work) for h24_bluetooth_work + app_flow.o(i.current_inspection) refers to delay.o(i.delay_ms) for delay_ms + app_flow.o(i.current_inspection) refers to app_hart.o(i.hart_ble_dinit) for hart_ble_dinit + app_flow.o(i.current_inspection) refers to at_hc24.o(.data) for hc_24_state + app_flow.o(i.flow_init) refers to app_flow.o(.data) for .data + app_flow.o(i.flow_start) refers to app_flow.o(i.systom_inspection) for systom_inspection + app_flow.o(i.flow_start) refers to app_flow.o(i.btn_inspection) for btn_inspection + app_flow.o(i.flow_start) refers to app_flow.o(i.business_inspection) for business_inspection + app_flow.o(i.flow_start) refers to app_flow.o(i.idle_inspection) for idle_inspection + app_flow.o(i.flow_start) refers to app_flow.o(.data) for .data + app_flow.o(i.icon_inspection) refers to app_flow.o(i.LL_GPIO_IsInputPinSet) for LL_GPIO_IsInputPinSet + app_flow.o(i.icon_inspection) refers to app.o(.data) for driver_icon_enable + app_flow.o(i.icon_inspection) refers to app.o(.bss) for uDevice + app_flow.o(i.idle_inspection) refers to sys.o(i.scheduler_time_occupancy_get) for scheduler_time_occupancy_get + app_flow.o(i.idle_inspection) refers to flow_core.o(.data) for flow_tick + app_flow.o(i.idle_inspection) refers to app.o(.data) for cpu_percent + app_flow.o(i.pressure_inspection) refers to board.o(i.get_pressure) for get_pressure + app_flow.o(i.systom_inspection) refers to sys.o(i.scheduler_time_start) for scheduler_time_start + app_flow.o(i.systom_inspection) refers to app_flow.o(i.current_inspection) for current_inspection + app_flow.o(i.systom_inspection) refers to sys.o(i.scheduler_time_stop) for scheduler_time_stop + app_flow.o(i.systom_inspection) refers to app_flow.o(i.temperature_inspection) for temperature_inspection + app_flow.o(i.systom_inspection) refers to app_flow.o(i.icon_inspection) for icon_inspection + app_flow.o(i.systom_inspection) refers to app_flow.o(i.pressure_inspection) for pressure_inspection + app_flow.o(i.systom_inspection) refers to app_flow.o(.data) for .data + app_flow.o(i.systom_inspection) refers to flow_core.o(.data) for flow_tick + app_flow.o(i.temperature_inspection) refers to board.o(i.get_temperature) for get_temperature + app_flow.o(i.temperature_inspection) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + app_flow.o(i.temperature_inspection) refers to cfcmple.o(.text) for __aeabi_cfcmple + app_flow.o(i.temperature_inspection) refers to app.o(.data) for temperature + app_flow.o(i.temperature_inspection) refers to app.o(.bss) for uRtData + key.o(i.get_key_uuid) refers to key.o(.data) for .data + key.o(i.key_2_5_press_down) refers to key.o(i.allow_condition) for allow_condition + key.o(i.key_2_5_press_down) refers to key.o(.data) for .data + key.o(i.key_2_press_down_handler) refers to key.o(i.key_2_5_press_down) for key_2_5_press_down + key.o(i.key_botton_start) refers to btn.o(i.button_start) for button_start + key.o(i.key_botton_start) refers to key.o(.bss) for .bss + key.o(i.key_dinit) refers to btn.o(i.button_stop) for button_stop + key.o(i.key_dinit) refers to key.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + key.o(i.key_dinit) refers to key.o(.data) for .data + key.o(i.key_dinit) refers to key.o(.bss) for .bss + key.o(i.key_init) refers to key.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + key.o(i.key_init) refers to btn.o(i.button_init) for button_init + key.o(i.key_init) refers to btn.o(i.button_attach) for button_attach + key.o(i.key_init) refers to sys.o(i.sys_millis) for sys_millis + key.o(i.key_init) refers to rand.o(.text) for srand + key.o(i.key_init) refers to key.o(i.key_botton_start) for key_botton_start + key.o(i.key_init) refers to key.o(.data) for .data + key.o(i.key_init) refers to key.o(i.read_button_gpio) for read_button_gpio + key.o(i.key_init) refers to key.o(.bss) for .bss + key.o(i.key_init) refers to key.o(i.key_1_press_down_handler) for key_1_press_down_handler + key.o(i.key_init) refers to key.o(i.key_1_double_click_handler) for key_1_double_click_handler + key.o(i.key_init) refers to key.o(i.key_1_long_press_hold_handler) for key_1_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_1_up_handler) for key_1_up_handler + key.o(i.key_init) refers to key.o(i.key_2_press_down_handler) for key_2_press_down_handler + key.o(i.key_init) refers to key.o(i.key_2_double_click_handler) for key_2_double_click_handler + key.o(i.key_init) refers to key.o(i.key_2_long_press_hold_handler) for key_2_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_2_up_handler) for key_2_up_handler + key.o(i.key_init) refers to key.o(i.key_3_press_down_handler) for key_3_press_down_handler + key.o(i.key_init) refers to key.o(i.key_3_double_click_handler) for key_3_double_click_handler + key.o(i.key_init) refers to key.o(i.key_3_long_press_hold_handler) for key_3_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_3_up_handler) for key_3_up_handler + key.o(i.key_init) refers to key.o(i.key_4_press_down_handler) for key_4_press_down_handler + key.o(i.key_init) refers to key.o(i.key_4_double_click_handler) for key_4_double_click_handler + key.o(i.key_init) refers to key.o(i.key_4_long_press_hold_handler) for key_4_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_4_up_handler) for key_4_up_handler + key.o(i.key_init) refers to key.o(i.key_5_press_down_handler) for key_5_press_down_handler + key.o(i.key_init) refers to key.o(i.key_5_double_click_handler) for key_5_double_click_handler + key.o(i.key_init) refers to key.o(i.key_5_long_press_hold_handler) for key_5_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_5_up_handler) for key_5_up_handler + key.o(i.key_init) refers to key.o(i.key_6_press_down_handler) for key_6_press_down_handler + key.o(i.key_init) refers to key.o(i.key_6_double_click_handler) for key_6_double_click_handler + key.o(i.key_init) refers to key.o(i.key_6_long_press_hold_handler) for key_6_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_6_up_handler) for key_6_up_handler + key.o(i.key_init) refers to key.o(i.key_auto_press_down_handler) for key_auto_press_down_handler + key.o(i.key_init) refers to key.o(i.key_auto_long_press_hold_handler) for key_auto_long_press_hold_handler + key.o(i.key_init) refers to key.o(i.key_auto_up_handler) for key_auto_up_handler + key.o(i.key_long_press_flag) refers to key.o(.data) for .data + key.o(i.read_button_gpio) refers to key.o(i.allow_condition) for allow_condition + key.o(i.read_button_gpio) refers to key.o(i.LL_GPIO_IsInputPinSet) for LL_GPIO_IsInputPinSet + key.o(i.read_button_gpio) refers to key.o(.data) for .data + convert.o(i.actual_travel_deal) refers to mode.o(i.is_manual_test) for is_manual_test + convert.o(i.actual_travel_deal) refers to convert.o(i.swo_output_deal) for swo_output_deal + convert.o(i.actual_travel_deal) refers to convert.o(i.pwm_output_deal) for pwm_output_deal + convert.o(i.adjust_target_direction) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.adjust_target_direction) refers to app.o(.data) for pid_actual + convert.o(i.adjust_target_direction) refers to app.o(.data) for pid_target + convert.o(i.adjust_target_direction) refers to app.o(.data) for target_actual_diff + convert.o(i.adjust_target_direction) refers to app.o(.data) for target_direction + convert.o(i.dead_zone_deal) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.dead_zone_deal) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + convert.o(i.dead_zone_deal) refers to convert.o(.data) for .data + convert.o(i.dead_zone_deal) refers to app.o(.bss) for uDevice + convert.o(i.get_pid_travel) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.get_pid_travel) refers to app.o(.bss) for uDevice + convert.o(i.get_show_travel) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.get_show_travel) refers to app.o(.bss) for uDevice + convert.o(i.i2psb) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.i2psb) refers to fscalb.o(.text) for __ARM_scalbnf + convert.o(i.i2psb) refers to fdiv.o(.text) for __aeabi_fdiv + convert.o(i.i2psb) refers to ffixui.o(.text) for __aeabi_f2uiz + convert.o(i.i2psb) refers to ffltui.o(.text) for __aeabi_ui2f + convert.o(i.i2psb) refers to fmul.o(.text) for __aeabi_fmul + convert.o(i.i2psb) refers to fflti.o(.text) for __aeabi_i2f + convert.o(i.i2psb) refers to app.o(.bss) for uDevice + convert.o(i.i2psb) refers to params.o(.constdata) for valve_characteristics_table + convert.o(i.part_travel_deal) refers to fadd.o(.text) for __aeabi_fsub + convert.o(i.part_travel_deal) refers to fmul.o(.text) for __aeabi_fmul + convert.o(i.part_travel_deal) refers to app.o(.bss) for uDevice + convert.o(i.pressure_kpa2unit) refers to fmul.o(.text) for __aeabi_fmul + convert.o(i.pwm_output_deal) refers to board.o(i.pwm_output_position) for pwm_output_position + convert.o(i.pwm_output_deal) refers to app.o(.bss) for uDevice + convert.o(i.small_signal_deal) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + convert.o(i.small_signal_deal) refers to cfcmple.o(.text) for __aeabi_cfcmple + convert.o(i.small_signal_deal) refers to app.o(.bss) for uDevice + convert.o(i.swo_output_deal) refers to cfcmple.o(.text) for __aeabi_cfcmple + convert.o(i.swo_output_deal) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + convert.o(i.swo_output_deal) refers to app.o(.bss) for uDevice + convert.o(i.target_travel_deal) refers to convert.o(i.small_signal_deal) for small_signal_deal + convert.o(i.target_travel_deal) refers to convert.o(i.dead_zone_deal) for dead_zone_deal + convert.o(i.target_travel_deal) refers to convert.o(i.part_travel_deal) for part_travel_deal + convert.o(i.temperature_c2f) refers to fmul.o(.text) for __aeabi_fmul + convert.o(i.temperature_c2f) refers to fadd.o(.text) for __aeabi_fadd + params.o(i.params_init) refers to params.o(i._memset) for _memset + params.o(i.params_init) refers to fal_execution.o(i.fal_execution_kv_read) for fal_execution_kv_read + params.o(i.params_init) refers to params.o(i.params_restart) for params_restart + params.o(i.params_init) refers to board.o(i.set_app_preload_language_flag) for set_app_preload_language_flag + params.o(i.params_init) refers to app.o(.data) for driver_icon_enable + params.o(i.params_init) refers to app.o(.bss) for uDevice + params.o(i.params_init) refers to app.o(.bss) for calib_param + params.o(i.params_init) refers to mode.o(.bss) for mode_params + params.o(i.params_init) refers to app.o(.bss) for uRtData + params.o(i.params_restart) refers to params.o(i._memset) for _memset + params.o(i.params_restart) refers to lib.o(i.dec_format_hex) for dec_format_hex + params.o(i.params_restart) refers to lib.o(i.hex_format_dec) for hex_format_dec + params.o(i.params_restart) refers to lib.o(i.get_weekday) for get_weekday + params.o(i.params_restart) refers to rtc_rx8010.o(i.rtc_weekday_convert) for rtc_weekday_convert + params.o(i.params_restart) refers to board.o(i.set_pwm_calib_current) for set_pwm_calib_current + params.o(i.params_restart) refers to rtc_rx8010.o(i.rtc_set_clock_time) for rtc_set_clock_time + params.o(i.params_restart) refers to board.o(i.get_timestamp) for get_timestamp + params.o(i.params_restart) refers to fal_execution.o(i.fal_execution_kv_write) for fal_execution_kv_write + params.o(i.params_restart) refers to app.o(.bss) for uDevice + params.o(i.params_restart) refers to app.o(.bss) for calib_param + params.o(i.params_restart) refers to app.o(.bss) for uRtData + mode.o(i.alog_control_module) refers to mode.o(i.travel_statistics) for travel_statistics + mode.o(i.alog_control_module) refers to leds.o(i.leds_toggle) for leds_toggle + mode.o(i.alog_control_module) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode.o(i.alog_control_module) refers to mode_dac.o(i.mode_dac_process) for mode_dac_process + mode.o(i.alog_control_module) refers to mode_pwm.o(i.mode_pwm_process) for mode_pwm_process + mode.o(i.alog_control_module) refers to mode_pwmp.o(i.mode_pwmp_process) for mode_pwmp_process + mode.o(i.alog_control_module) refers to mode_pwmp_hd.o(i.mode_pwmp_hd_process) for mode_pwmp_hd_process + mode.o(i.alog_control_module) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode.o(i.alog_control_module) refers to mode.o(.data) for .data + mode.o(i.alog_control_module) refers to app.o(.data) for loop_current + mode.o(i.alog_control_module) refers to app.o(.bss) for uDevice + mode.o(i.is_manual_test) refers to mode.o(.data) for .data + mode.o(i.manual_test_mode) refers to mode.o(i.set_manual_test) for set_manual_test + mode.o(i.manual_test_mode) refers to mode.o(.data) for .data + mode.o(i.mode_adjust_data_get) refers to app.o(.bss) for uDevice + mode.o(i.mode_adjust_data_get) refers to mode.o(.bss) for .bss + mode.o(i.mode_adjust_start) refers to mode_pwmp_hd.o(i.pwmp_hd_process_state_set) for pwmp_hd_process_state_set + mode.o(i.mode_adjust_start) refers to app.o(.bss) for uDevice + mode.o(i.mode_adjust_step_count) refers to app.o(.bss) for uDevice + mode.o(i.mode_adjust_step_current) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode.o(i.mode_adjust_step_current) refers to app.o(.bss) for uDevice + mode.o(i.mode_adjust_step_current) refers to mode_dac.o(.data) for mode_dac + mode.o(i.mode_adjust_step_current) refers to mode_pwm.o(.data) for mode_pwm + mode.o(i.mode_adjust_stop) refers to mode_pwmp_hd.o(i.pwmp_hd_process_state_set) for pwmp_hd_process_state_set + mode.o(i.mode_adjust_stop) refers to app.o(.bss) for uDevice + mode.o(i.mode_control_idel) refers to app.o(.bss) for uDevice + mode.o(i.mode_detection) refers to mode.o(i.online_offline_mode_adjust) for online_offline_mode_adjust + mode.o(i.mode_detection) refers to mode.o(i.wait_mode_adjust) for wait_mode_adjust + mode.o(i.mode_detection) refers to mode.o(i.manual_test_mode) for manual_test_mode + mode.o(i.mode_detection) refers to key.o(i.key_init) for key_init + mode.o(i.mode_detection) refers to board.o(i.lcd_init) for lcd_init + mode.o(i.mode_detection) refers to pdctrl.o(i.pdctrl_run) for pdctrl_run + mode.o(i.mode_detection) refers to board.o(i.lcd_dinit) for lcd_dinit + mode.o(i.mode_detection) refers to key.o(i.key_dinit) for key_dinit + mode.o(i.mode_detection) refers to pdctrl.o(i.pdctrl_stop) for pdctrl_stop + mode.o(i.mode_detection) refers to mode.o(i.set_manual_test) for set_manual_test + mode.o(i.mode_detection) refers to mode.o(.data) for .data + mode.o(i.mode_detection) refers to app.o(.bss) for uDevice + mode.o(i.mode_detection) refers to app.o(.bss) for uRtData + mode.o(i.mode_init) refers to mode.o(i.mode_autoload_change) for mode_autoload_change + mode.o(i.mode_init) refers to mode_dac.o(i.mode_dac_dinit) for mode_dac_dinit + mode.o(i.mode_init) refers to mode_pwm.o(i.mode_pwm_dinit) for mode_pwm_dinit + mode.o(i.mode_init) refers to mode_pwmp.o(i.mode_pwmp_dinit) for mode_pwmp_dinit + mode.o(i.mode_init) refers to mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) for mode_pwmp_hd_dinit + mode.o(i.mode_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode.o(i.mode_init) refers to filter.o(i.lpf_init) for lpf_init + mode.o(i.mode_init) refers to pdctrl.o(i.pdctrl_init) for pdctrl_init + mode.o(i.mode_init) refers to mode_pwmp_hd.o(i.mode_pwmp_hd_init) for mode_pwmp_hd_init + mode.o(i.mode_init) refers to app.o(.data) for mode_default_autoload + mode.o(i.mode_init) refers to app.o(.bss) for uDevice + mode.o(i.mode_init) refers to mode.o(.bss) for .bss + mode.o(i.mode_init) refers to mode.o(i.mode_params_save_cb) for mode_params_save_cb + mode.o(i.mode_params_save_cb) refers to fal_execution.o(i.fal_execution_kv_write) for fal_execution_kv_write + mode.o(i.mode_params_save_cb) refers to mode.o(.bss) for .bss + mode.o(i.online_offline_mode_adjust) refers to mode.o(.data) for .data + mode.o(i.set_manual_test) refers to mode.o(.data) for .data + mode.o(i.travel_statistics) refers to board.o(i.get_current) for get_current + mode.o(i.travel_statistics) refers to board.o(i.get_current_deal) for get_current_deal + mode.o(i.travel_statistics) refers to cfcmple.o(.text) for __aeabi_cfcmpeq + mode.o(i.travel_statistics) refers to convert.o(i.i2psb) for i2psb + mode.o(i.travel_statistics) refers to convert.o(i.target_travel_deal) for target_travel_deal + mode.o(i.travel_statistics) refers to convert.o(i.get_pid_travel) for get_pid_travel + mode.o(i.travel_statistics) refers to convert.o(i.get_show_travel) for get_show_travel + mode.o(i.travel_statistics) refers to convert.o(i.actual_travel_deal) for actual_travel_deal + mode.o(i.travel_statistics) refers to filter.o(i.lpf_update) for lpf_update + mode.o(i.travel_statistics) refers to mode.o(.data) for .data + mode.o(i.travel_statistics) refers to app.o(.data) for loop_current + mode.o(i.travel_statistics) refers to app.o(.bss) for uDevice + mode.o(i.travel_statistics) refers to app.o(.data) for target_travel + mode.o(i.travel_statistics) refers to app.o(.bss) for uRtData + mode.o(i.travel_statistics) refers to app.o(.data) for pid_target + mode.o(i.travel_statistics) refers to app.o(.data) for show_target + mode.o(i.travel_statistics) refers to app.o(.data) for actual_travel + mode.o(i.travel_statistics) refers to app.o(.data) for show_actual + mode.o(i.travel_statistics) refers to mode.o(.bss) for .bss + mode.o(i.travel_statistics) refers to app.o(.data) for show_loop + mode.o(i.wait_mode_adjust) refers to mode.o(.data) for .data + pdctrl.o(i.calculate_pwm_duty) refers to pdctrl.o(i.calculate_pwm_freq) for calculate_pwm_freq + pdctrl.o(i.calculate_pwm_duty) refers to ffltui.o(.text) for __aeabi_ui2f + pdctrl.o(i.calculate_pwm_duty) refers to fadd.o(.text) for __aeabi_fadd + pdctrl.o(i.calculate_pwm_duty) refers to fdiv.o(.text) for __aeabi_fdiv + pdctrl.o(i.calculate_pwm_duty) refers to fmul.o(.text) for __aeabi_fmul + pdctrl.o(i.calculate_pwm_duty) refers to ffixui.o(.text) for __aeabi_f2uiz + pdctrl.o(i.calculate_pwm_duty) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.calculate_pwm_freq) refers to ffltui.o(.text) for __aeabi_ui2f + pdctrl.o(i.calculate_pwm_freq) refers to fdiv.o(.text) for __aeabi_fdiv + pdctrl.o(i.calculate_pwm_freq) refers to system_stm32l4xx.o(.data) for SystemCoreClock + pdctrl.o(i.calculate_pwm_freq) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.dac_dinit) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.dac_init) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.dac_init) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.get_pdctrl_mode) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pdctrl_get) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.dac_dinit) for dac_dinit + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.pwm_dinit) for pwm_dinit + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.pwmp_dinit) for pwmp_dinit + pdctrl.o(i.pdctrl_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.dac_init) for dac_init + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.pwm_init) for pwm_init + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(i.pwmp_init) for pwmp_init + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pdctrl_init) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pdctrl_out) refers to pdctrl.o(i.pdctrl_pwm_set_arr) for pdctrl_pwm_set_arr + pdctrl.o(i.pdctrl_out) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pdctrl_out) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pdctrl_out) refers to app.o(.data) for ip_out + pdctrl.o(i.pdctrl_pwm_duty_convert_ccr) refers to ffltui.o(.text) for __aeabi_ui2f + pdctrl.o(i.pdctrl_pwm_duty_convert_ccr) refers to fmul.o(.text) for __aeabi_fmul + pdctrl.o(i.pdctrl_pwm_duty_convert_ccr) refers to fdiv.o(.text) for __aeabi_fdiv + pdctrl.o(i.pdctrl_pwm_duty_convert_ccr) refers to ffixui.o(.text) for __aeabi_f2uiz + pdctrl.o(i.pdctrl_pwm_duty_convert_ccr) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pdctrl_pwm_set_arr) refers to pdctrl.o(i.calculate_pwm_duty) for calculate_pwm_duty + pdctrl.o(i.pdctrl_pwm_set_arr) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pdctrl_pwm_set_arr) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pdctrl_run) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + pdctrl.o(i.pdctrl_run) refers to pdctrl.o(i.dac_init) for dac_init + pdctrl.o(i.pdctrl_run) refers to pdctrl.o(i.pwm_init) for pwm_init + pdctrl.o(i.pdctrl_run) refers to pdctrl.o(i.pwmp_init) for pwmp_init + pdctrl.o(i.pdctrl_run) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pdctrl_stop) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + pdctrl.o(i.pdctrl_stop) refers to pdctrl.o(i.dac_dinit) for dac_dinit + pdctrl.o(i.pdctrl_stop) refers to pdctrl.o(i.pwm_dinit) for pwm_dinit + pdctrl.o(i.pdctrl_stop) refers to pdctrl.o(i.pwmp_dinit) for pwmp_dinit + pdctrl.o(i.pdctrl_stop) refers to pdctrl.o(.data) for .data + pdctrl.o(i.pwm_dinit) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.pwm_init) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.pwm_init) refers to pdctrl.o(.bss) for .bss + pdctrl.o(i.pwmp_dinit) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.pwmp_init) refers to pdctrl.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + pdctrl.o(i.pwmp_init) refers to pdctrl.o(.bss) for .bss + at_hc24.o(i.at_cmd_name) refers to at_hc24.o(i.mstrncmp) for mstrncmp + at_hc24.o(i.at_cmd_name) refers to at_hc24.o(.bss) for .bss + at_hc24.o(i.at_cmd_name) refers to at_hc24.o(.data) for .data + at_hc24.o(i.at_cmd_parse) refers to at_hc24.o(i.at_cmd_test) for at_cmd_test + at_hc24.o(i.at_cmd_parse) refers to at_hc24.o(i.at_cmd_search) for at_cmd_search + at_hc24.o(i.at_cmd_parse) refers to at_hc24.o(i._mstrlen) for _mstrlen + at_hc24.o(i.at_cmd_parse) refers to at_hc24.o(.constdata) for .constdata + at_hc24.o(i.at_cmd_search) refers to at_hc24.o(i._mstrlen) for _mstrlen + at_hc24.o(i.at_cmd_search) refers to at_hc24.o(i.mstrncmp) for mstrncmp + at_hc24.o(i.at_cmd_search) refers to at_hc24.o(.constdata) for .constdata + at_hc24.o(i.at_cmd_test) refers to at_hc24.o(.data) for .data + at_hc24.o(i.at_set_memcmp_cache) refers to at_hc24.o(.bss) for .bss + at_hc24.o(.constdata) refers to at_hc24.o(.conststring) for .conststring + at_hc24.o(.constdata) refers to at_hc24.o(i.at_cmd_test) for at_cmd_test + at_hc24.o(.constdata) refers to at_hc24.o(i.at_cmd_name) for at_cmd_name + mode_dac.o(i.dac_process_state_set) refers to mode_dac.o(.data) for .data + mode_dac.o(i.mode_dac_dinit) refers to malloc.o(i.myfree) for myfree + mode_dac.o(i.mode_dac_dinit) refers to mode_dac.o(.data) for .data + mode_dac.o(i.mode_dac_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_dac.o(i.mode_dac_init) refers to malloc.o(i.mymalloc) for mymalloc + mode_dac.o(i.mode_dac_init) refers to mode_dac.o(i.dac_process_state_set) for dac_process_state_set + mode_dac.o(i.mode_dac_init) refers to mode_dac.o(.data) for .data + mode_dac.o(i.mode_dac_process) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_dac.o(i.mode_dac_process) refers to mode_dac.o(.data) for .data + mode_pwm.o(i.mode_pwm_dinit) refers to mode_pwm.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + mode_pwm.o(i.mode_pwm_dinit) refers to malloc.o(i.myfree) for myfree + mode_pwm.o(i.mode_pwm_dinit) refers to mode_pwm.o(.data) for .data + mode_pwm.o(i.mode_pwm_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwm.o(i.mode_pwm_init) refers to mode_pwm.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + mode_pwm.o(i.mode_pwm_init) refers to malloc.o(i.mymalloc) for mymalloc + mode_pwm.o(i.mode_pwm_init) refers to mode_pwm.o(.data) for .data + mode_pwm.o(i.mode_pwm_process) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwm.o(i.mode_pwm_process) refers to board.o(i.get_actual_travel_adc) for get_actual_travel_adc + mode_pwm.o(i.mode_pwm_process) refers to mode_pwm.o(.data) for .data + mode_pwm.o(i.mode_pwm_process) refers to app.o(.data) for loop_current + fal_execution.o(i.fal_execution_clear) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + fal_execution.o(i.fal_execution_clear) refers to fdb_kvdb.o(i.fdb_kv_set_default) for fdb_kv_set_default + fal_execution.o(i.fal_execution_clear) refers to fdb_tsdb.o(i.fdb_tsl_clean) for fdb_tsl_clean + fal_execution.o(i.fal_execution_clear) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_data_storage_check) refers to lib.o(i.crc16_compute) for crc16_compute + fal_execution.o(i.fal_execution_data_storage_check) refers to cmac.o(i.AES_CMAC_Init) for AES_CMAC_Init + fal_execution.o(i.fal_execution_data_storage_check) refers to cmac.o(i.AES_CMAC_SetKey) for AES_CMAC_SetKey + fal_execution.o(i.fal_execution_data_storage_check) refers to cmac.o(i.AES_CMAC_Update) for AES_CMAC_Update + fal_execution.o(i.fal_execution_data_storage_check) refers to cmac.o(i.AES_CMAC_Final) for AES_CMAC_Final + fal_execution.o(i.fal_execution_data_storage_check) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_data_storage_check) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_get) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_get) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_init) refers to fdb_kvdb.o(i.fdb_kvdb_control) for fdb_kvdb_control + fal_execution.o(i.fal_execution_init) refers to fdb_kvdb.o(i.fdb_kvdb_init) for fdb_kvdb_init + fal_execution.o(i.fal_execution_init) refers to fdb_tsdb.o(i.fdb_tsdb_control) for fdb_tsdb_control + fal_execution.o(i.fal_execution_init) refers to fdb_tsdb.o(i.fdb_tsdb_init) for fdb_tsdb_init + fal_execution.o(i.fal_execution_init) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_init) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_init) refers to fal_execution.o(i.get_time) for get_time + fal_execution.o(i.fal_execution_inspection) refers to fal_execution.o(i.fal_execution_data_storage_check) for fal_execution_data_storage_check + fal_execution.o(i.fal_execution_inspection) refers to board.o(i.get_timestamp) for get_timestamp + fal_execution.o(i.fal_execution_inspection) refers to fal_execution.o(i.fal_execution_kv_write) for fal_execution_kv_write + fal_execution.o(i.fal_execution_inspection) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_inspection) refers to app.o(.bss) for calib_param + fal_execution.o(i.fal_execution_inspection) refers to app.o(.bss) for uDevice + fal_execution.o(i.fal_execution_inspection) refers to app.o(.bss) for uRtData + fal_execution.o(i.fal_execution_kv_read) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + fal_execution.o(i.fal_execution_kv_read) refers to fal_execution.o(i.fal_execution_get) for fal_execution_get + fal_execution.o(i.fal_execution_kv_read) refers to fdb_utils.o(i.fdb_blob_make) for fdb_blob_make + fal_execution.o(i.fal_execution_kv_read) refers to fdb_kvdb.o(i.fdb_kv_get_blob) for fdb_kv_get_blob + fal_execution.o(i.fal_execution_kv_read) refers to fal_execution.o(i.fal_execution_set_crc) for fal_execution_set_crc + fal_execution.o(i.fal_execution_kv_read) refers to fal_execution.o(i.fal_execution_set_cmac) for fal_execution_set_cmac + fal_execution.o(i.fal_execution_kv_read) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_kv_write) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + fal_execution.o(i.fal_execution_kv_write) refers to fal_execution.o(i.fal_execution_get) for fal_execution_get + fal_execution.o(i.fal_execution_kv_write) refers to fdb_utils.o(i.fdb_blob_make) for fdb_blob_make + fal_execution.o(i.fal_execution_kv_write) refers to fdb_kvdb.o(i.fdb_kv_set_blob) for fdb_kv_set_blob + fal_execution.o(i.fal_execution_kv_write) refers to fal_execution.o(i.fal_execution_set_crc) for fal_execution_set_crc + fal_execution.o(i.fal_execution_kv_write) refers to fal_execution.o(i.fal_execution_set_cmac) for fal_execution_set_cmac + fal_execution.o(i.fal_execution_kv_write) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_set_cmac) refers to cmac.o(i.AES_CMAC_Init) for AES_CMAC_Init + fal_execution.o(i.fal_execution_set_cmac) refers to cmac.o(i.AES_CMAC_SetKey) for AES_CMAC_SetKey + fal_execution.o(i.fal_execution_set_cmac) refers to cmac.o(i.AES_CMAC_Update) for AES_CMAC_Update + fal_execution.o(i.fal_execution_set_cmac) refers to cmac.o(i.AES_CMAC_Final) for AES_CMAC_Final + fal_execution.o(i.fal_execution_set_cmac) refers to fal_execution.o(.data) for .data + fal_execution.o(i.fal_execution_set_cmac) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_set_crc) refers to lib.o(i.crc16_compute) for crc16_compute + fal_execution.o(i.fal_execution_set_crc) refers to fal_execution.o(.bss) for .bss + fal_execution.o(i.fal_execution_status_get) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + fal_execution.o(i.fal_execution_status_get) refers to fal_execution.o(.data) for .data + fal_execution.o(i.get_time) refers to board.o(i.get_timestamp) for get_timestamp + fal_execution.o(i.get_time) refers to lib.o(i.hex_format_dec) for hex_format_dec + fal_execution.o(i.get_time) refers to lib.o(i.time2Stamp) for time2Stamp + fal_execution.o(.data) refers to fal_execution.o(.conststring) for .conststring + fal_execution.o(.data) refers to app.o(.bss) for calib_param + fal_execution.o(.data) refers to app.o(.bss) for uDevice + fal_execution.o(.data) refers to mode.o(.bss) for mode_params + fal_execution.o(.data) refers to app.o(.bss) for uRtData + mode_pwmp_hd.o(i.execute_dac) refers to mode_pwmp_hd.o(i.execute_dac_plan1) for execute_dac_plan1 + mode_pwmp_hd.o(i.execute_dac) refers to mode_pwmp_hd.o(i.execute_dac_plan2) for execute_dac_plan2 + mode_pwmp_hd.o(i.execute_dac) refers to mode_pwmp_hd.o(i.execute_dac_plan3) for execute_dac_plan3 + mode_pwmp_hd.o(i.execute_dac) refers to mode_pwmp_hd.o(i.execute_dac_plan4) for execute_dac_plan4 + mode_pwmp_hd.o(i.execute_dac) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.execute_dac_plan1) refers to fflti.o(.text) for __aeabi_i2f + mode_pwmp_hd.o(i.execute_dac_plan1) refers to fdiv.o(.text) for __aeabi_fdiv + mode_pwmp_hd.o(i.execute_dac_plan1) refers to fmul.o(.text) for __aeabi_fmul + mode_pwmp_hd.o(i.execute_dac_plan1) refers to ffltui.o(.text) for __aeabi_ui2f + mode_pwmp_hd.o(i.execute_dac_plan1) refers to fadd.o(.text) for __aeabi_fsub + mode_pwmp_hd.o(i.execute_dac_plan1) refers to ffixui.o(.text) for __aeabi_f2uiz + mode_pwmp_hd.o(i.execute_dac_plan1) refers to cfcmple.o(.text) for __aeabi_cfcmple + mode_pwmp_hd.o(i.execute_dac_plan1) refers to f2d.o(.text) for __aeabi_f2d + mode_pwmp_hd.o(i.execute_dac_plan1) refers to cdcmple.o(.text) for __aeabi_cdcmple + mode_pwmp_hd.o(i.execute_dac_plan1) refers to dmul.o(.text) for __aeabi_dmul + mode_pwmp_hd.o(i.execute_dac_plan1) refers to dfltui.o(.text) for __aeabi_ui2d + mode_pwmp_hd.o(i.execute_dac_plan1) refers to dadd.o(.text) for __aeabi_dadd + mode_pwmp_hd.o(i.execute_dac_plan1) refers to dfixui.o(.text) for __aeabi_d2uiz + mode_pwmp_hd.o(i.execute_dac_plan1) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.execute_dac_plan1) refers to app.o(.bss) for _pid + mode_pwmp_hd.o(i.execute_dac_plan1) refers to app.o(.data) for target_travel + mode_pwmp_hd.o(i.execute_dac_plan1) refers to app.o(.data) for actual_travel + mode_pwmp_hd.o(i.execute_pid_init) refers to pid.o(i.pid_constructor) for pid_constructor + mode_pwmp_hd.o(i.execute_pid_init) refers to mode_pwmp_hd.o(i.get_pwmp_control_kd) for get_pwmp_control_kd + mode_pwmp_hd.o(i.execute_pid_init) refers to mode_pwmp_hd.o(i.get_pwmp_control_ki) for get_pwmp_control_ki + mode_pwmp_hd.o(i.execute_pid_init) refers to mode_pwmp_hd.o(i.get_pwmp_control_kp) for get_pwmp_control_kp + mode_pwmp_hd.o(i.execute_pid_init) refers to app.o(.bss) for _pid + mode_pwmp_hd.o(i.get_pwmp_control_kd) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.get_pwmp_control_ki) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.get_pwmp_control_kp) refers to fmul.o(.text) for __aeabi_fmul + mode_pwmp_hd.o(i.get_pwmp_control_kp) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.get_time_tangent) refers to fadd.o(.text) for __aeabi_fsub + mode_pwmp_hd.o(i.get_time_tangent) refers to fdiv.o(.text) for __aeabi_fdiv + mode_pwmp_hd.o(i.get_time_tangent) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) refers to mode_pwmp_hd.o(i.pwmp_hd_process_state_set) for pwmp_hd_process_state_set + mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) refers to malloc.o(i.myfree) for myfree + mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to malloc.o(i.mymalloc) for mymalloc + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to mode_pwmp_hd.o(i._memset) for _memset + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to filter.o(i.lpf_window_init) for lpf_window_init + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to mode_pwmp_hd.o(i.pwmp_hd_process_state_set) for pwmp_hd_process_state_set + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to mode_pwmp_hd.o(i.execute_pid_init) for execute_pid_init + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to mode_pwmp_hd.o(i.pwmp_public_params_update) for pwmp_public_params_update + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to board.o(i.calib_parapos_perent) for calib_parapos_perent + mode_pwmp_hd.o(i.mode_pwmp_hd_init) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to mode_pwmp_hd.o(i._memset) for _memset + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to f2d.o(.text) for __aeabi_f2d + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to printfa.o(i.__0sprintf) for __2sprintf + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to app_hart.o(i.h24_bluetooth_output_dbg) for h24_bluetooth_output_dbg + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to board.o(i.get_actual_travel_adc) for get_actual_travel_adc + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to ffltui.o(.text) for __aeabi_ui2f + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to fdiv.o(.text) for __aeabi_fdiv + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to fmul.o(.text) for __aeabi_fmul + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to board.o(i.ip2current) for ip2current + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to mode_pwmp_hd.o(i.pwmp_control_update) for pwmp_control_update + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to mode_pwmp_hd.o(i.execute_dac) for execute_dac + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to mode_pwmp_hd.o(i.pwmp_adjust) for pwmp_adjust + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to at_hc24.o(.data) for hc_24_state + mode_pwmp_hd.o(i.mode_pwmp_hd_process) refers to app.o(.data) for loop_current + mode_pwmp_hd.o(i.pid_autotune_way_set) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) for pwmp_adjust_hd_rough_position0 + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) for pwmp_adjust_hd_bleeding_position0 + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) for pwmp_adjust_hd_accurate_position0 + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) for pwmp_adjust_hd_rough_position100 + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) for pwmp_adjust_hd_accurate_position100 + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) for pwmp_adjust_hd_calculate + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) for pwmp_adjust_hd_PID_tuning + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) for pwmp_adjust_hd_pid_calculate + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_save) for pwmp_adjust_hd_save + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) for pwmp_adjust_hd_bleeding + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) for pwmp_adjust_hd_idle + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) for pwmp_adjust_hd_stop + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_fail) for pwmp_adjust_hd_fail + mode_pwmp_hd.o(i.pwmp_adjust) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to sys.o(i.sys_millis_reset) for sys_millis_reset + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to sys.o(i.sys_millis) for sys_millis + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to mode_pwmp_hd.o(i.pid_autotune_way_set) for pid_autotune_way_set + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to mode_pwmp_hd.o(i.set_step_signal) for set_step_signal + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to fadd.o(.text) for __aeabi_fsub + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to fdiv.o(.text) for __aeabi_fdiv + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to ffltui.o(.text) for __aeabi_ui2f + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to fmul.o(.text) for __aeabi_fmul + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to mode_pwmp_hd.o(i.get_time_tangent) for get_time_tangent + mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) refers to sys.o(i.sys_millis_reset) for sys_millis_reset + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) refers to sys.o(i.sys_millis) for sys_millis + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) refers to board.o(i.get_actual_travel_adc) for get_actual_travel_adc + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) refers to board.o(i.calib_parapos_perent) for calib_parapos_perent + mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) refers to app.o(.bss) for uDevice + mode_pwmp_hd.o(i.pwmp_adjust_hd_fail) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to sys.o(i.sys_millis_reset) for sys_millis_reset + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to mode_pwmp_hd.o(i._memset) for _memset + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to malloc.o(i.mymalloc) for mymalloc + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to fdiv.o(.text) for __aeabi_fdiv + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to f2d.o(.text) for __aeabi_f2d + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to dmul.o(.text) for __aeabi_dmul + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to ddiv.o(.text) for __aeabi_ddiv + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to d2f.o(.text) for __aeabi_d2f + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to fscalb.o(.text) for __ARM_scalbnf + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to dadd.o(.text) for __aeabi_dsub + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to fmul.o(.text) for __aeabi_fmul + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to fadd.o(.text) for __aeabi_fadd + mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to dfltui.o(.text) for __aeabi_ui2d + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to dmul.o(.text) for __aeabi_dmul + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to dfixui.o(.text) for __aeabi_d2uiz + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) refers to sys.o(i.sys_millis_reset) for sys_millis_reset + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) refers to sys.o(i.sys_millis) for sys_millis + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) refers to mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) for pwmp_adjust_hd_valve_position_change + mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_save) refers to mode_pwmp_hd.o(i.pwmp_public_params_update) for pwmp_public_params_update + mode_pwmp_hd.o(i.pwmp_adjust_hd_save) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) refers to malloc.o(i.myfree) for myfree + mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) refers to mode_pwmp_hd.o(i.pwmp_hd_process_state_set) for pwmp_hd_process_state_set + mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) refers to board.o(i.get_actual_travel_adc) for get_actual_travel_adc + mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) refers to ffltui.o(.text) for __aeabi_ui2f + mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_control_update) refers to board.o(i.get_actual_travel) for get_actual_travel + mode_pwmp_hd.o(i.pwmp_control_update) refers to convert.o(i.actual_travel_deal) for actual_travel_deal + mode_pwmp_hd.o(i.pwmp_control_update) refers to convert.o(i.get_pid_travel) for get_pid_travel + mode_pwmp_hd.o(i.pwmp_control_update) refers to filter.o(i.lpf_window_update) for lpf_window_update + mode_pwmp_hd.o(i.pwmp_control_update) refers to fadd.o(.text) for __aeabi_fsub + mode_pwmp_hd.o(i.pwmp_control_update) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_control_update) refers to app.o(.data) for actual_travel + mode_pwmp_hd.o(i.pwmp_control_update) refers to app.o(.data) for pid_actual + mode_pwmp_hd.o(i.pwmp_control_update) refers to app.o(.data) for pid_target + mode_pwmp_hd.o(i.pwmp_control_update) refers to app.o(.bss) for adc_raw + mode_pwmp_hd.o(i.pwmp_hd_algorithm_calibrated_status) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_hd_process_adjust_result_get) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_hd_process_adjust_state_get) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_hd_process_idel) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_hd_process_is_adjust) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_hd_process_state_set) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_public_params_update) refers to mode_pwmp_hd.o(.data) for .data + mode_pwmp_hd.o(i.pwmp_public_params_update) refers to app.o(.bss) for uDevice + mode_pwmp_hd.o(i.set_step_signal) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp.o(i.mode_pwmp_dinit) refers to mode_pwmp.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + mode_pwmp.o(i.mode_pwmp_dinit) refers to malloc.o(i.myfree) for myfree + mode_pwmp.o(i.mode_pwmp_dinit) refers to mode_pwmp.o(.data) for .data + mode_pwmp.o(i.mode_pwmp_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + mode_pwmp.o(i.mode_pwmp_init) refers to mode_pwmp.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + mode_pwmp.o(i.mode_pwmp_init) refers to malloc.o(i.mymalloc) for mymalloc + mode_pwmp.o(i.mode_pwmp_init) refers to mode_pwmp.o(.data) for .data + mode_pwmp.o(i.mode_pwmp_process) refers to pdctrl.o(i.pdctrl_out) for pdctrl_out + mode_pwmp.o(i.mode_pwmp_process) refers to board.o(i.get_actual_travel_adc) for get_actual_travel_adc + mode_pwmp.o(i.mode_pwmp_process) refers to mode_pwmp.o(.data) for .data + mode_pwmp.o(i.mode_pwmp_process) refers to app.o(.data) for loop_current + board.o(i.GUI_Flush) refers to board.o(.data) for .data + board.o(i.GUI_Flush_Clear) refers to board.o(.data) for .data + board.o(i.board_init) refers to adcs.o(i.adc_init) for adc_init + board.o(i.board_init) refers to rtc_rx8010.o(i.rtc_init) for rtc_init + board.o(i.board_init) refers to eeprom_m95.o(i.eeprom_m95_init) for eeprom_m95_init + board.o(i.board_init) refers to eeprom_fm24.o(i.eeprom_fm24_init) for eeprom_fm24_init + board.o(i.board_init) refers to eeprom_lc02b.o(i.eeprom_lc02b_init) for eeprom_lc02b_init + board.o(i.board_init) refers to leds.o(i.leds_init) for leds_init + board.o(i.board_init) refers to filter.o(i.lpf_init) for lpf_init + board.o(i.board_init) refers to board.o(.bss) for .bss + board.o(i.calib_parapos_perent) refers to fflti.o(.text) for __aeabi_i2f + board.o(i.calib_parapos_perent) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.calib_parapos_perent) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.calib_parapos_perent) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.calib_parapos_perent) refers to fadd.o(.text) for __aeabi_fsub + board.o(i.calib_parapos_perent) refers to app.o(.bss) for uDevice + board.o(i.calib_parapos_perent) refers to app.o(.bss) for calib_param + board.o(i.driver_dinit) refers to pdctrl.o(i.pdctrl_stop) for pdctrl_stop + board.o(i.driver_dinit) refers to board.o(.data) for .data + board.o(i.driver_init) refers to pdctrl.o(i.pdctrl_run) for pdctrl_run + board.o(i.driver_init) refers to board.o(.data) for .data + board.o(i.get_actual_travel) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.get_actual_travel) refers to adcs.o(i.adc_result_median) for adc_result_median + board.o(i.get_actual_travel) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.get_actual_travel) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.get_actual_travel) refers to fadd.o(.text) for __aeabi_fadd + board.o(i.get_actual_travel) refers to app.o(.bss) for adc_raw + board.o(i.get_actual_travel) refers to app.o(.data) for actual_travel + board.o(i.get_actual_travel) refers to app.o(.bss) for calib_param + board.o(i.get_actual_travel_adc) refers to adcs.o(i.adc_result_median) for adc_result_median + board.o(i.get_actual_travel_adc_average) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.get_current) refers to adcs.o(i.adc_result_median) for adc_result_median + board.o(i.get_current) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.get_current) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.get_current) refers to fadd.o(.text) for __aeabi_fadd + board.o(i.get_current) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.get_current) refers to app.o(.bss) for adc_raw + board.o(i.get_current) refers to app.o(.bss) for calib_param + board.o(i.get_current_deal) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.get_current_deal) refers to ffixui.o(.text) for __aeabi_f2uiz + board.o(i.get_current_deal) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.get_dac) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.get_dac) refers to fflti.o(.text) for __aeabi_i2f + board.o(i.get_dac) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.get_dac) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.get_dac) refers to fadd.o(.text) for __aeabi_fadd + board.o(i.get_dac) refers to ffixui.o(.text) for __aeabi_f2uiz + board.o(i.get_dac) refers to app.o(.bss) for uDevice + board.o(i.get_pressure) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.get_pressure) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.get_pressure) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.get_pressure) refers to fadd.o(.text) for __aeabi_fadd + board.o(i.get_pressure) refers to app.o(.bss) for adc_raw + board.o(i.get_pressure) refers to app.o(.bss) for calib_param + board.o(i.get_pressure) refers to app.o(.data) for pressure + board.o(i.get_pressure) refers to app.o(.bss) for uDevice + board.o(i.get_pressure) refers to app.o(.data) for pressureA + board.o(i.get_pressure) refers to app.o(.data) for pressureB + board.o(i.get_temperature) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.get_temperature) refers to ntc_3950.o(i.ntc_get_temp) for ntc_get_temp + board.o(i.get_temperature) refers to filter.o(i.lpf_update) for lpf_update + board.o(i.get_temperature) refers to app.o(.bss) for adc_raw + board.o(i.get_temperature) refers to board.o(.bss) for .bss + board.o(i.get_timestamp) refers to rtc_rx8010.o(i.rtc_get_clock_time) for rtc_get_clock_time + board.o(i.gui_close) refers to board.o(.data) for .data + board.o(i.gui_clr) refers to board.o(.data) for .data + board.o(i.gui_full) refers to board.o(.data) for .data + board.o(i.gui_get_clear_flag) refers to board.o(.data) for .data + board.o(i.gui_open) refers to board.o(.data) for .data + board.o(i.gui_set_clear_flag) refers to board.o(.data) for .data + board.o(i.gui_set_scandir) refers to app.o(.bss) for uDevice + board.o(i.gui_set_scandir) refers to board.o(.data) for .data + board.o(i.ip2current) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.ip2current) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.ip2current) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.ip2current) refers to app.o(.bss) for adc_raw + board.o(i.ip_dac2current) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.ip_dac2current) refers to fscalb.o(.text) for __ARM_scalbnf + board.o(i.ip_dac2current) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.ip_dac2current) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.loop_current_convert) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.loop_current_convert) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.pwm_duty2current) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.pwm_duty2current) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.pwm_duty2current) refers to ffixui.o(.text) for __aeabi_f2uiz + board.o(i.pwm_output_position) refers to fscalb.o(.text) for __ARM_scalbnf + board.o(i.pwm_output_position) refers to fadd.o(.text) for __aeabi_fadd + board.o(i.pwm_output_position) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.pwm_output_position) refers to ffixui.o(.text) for __aeabi_f2uiz + board.o(i.pwm_output_position) refers to app.o(.bss) for calib_param + board.o(i.set_200kpa) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.set_200kpa) refers to board.o(.data) for .data + board.o(i.set_400kpa) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.set_400kpa) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.set_400kpa) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.set_400kpa) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.set_400kpa) refers to fadd.o(.text) for __aeabi_fsub + board.o(i.set_400kpa) refers to board.o(.data) for .data + board.o(i.set_400kpa) refers to app.o(.bss) for calib_param + board.o(i.set_app_preload_language_flag) refers to board.o(.ARM.__AT_0x10007FF1) for .ARM.__AT_0x10007FF1 + board.o(i.set_loop_20ma) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.set_loop_20ma) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.set_loop_20ma) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.set_loop_20ma) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.set_loop_20ma) refers to fadd.o(.text) for __aeabi_fsub + board.o(i.set_loop_20ma) refers to board.o(.data) for .data + board.o(i.set_loop_20ma) refers to app.o(.bss) for calib_param + board.o(i.set_loop_4ma) refers to adcs.o(i.adc_result_average) for adc_result_average + board.o(i.set_loop_4ma) refers to board.o(.data) for .data + board.o(i.set_output_20ma_pwm) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.set_output_20ma_pwm) refers to fadd.o(.text) for __aeabi_fsub + board.o(i.set_output_20ma_pwm) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.set_output_20ma_pwm) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.set_output_20ma_pwm) refers to board.o(.data) for .data + board.o(i.set_output_20ma_pwm) refers to app.o(.bss) for calib_param + board.o(i.set_output_4ma_pwm) refers to board.o(.data) for .data + board.o(i.set_pwm_calib_current) refers to ffltui.o(.text) for __aeabi_ui2f + board.o(i.set_pwm_calib_current) refers to fadd.o(.text) for __aeabi_fsub + board.o(i.set_pwm_calib_current) refers to fdiv.o(.text) for __aeabi_fdiv + board.o(i.set_pwm_calib_current) refers to fmul.o(.text) for __aeabi_fmul + board.o(i.set_pwm_calib_current) refers to app.o(.bss) for uDevice + board.o(i.set_pwm_calib_current) refers to app.o(.bss) for calib_param + eeprom_m95.o(i.eeprom_m95_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + eeprom_m95.o(i.eeprom_m95_init) refers to malloc.o(i.mymalloc) for mymalloc + eeprom_m95.o(i.eeprom_m95_init) refers to gpios.o(i.gpio_create) for gpio_create + eeprom_m95.o(i.eeprom_m95_init) refers to spis.o(i.spi_create) for spi_create + eeprom_m95.o(i.eeprom_m95_init) refers to delay.o(i.delay_tick) for delay_tick + eeprom_m95.o(i.eeprom_m95_init) refers to eeprom_m95.o(.data) for .data + eeprom_m95.o(i.eeprom_m95_init) refers to eeprom_m95.o(.bss) for .bss + eeprom_m95.o(i.eeprom_m95_init) refers to eeprom_m95.o(i.dma_tx_cb) for dma_tx_cb + eeprom_m95.o(i.eeprom_m95_init) refers to eeprom_m95.o(i.dma_rx_cb) for dma_rx_cb + eeprom_m95.o(i.eeprom_m95_read) refers to eeprom_m95.o(i.eeprom_m95_enable) for eeprom_m95_enable + eeprom_m95.o(i.eeprom_m95_read) refers to eeprom_m95.o(i.eeprom_m95_disable) for eeprom_m95_disable + eeprom_m95.o(i.eeprom_m95_read) refers to eeprom_m95.o(.data) for .data + eeprom_m95.o(i.eeprom_m95_read) refers to eeprom_m95.o(.bss) for .bss + eeprom_m95.o(i.eeprom_m95_ready) refers to eeprom_m95.o(i.read_status) for read_status + eeprom_m95.o(i.eeprom_m95_ready) refers to eeprom_m95.o(.bss) for .bss + eeprom_m95.o(i.eeprom_m95_test) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + eeprom_m95.o(i.eeprom_m95_test) refers to eeprom_m95.o(i.eeprom_m95_write) for eeprom_m95_write + eeprom_m95.o(i.eeprom_m95_test) refers to eeprom_m95.o(i.eeprom_m95_read) for eeprom_m95_read + eeprom_m95.o(i.eeprom_m95_test) refers to eeprom_m95.o(.bss) for .bss + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(i.eeprom_m95_enable) for eeprom_m95_enable + eeprom_m95.o(i.eeprom_m95_write) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(i.write_enable) for write_enable + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(i.eeprom_m95_ready) for eeprom_m95_ready + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(i.write_disable) for write_disable + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(i.eeprom_m95_disable) for eeprom_m95_disable + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(.data) for .data + eeprom_m95.o(i.eeprom_m95_write) refers to eeprom_m95.o(.bss) for .bss + eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + eeprom_fm24.o(i.eeprom_fm24_init) refers to i2cs.o(i.i2c_create_dma) for i2c_create_dma + eeprom_fm24.o(i.eeprom_fm24_init) refers to i2cs.o(i.i2c_dma_set_address) for i2c_dma_set_address + eeprom_fm24.o(i.eeprom_fm24_init) refers to eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb) for eeprom_fm24_dma_tx_cb + eeprom_fm24.o(i.eeprom_fm24_init) refers to eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb) for eeprom_fm24_dma_rx_cb + eeprom_fm24.o(i.eeprom_fm24_init) refers to eeprom_fm24.o(.data) for .data + eeprom_fm24.o(i.eeprom_fm24_read) refers to eeprom_fm24.o(i.eeprom_fm24_enable) for eeprom_fm24_enable + eeprom_fm24.o(i.eeprom_fm24_read) refers to eeprom_fm24.o(i.eeprom_fm24_disable) for eeprom_fm24_disable + eeprom_fm24.o(i.eeprom_fm24_read) refers to eeprom_fm24.o(.data) for .data + eeprom_fm24.o(i.eeprom_fm24_test) refers to eeprom_fm24.o(i._memset) for _memset + eeprom_fm24.o(i.eeprom_fm24_test) refers to eeprom_fm24.o(i.eeprom_fm24_write) for eeprom_fm24_write + eeprom_fm24.o(i.eeprom_fm24_test) refers to eeprom_fm24.o(i.eeprom_fm24_read) for eeprom_fm24_read + eeprom_fm24.o(i.eeprom_fm24_write) refers to eeprom_fm24.o(i.eeprom_fm24_enable) for eeprom_fm24_enable + eeprom_fm24.o(i.eeprom_fm24_write) refers to eeprom_fm24.o(i.eeprom_fm24_disable) for eeprom_fm24_disable + eeprom_fm24.o(i.eeprom_fm24_write) refers to eeprom_fm24.o(.data) for .data + eeprom_lc02b.o(i.eeprom_lc02b_init) refers to gpios.o(i.gpio_create) for gpio_create + eeprom_lc02b.o(i.eeprom_lc02b_init) refers to i2cs.o(i.i2c_create) for i2c_create + eeprom_lc02b.o(i.eeprom_lc02b_init) refers to eeprom_lc02b.o(.data) for .data + eeprom_lc02b.o(i.eeprom_lc02b_read) refers to eeprom_lc02b.o(.data) for .data + eeprom_lc02b.o(i.eeprom_lc02b_test) refers to eeprom_lc02b.o(i.eeprom_lc02b_write) for eeprom_lc02b_write + eeprom_lc02b.o(i.eeprom_lc02b_test) refers to delay.o(i.delay_ms) for delay_ms + eeprom_lc02b.o(i.eeprom_lc02b_test) refers to eeprom_lc02b.o(i.eeprom_lc02b_read) for eeprom_lc02b_read + eeprom_lc02b.o(i.eeprom_lc02b_write) refers to delay.o(i.delay_ms) for delay_ms + eeprom_lc02b.o(i.eeprom_lc02b_write) refers to eeprom_lc02b.o(.data) for .data + rtc_rx8010.o(i.rtc_check_vlf) refers to rtc_rx8010.o(i.rtc_read_byte) for rtc_read_byte + rtc_rx8010.o(i.rtc_clock_reginit) refers to rtc_rx8010.o(i.rtc_write_byte) for rtc_write_byte + rtc_rx8010.o(i.rtc_dummy_read) refers to rtc_rx8010.o(.data) for .data + rtc_rx8010.o(i.rtc_get_clock_time) refers to rtc_rx8010.o(i.rtc_read_bytes) for rtc_read_bytes + rtc_rx8010.o(i.rtc_init) refers to gpios.o(i.gpio_create) for gpio_create + rtc_rx8010.o(i.rtc_init) refers to i2cs.o(i.i2c_create) for i2c_create + rtc_rx8010.o(i.rtc_init) refers to rtc_rx8010.o(i.rtc_dummy_read) for rtc_dummy_read + rtc_rx8010.o(i.rtc_init) refers to rtc_rx8010.o(i.rtc_wait_vlf_clear) for rtc_wait_vlf_clear + rtc_rx8010.o(i.rtc_init) refers to rtc_rx8010.o(i.rtc_soft_reset) for rtc_soft_reset + rtc_rx8010.o(i.rtc_init) refers to rtc_rx8010.o(i.rtc_clock_reginit) for rtc_clock_reginit + rtc_rx8010.o(i.rtc_init) refers to rtc_rx8010.o(.data) for .data + rtc_rx8010.o(i.rtc_read_byte) refers to rtc_rx8010.o(.data) for .data + rtc_rx8010.o(i.rtc_read_bytes) refers to rtc_rx8010.o(.data) for .data + rtc_rx8010.o(i.rtc_set_clock_time) refers to rtc_rx8010.o(i.rtc_write_byte) for rtc_write_byte + rtc_rx8010.o(i.rtc_set_clock_time) refers to rtc_rx8010.o(i.rtc_write_bytes) for rtc_write_bytes + rtc_rx8010.o(i.rtc_soft_reset) refers to rtc_rx8010.o(i.rtc_write_byte) for rtc_write_byte + rtc_rx8010.o(i.rtc_soft_reset) refers to delay.o(i.delay_ms) for delay_ms + rtc_rx8010.o(i.rtc_wait_vlf_clear) refers to rtc_rx8010.o(i.rtc_check_vlf) for rtc_check_vlf + rtc_rx8010.o(i.rtc_wait_vlf_clear) refers to rtc_rx8010.o(i.rtc_write_byte) for rtc_write_byte + rtc_rx8010.o(i.rtc_write_byte) refers to rtc_rx8010.o(.data) for .data + rtc_rx8010.o(i.rtc_write_bytes) refers to rtc_rx8010.o(.data) for .data + ntc_3950.o(i.ntc_get_temp) refers to ntc_3950.o(i.ntc_lookup) for ntc_lookup + ntc_3950.o(i.ntc_get_temp) refers to dflti.o(.text) for __aeabi_i2d + ntc_3950.o(i.ntc_get_temp) refers to ddiv.o(.text) for __aeabi_ddiv + ntc_3950.o(i.ntc_get_temp) refers to d2f.o(.text) for __aeabi_d2f + ntc_3950.o(i.ntc_get_temp) refers to ntc_3950.o(.constdata) for .constdata + leds.o(i.leds_dinit) refers to leds.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + leds.o(i.leds_init) refers to leds.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + leds.o(i.leds_init) refers to gpios.o(i.gpio_create) for gpio_create + leds.o(i.leds_init) refers to leds.o(.bss) for .bss + leds.o(i.leds_off) refers to leds.o(.bss) for .bss + leds.o(i.leds_off_all) refers to leds.o(i.leds_off) for leds_off + leds.o(i.leds_on) refers to leds.o(i.LL_GPIO_SetPinMode) for LL_GPIO_SetPinMode + leds.o(i.leds_on) refers to leds.o(.bss) for .bss + leds.o(i.leds_toggle) refers to leds.o(.bss) for .bss + delay.o(i.delay_init) refers to delay.o(i.SysTick_Init) for SysTick_Init + delay.o(i.delay_init) refers to stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) for LL_SetSystemCoreClock + delay.o(i.delay_init) refers to delay.o(.data) for .data + delay.o(i.delay_ms) refers to delay.o(i.delay_us) for delay_us + delay.o(i.delay_us) refers to delay.o(.data) for .data + sys.o(i.LL_IncTick) refers to sys.o(.data) for .data + sys.o(i.scheduler_time_occupancy_get) refers to ffltui.o(.text) for __aeabi_ui2f + sys.o(i.scheduler_time_occupancy_get) refers to fdiv.o(.text) for __aeabi_fdiv + sys.o(i.scheduler_time_occupancy_get) refers to fmul.o(.text) for __aeabi_fmul + sys.o(i.scheduler_time_occupancy_get) refers to ffixui.o(.text) for __aeabi_f2uiz + sys.o(i.scheduler_time_occupancy_get) refers to sys.o(.data) for .data + sys.o(i.scheduler_time_start) refers to sys.o(i.sys_millis) for sys_millis + sys.o(i.scheduler_time_start) refers to sys.o(.data) for .data + sys.o(i.scheduler_time_stop) refers to sys.o(i.sys_millis) for sys_millis + sys.o(i.scheduler_time_stop) refers to sys.o(.data) for .data + sys.o(i.sys_millis) refers to sys.o(.data) for .data + sys.o(i.sys_millis_reset) refers to sys.o(.data) for .data + sys.o(i.sys_to_seconds) refers to sys.o(.data) for .data + btn.o(i.button_start) refers to btn.o(.data) for .data + btn.o(i.button_stop) refers to btn.o(.data) for .data + btn.o(i.button_ticks) refers to btn.o(i.button_handler) for button_handler + btn.o(i.button_ticks) refers to btn.o(.data) for .data + adcs.o(i.LL_DMA_EnableChannel) refers to adcs.o(.constdata) for .constdata + adcs.o(i.LL_DMA_SetDataLength) refers to adcs.o(.constdata) for .constdata + adcs.o(i.adc_dma_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_dma_callback) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_env_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_env_callback) refers to adcs.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + adcs.o(i.adc_env_callback) refers to adcs.o(i.LL_ADC_DMA_GetRegAddr) for LL_ADC_DMA_GetRegAddr + adcs.o(i.adc_env_callback) refers to adcs.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + adcs.o(i.adc_env_callback) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_env_callback) refers to adcs.o(.constdata) for .constdata + adcs.o(i.adc_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_init) refers to adcs.o(i._memset) for _memset + adcs.o(i.adc_init) refers to adcs.o(i.adc_get_channels_count) for adc_get_channels_count + adcs.o(i.adc_init) refers to malloc.o(i.mymalloc) for mymalloc + adcs.o(i.adc_init) refers to stm32l4xx_ll_utils.o(i.LL_mDelay) for LL_mDelay + adcs.o(i.adc_init) refers to adcs.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + adcs.o(i.adc_init) refers to adcs.o(i.LL_ADC_DMA_GetRegAddr) for LL_ADC_DMA_GetRegAddr + adcs.o(i.adc_init) refers to adcs.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + adcs.o(i.adc_init) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_init) refers to adcs.o(.constdata) for .constdata + adcs.o(i.adc_result_average) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_result_average) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_result_median) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_result_median) refers to malloc.o(i.malloc) for malloc + adcs.o(i.adc_result_median) refers to malloc.o(i.mymalloc) for mymalloc + adcs.o(i.adc_result_median) refers to adcs.o(i.memcpyL) for memcpyL + adcs.o(i.adc_result_median) refers to malloc.o(i.myfree) for myfree + adcs.o(i.adc_result_median) refers to malloc.o(i.free) for free + adcs.o(i.adc_result_median) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_result_median_average) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_result_median_average) refers to malloc.o(i.malloc) for malloc + adcs.o(i.adc_result_median_average) refers to malloc.o(i.mymalloc) for mymalloc + adcs.o(i.adc_result_median_average) refers to adcs.o(i.memcpyL) for memcpyL + adcs.o(i.adc_result_median_average) refers to malloc.o(i.myfree) for myfree + adcs.o(i.adc_result_median_average) refers to malloc.o(i.free) for free + adcs.o(i.adc_result_median_average) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_result_n_average) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_result_n_average) refers to malloc.o(i.malloc) for malloc + adcs.o(i.adc_result_n_average) refers to malloc.o(i.mymalloc) for mymalloc + adcs.o(i.adc_result_n_average) refers to adcs.o(i.memcpyL) for memcpyL + adcs.o(i.adc_result_n_average) refers to malloc.o(i.myfree) for myfree + adcs.o(i.adc_result_n_average) refers to adcs.o(i._quick_sort) for _quick_sort + adcs.o(i.adc_result_n_average) refers to malloc.o(i.free) for free + adcs.o(i.adc_result_n_average) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_result_only_one) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + adcs.o(i.adc_result_only_one) refers to adcs.o(.bss) for .bss + adcs.o(i.adc_result_value_local) refers to dfltui.o(.text) for __aeabi_ui2d + adcs.o(i.adc_result_value_local) refers to ddiv.o(.text) for __aeabi_ddiv + adcs.o(i.adc_result_value_local) refers to dscalb.o(.text) for __ARM_scalbn + adcs.o(i.adc_result_value_local) refers to dfixi.o(.text) for __aeabi_d2iz + dacs.o(i.dac_create) refers to malloc.o(i.mymalloc) for mymalloc + dacs.o(i.dac_create) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + dacs.o(i.dac_create) refers to dacs.o(i._out) for _out + dacs.o(i.dac_free) refers to malloc.o(i.myfree) for myfree + gpios.o(i.gpio_create) refers to malloc.o(i.mymalloc) for mymalloc + gpios.o(i.gpio_create) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + gpios.o(i.gpio_create) refers to gpios.o(i._set) for _set + gpios.o(i.gpio_create) refers to gpios.o(i._reset) for _reset + gpios.o(i.gpio_create) refers to gpios.o(i._toggle) for _toggle + gpios.o(i.gpio_create) refers to gpios.o(i._read) for _read + gpios.o(i.gpio_free) refers to malloc.o(i.myfree) for myfree + spis.o(i._dma_enable) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._dma_enable) refers to spis.o(.constdata) for .constdata + spis.o(i._hardware_enable) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._read_drdy) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._read_regs) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._read_regs) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._read_regs) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._read_regs) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i._spi_dma_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._spi_dma_send) refers to spis.o(.constdata) for .constdata + spis.o(i._spi_read_reg) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._spi_read_reg) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._spi_read_reg) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._spi_read_reg) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i._spi_write_cmd) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._spi_write_cmd) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._spi_write_cmd) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._spi_write_cmd) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i._spi_write_data) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._spi_write_data) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._spi_write_data) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._spi_write_data) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i._spi_write_reg) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._spi_write_reg) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._spi_write_reg) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._spi_write_reg) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i._write_regs) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i._write_regs) refers to spis.o(i.spi_cs_low) for spi_cs_low + spis.o(i._write_regs) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i._write_regs) refers to spis.o(i.spi_cs_high) for spi_cs_high + spis.o(i.spi_create) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i.spi_create) refers to malloc.o(i.mymalloc) for mymalloc + spis.o(i.spi_create) refers to spis.o(i._hardware_enable) for _hardware_enable + spis.o(i.spi_create) refers to spis.o(i._dma_enable) for _dma_enable + spis.o(i.spi_create) refers to spis.o(i._spi_dma_send) for _spi_dma_send + spis.o(i.spi_create) refers to spis.o(i._spi_dma_callback) for _spi_dma_callback + spis.o(i.spi_create) refers to spis.o(i._spi_write_reg) for _spi_write_reg + spis.o(i.spi_create) refers to spis.o(i._spi_read_reg) for _spi_read_reg + spis.o(i.spi_create) refers to spis.o(i._write_regs) for _write_regs + spis.o(i.spi_create) refers to spis.o(i._read_regs) for _read_regs + spis.o(i.spi_create) refers to spis.o(i._read_drdy) for _read_drdy + spis.o(i.spi_create) refers to spis.o(i.spi_read_write_byte) for spi_read_write_byte + spis.o(i.spi_create) refers to spis.o(i._spi_write_cmd) for _spi_write_cmd + spis.o(i.spi_create) refers to spis.o(i._spi_write_data) for _spi_write_data + spis.o(i.spi_cs_high) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i.spi_cs_low) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i.spi_delay) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i.spi_free) refers to gpios.o(i.gpio_free) for gpio_free + spis.o(i.spi_free) refers to malloc.o(i.myfree) for myfree + spis.o(i.spi_read_write_byte) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + spis.o(i.spi_read_write_byte) refers to spis.o(i.spi_delay) for spi_delay + uarts.o(i.LL_DMA_DisableChannel) refers to uarts.o(.constdata) for .constdata + uarts.o(i.LL_DMA_EnableChannel) refers to uarts.o(.constdata) for .constdata + uarts.o(i.LL_DMA_EnableIT_TC) refers to uarts.o(.constdata) for .constdata + uarts.o(i.LL_DMA_SetDataLength) refers to uarts.o(.constdata) for .constdata + uarts.o(i.uart_create) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + uarts.o(i.uart_create) refers to malloc.o(i.mymalloc) for mymalloc + uarts.o(i.uart_dma_reception_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + uarts.o(i.uart_dma_reception_callback) refers to uarts.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + uarts.o(i.uart_free) refers to malloc.o(i.myfree) for myfree + uarts.o(i.uart_reception_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + uarts.o(i.uart_reception_callback) refers to uarts.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + uarts.o(i.uart_reception_callback) refers to uarts.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + uarts.o(i.uart_reception_callback) refers to uarts.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + uarts.o(i.uart_reception_callback) refers to uarts.o(.constdata) for .constdata + uarts.o(i.uart_recv_en) refers to uarts.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + uarts.o(i.uart_recv_en) refers to uarts.o(i.LL_USART_DMA_GetRegAddr) for LL_USART_DMA_GetRegAddr + uarts.o(i.uart_recv_en) refers to uarts.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + uarts.o(i.uart_recv_en) refers to uarts.o(i.LL_DMA_EnableIT_TC) for LL_DMA_EnableIT_TC + uarts.o(i.uart_recv_en) refers to uarts.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + uarts.o(i.uart_recv_en) refers to uarts.o(.constdata) for .constdata + uarts.o(i.uart_send_data) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + uarts.o(i.uart_send_data) refers to uarts.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + uarts.o(i.uart_send_data) refers to uarts.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + uarts.o(i.uart_send_data) refers to uarts.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + i2cs.o(i.LL_DMA_ConfigAddresses) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_ConfigTransfer) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_DisableChannel) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_EnableChannel) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_EnableIT_TC) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_EnableIT_TE) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_GetDataTransferDirection) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i.LL_DMA_SetDataLength) refers to i2cs.o(.constdata) for .constdata + i2cs.o(i._malloc) refers to malloc.o(i.mymalloc) for mymalloc + i2cs.o(i._read_byte) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._read_byte) refers to i2cs.o(i.delay) for delay + i2cs.o(i._read_mem_dma) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.i2c_reset) for i2c_reset + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.LL_I2C_HandleTransfer) for LL_I2C_HandleTransfer + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + i2cs.o(i._read_mem_dma) refers to i2cs.o(i.memcpyL) for memcpyL + i2cs.o(i._start) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._start) refers to i2cs.o(i.delay) for delay + i2cs.o(i._stop) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._stop) refers to i2cs.o(i.delay) for delay + i2cs.o(i._wait_ack) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._wait_ack) refers to i2cs.o(i.delay) for delay + i2cs.o(i._wait_ack) refers to i2cs.o(i._stop) for _stop + i2cs.o(i._write_byte) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._write_byte) refers to i2cs.o(i.delay) for delay + i2cs.o(i._write_mem_dma) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.i2c_reset) for i2c_reset + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.memcpyL) for memcpyL + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.LL_DMA_SetDataLength) for LL_DMA_SetDataLength + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.LL_DMA_EnableChannel) for LL_DMA_EnableChannel + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.LL_I2C_HandleTransfer) for LL_I2C_HandleTransfer + i2cs.o(i._write_mem_dma) refers to i2cs.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + i2cs.o(i._write_word) refers to i2cs.o(i._write_byte) for _write_byte + i2cs.o(i._write_word) refers to i2cs.o(i._wait_ack) for _wait_ack + i2cs.o(i.delay) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i.i2c_create) refers to i2cs.o(i._malloc) for _malloc + i2cs.o(i.i2c_create) refers to i2cs.o(i.memcpyL) for memcpyL + i2cs.o(i.i2c_create) refers to i2cs.o(i._start) for _start + i2cs.o(i.i2c_create) refers to i2cs.o(i._stop) for _stop + i2cs.o(i.i2c_create) refers to i2cs.o(i._wait_ack) for _wait_ack + i2cs.o(i.i2c_create) refers to i2cs.o(i._read_byte) for _read_byte + i2cs.o(i.i2c_create) refers to i2cs.o(i._write_byte) for _write_byte + i2cs.o(i.i2c_create) refers to i2cs.o(i._write_word) for _write_word + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i._malloc) for _malloc + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_DisableChannel) for LL_DMA_DisableChannel + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_ConfigTransfer) for LL_DMA_ConfigTransfer + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_GetDataTransferDirection) for LL_DMA_GetDataTransferDirection + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_I2C_DMA_GetRegAddr) for LL_I2C_DMA_GetRegAddr + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_ConfigAddresses) for LL_DMA_ConfigAddresses + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_SetPeriphRequest) for LL_DMA_SetPeriphRequest + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_EnableIT_TC) for LL_DMA_EnableIT_TC + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i.LL_DMA_EnableIT_TE) for LL_DMA_EnableIT_TE + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i._write_mem_dma) for _write_mem_dma + i2cs.o(i.i2c_create_dma) refers to i2cs.o(i._read_mem_dma) for _read_mem_dma + i2cs.o(i.i2c_dma_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i.i2c_dma_set_address) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i.i2c_ev_callback) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + i2cs.o(i.i2c_free) refers to gpios.o(i.gpio_free) for gpio_free + i2cs.o(i.i2c_free) refers to malloc.o(i.myfree) for myfree + lib.o(i.dayOfyear) refers to lib.o(i.isLeap) for isLeap + lib.o(i.dec_format_hex) refers to lib.o(i._memset) for _memset + lib.o(i.dec_format_hex) refers to printfa.o(i.__0sprintf) for __2sprintf + lib.o(i.dec_format_hex) refers to strlen.o(.text) for strlen + lib.o(i.hex_format_dec) refers to lib.o(i._memset) for _memset + lib.o(i.hex_format_dec) refers to printfa.o(i.__0sprintf) for __2sprintf + lib.o(i.hex_format_dec) refers to strlen.o(.text) for strlen + lib.o(i.stamp2Time) refers to lib.o(.constdata) for .constdata + lib.o(i.time2Stamp) refers to lib.o(.constdata) for .constdata + lib.o(i.weekOfyear) refers to lib.o(i.dayOfyear) for dayOfyear + malloc.o(i.my_mem_free) refers to malloc.o(.data) for .data + malloc.o(i.my_mem_free) refers to malloc.o(.constdata) for .constdata + malloc.o(i.my_mem_init) refers to malloc.o(i.mymemset) for mymemset + malloc.o(i.my_mem_init) refers to malloc.o(.constdata) for .constdata + malloc.o(i.my_mem_init) refers to malloc.o(.data) for .data + malloc.o(i.my_mem_malloc) refers to malloc.o(.data) for .data + malloc.o(i.my_mem_malloc) refers to malloc.o(.constdata) for .constdata + malloc.o(i.my_mem_perused) refers to malloc.o(.constdata) for .constdata + malloc.o(i.my_mem_perused) refers to malloc.o(.data) for .data + malloc.o(i.myfree) refers to malloc.o(i.mymemset) for mymemset + malloc.o(i.myfree) refers to malloc.o(i.my_mem_free) for my_mem_free + malloc.o(i.myfree) refers to malloc.o(.data) for .data + malloc.o(i.myfree) refers to malloc.o(.constdata) for .constdata + malloc.o(i.mymalloc) refers to malloc.o(i.my_mem_malloc) for my_mem_malloc + malloc.o(i.mymalloc) refers to malloc.o(.data) for .data + malloc.o(i.myrealloc) refers to malloc.o(i.my_mem_malloc) for my_mem_malloc + malloc.o(i.myrealloc) refers to malloc.o(i.mymemcpy) for mymemcpy + malloc.o(i.myrealloc) refers to malloc.o(i.myfree) for myfree + malloc.o(i.myrealloc) refers to malloc.o(.data) for .data + malloc.o(.data) refers to malloc.o(i.my_mem_init) for my_mem_init + malloc.o(.data) refers to malloc.o(i.my_mem_perused) for my_mem_perused + malloc.o(.data) refers to malloc.o(.bss) for mem1base + malloc.o(.data) refers to malloc.o(.sram2) for mem2base + malloc.o(.data) refers to malloc.o(.bss) for mem1mapbase + malloc.o(.data) refers to malloc.o(.bss) for mem2mapbase + flow_core.o(i.fl_hour_much_time) refers to flow_core.o(.data) for .data + flow_core.o(i.fl_timer_restart) refers to flow_core.o(.data) for .data + flow_core.o(i.fl_timer_set) refers to flow_core.o(.data) for .data + flow_core.o(i.fl_timer_timeout) refers to flow_core.o(.data) for .data + sqqueue.o(i.clear_sqq) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.delete_sqqueue) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.enter_sqqueue) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.enter_sqqueue) refers to sqqueue.o(i.memcpyL) for memcpyL + sqqueue.o(i.qremove) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.qremove) refers to sqqueue.o(i.memcpyL) for memcpyL + sqqueue.o(i.revoke_sqqueue) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.sqqueue_ctrl_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.sqqueue_init) for sqqueue_init + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.enter_sqqueue) for enter_sqqueue + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.string_enter_sqqueue) for string_enter_sqqueue + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.delete_sqqueue) for delete_sqqueue + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.revoke_sqqueue) for revoke_sqqueue + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.sqqueue_length) for sqqueue_length + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.sqqueue_full) for sqqueue_full + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.clear_sqq) for clear_sqq + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.traverse) for traverse + sqqueue.o(i.sqqueue_ctrl_init) refers to sqqueue.o(i.qremove) for qremove + sqqueue.o(i.sqqueue_full) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.sqqueue_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.sqqueue_init) refers to malloc.o(i.mymalloc) for mymalloc + sqqueue.o(i.sqqueue_length) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + sqqueue.o(i.string_enter_sqqueue) refers to sqqueue.o(i.sqqueue_length) for sqqueue_length + sqqueue.o(i.string_enter_sqqueue) refers to sqqueue.o(i.memcpyL) for memcpyL + sqqueue.o(i.traverse) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + filter.o(i.kalman_update) refers to f2d.o(.text) for __aeabi_f2d + filter.o(i.kalman_update) refers to fadd.o(.text) for __aeabi_fsub + filter.o(i.kalman_update) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + filter.o(i.kalman_update) refers to filter.o(i.kalman_init) for kalman_init + filter.o(i.kalman_update) refers to fdiv.o(.text) for __aeabi_fdiv + filter.o(i.kalman_update) refers to fmul.o(.text) for __aeabi_fmul + filter.o(i.lpf_update) refers to fadd.o(.text) for __aeabi_fsub + filter.o(i.lpf_update) refers to fmul.o(.text) for __aeabi_fmul + filter.o(i.lpf_window_dinit) refers to malloc.o(i.myfree) for myfree + filter.o(i.lpf_window_init) refers to malloc.o(i.mymalloc) for mymalloc + filter.o(i.lpf_window_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + filter.o(i.lpf_window_update) refers to ffltui.o(.text) for __aeabi_ui2f + filter.o(i.lpf_window_update) refers to fadd.o(.text) for __aeabi_fadd + filter.o(i.lpf_window_update) refers to ffixui.o(.text) for __aeabi_f2uiz + clist.o(i.CreateNode) refers to malloc.o(i.mymalloc) for mymalloc + clist.o(i._free) refers to malloc.o(i.myfree) for myfree + clist.o(i.cListErase) refers to clist.o(i.clist_erase_for_node) for clist_erase_for_node + clist.o(i.clist_destroy) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_destroy) refers to clist.o(i._free) for _free + clist.o(i.clist_erase_for_node) refers to clist.o(i.clist_pop_front) for clist_pop_front + clist.o(i.clist_erase_for_node) refers to clist.o(i._free) for _free + clist.o(i.clist_init) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_insert) refers to clist.o(i.clist_insert_for_node) for clist_insert_for_node + clist.o(i.clist_insert_for_node) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_insert_for_node) refers to clist.o(i.clist_push_front) for clist_push_front + clist.o(i.clist_insert_for_node) refers to clist.o(i.CreateNode) for CreateNode + clist.o(i.clist_pop_back) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_pop_back) refers to clist.o(i._free) for _free + clist.o(i.clist_pop_front) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_pop_front) refers to clist.o(i._free) for _free + clist.o(i.clist_push_back) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_push_back) refers to clist.o(i.CreateNode) for CreateNode + clist.o(i.clist_push_front) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_push_front) refers to clist.o(i.CreateNode) for CreateNode + clist.o(i.clist_remove) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_remove) refers to clist.o(i._free) for _free + clist.o(i.clist_remove_all) refers to debug.o(i.DBG_ASSERT) for DBG_ASSERT + clist.o(i.clist_remove_all) refers to clist.o(i._free) for _free + cmac.o(i.AES_CMAC_Final) refers to cmac.o(i._memset) for _memset + cmac.o(i.AES_CMAC_Final) refers to aes.o(i.aes_encrypt) for aes_encrypt + cmac.o(i.AES_CMAC_Final) refers to cmac.o(i.memcpyL) for memcpyL + cmac.o(i.AES_CMAC_Init) refers to cmac.o(i._memset) for _memset + cmac.o(i.AES_CMAC_SetKey) refers to aes.o(i.aes_set_key) for aes_set_key + cmac.o(i.AES_CMAC_Update) refers to cmac.o(i.memcpyL) for memcpyL + cmac.o(i.AES_CMAC_Update) refers to aes.o(i.aes_encrypt) for aes_encrypt + aes.o(i.add_round_key) refers to aes.o(i.xor_block) for xor_block + aes.o(i.aes_cbc_decrypt) refers to aes.o(i.copy_block) for copy_block + aes.o(i.aes_cbc_decrypt) refers to aes.o(i.aes_decrypt) for aes_decrypt + aes.o(i.aes_cbc_decrypt) refers to aes.o(i.xor_block) for xor_block + aes.o(i.aes_cbc_encrypt) refers to aes.o(i.xor_block) for xor_block + aes.o(i.aes_cbc_encrypt) refers to aes.o(i.aes_encrypt) for aes_encrypt + aes.o(i.aes_cbc_encrypt) refers to aes.o(i.copy_block) for copy_block + aes.o(i.aes_decrypt) refers to aes.o(i.copy_and_key) for copy_and_key + aes.o(i.aes_decrypt) refers to aes.o(i.inv_shift_sub_rows) for inv_shift_sub_rows + aes.o(i.aes_decrypt) refers to aes.o(i.add_round_key) for add_round_key + aes.o(i.aes_decrypt) refers to aes.o(i.inv_mix_sub_columns) for inv_mix_sub_columns + aes.o(i.aes_encrypt) refers to aes.o(i.copy_and_key) for copy_and_key + aes.o(i.aes_encrypt) refers to aes.o(i.mix_sub_columns) for mix_sub_columns + aes.o(i.aes_encrypt) refers to aes.o(i.add_round_key) for add_round_key + aes.o(i.aes_encrypt) refers to aes.o(i.shift_sub_rows) for shift_sub_rows + aes.o(i.aes_set_key) refers to aes.o(i.copy_block_nn) for copy_block_nn + aes.o(i.aes_set_key) refers to aes.o(.constdata) for .constdata + aes.o(i.inv_mix_sub_columns) refers to aes.o(i.copy_block) for copy_block + aes.o(i.inv_mix_sub_columns) refers to aes.o(.constdata) for .constdata + aes.o(i.inv_shift_sub_rows) refers to aes.o(.constdata) for .constdata + aes.o(i.mix_sub_columns) refers to aes.o(i.copy_block) for copy_block + aes.o(i.mix_sub_columns) refers to aes.o(.constdata) for .constdata + aes.o(i.shift_sub_rows) refers to aes.o(.constdata) for .constdata + fdb.o(i._fdb_init_ex) refers to fal.o(i.fal_init) for fal_init + fdb.o(i._fdb_init_ex) refers to fal_partition.o(i.fal_partition_find) for fal_partition_find + fdb.o(i._fdb_init_ex) refers to fal_flash.o(i.fal_flash_device_find) for fal_flash_device_find + fdb.o(i._fdb_init_finish) refers to fdb.o(.data) for .data + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.sector_iterator) for sector_iterator + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.fdb_kv_set_default) for fdb_kv_set_default + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.kv_iterator) for kv_iterator + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.gc_collect) for gc_collect + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.check_sec_hdr_cb) for check_sec_hdr_cb + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.check_and_recovery_gc_cb) for check_and_recovery_gc_cb + fdb_kvdb.o(i._fdb_kv_load) refers to fdb_kvdb.o(i.check_and_recovery_kv_cb) for check_and_recovery_kv_cb + fdb_kvdb.o(i.align_write) refers to memseta.o(.text) for __aeabi_memset + fdb_kvdb.o(i.align_write) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_kvdb.o(i.alloc_kv) refers to fdb_kvdb.o(i.sector_iterator) for sector_iterator + fdb_kvdb.o(i.alloc_kv) refers to fdb_kvdb.o(i.sector_statistics_cb) for sector_statistics_cb + fdb_kvdb.o(i.alloc_kv) refers to fdb_kvdb.o(i.alloc_kv_cb) for alloc_kv_cb + fdb_kvdb.o(i.check_and_recovery_gc_cb) refers to fdb_kvdb.o(i.gc_collect) for gc_collect + fdb_kvdb.o(i.check_and_recovery_kv_cb) refers to fdb_kvdb.o(i.move_kv) for move_kv + fdb_kvdb.o(i.check_and_recovery_kv_cb) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.check_and_recovery_kv_cb) refers to fdb_kvdb.o(i.update_kv_cache) for update_kv_cache + fdb_kvdb.o(i.check_sec_hdr_cb) refers to fdb_kvdb.o(i.format_sector) for format_sector + fdb_kvdb.o(i.create_kv_blob) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.create_kv_blob) refers to memseta.o(.text) for __aeabi_memset + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.new_kv) for new_kv + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.update_sec_status) for update_sec_status + fdb_kvdb.o(i.create_kv_blob) refers to fdb_utils.o(i.fdb_calc_crc32) for fdb_calc_crc32 + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.write_kv_hdr) for write_kv_hdr + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.align_write) for align_write + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.update_sector_empty_addr_cache) for update_sector_empty_addr_cache + fdb_kvdb.o(i.create_kv_blob) refers to fdb_kvdb.o(i.update_kv_cache) for update_kv_cache + fdb_kvdb.o(i.create_kv_blob) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.del_kv) refers to memseta.o(.text) for __aeabi_memclr4 + fdb_kvdb.o(i.del_kv) refers to fdb_kvdb.o(i.find_kv) for find_kv + fdb_kvdb.o(i.del_kv) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.del_kv) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.del_kv) refers to fdb_kvdb.o(i.update_kv_cache) for update_kv_cache + fdb_kvdb.o(i.del_kv) refers to fdb_utils.o(i._fdb_read_status) for _fdb_read_status + fdb_kvdb.o(i.del_kv) refers to fdb_kvdb.o(i.get_sector_from_cache) for get_sector_from_cache + fdb_kvdb.o(i.do_gc) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.do_gc) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.do_gc) refers to fdb_kvdb.o(i.move_kv) for move_kv + fdb_kvdb.o(i.do_gc) refers to fdb_kvdb.o(i.get_next_kv_addr) for get_next_kv_addr + fdb_kvdb.o(i.do_gc) refers to fdb_kvdb.o(i.format_sector) for format_sector + fdb_kvdb.o(i.do_gc) refers to fdb_kvdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_kvdb.o(i.fdb_kv_del) refers to fdb_kvdb.o(i.del_kv) for del_kv + fdb_kvdb.o(i.fdb_kv_get) refers to fdb_utils.o(i.fdb_blob_make) for fdb_blob_make + fdb_kvdb.o(i.fdb_kv_get) refers to fdb_kvdb.o(i.fdb_kv_get_blob) for fdb_kv_get_blob + fdb_kvdb.o(i.fdb_kv_get) refers to fdb_kvdb.o(i.fdb_is_str) for fdb_is_str + fdb_kvdb.o(i.fdb_kv_get) refers to fdb_kvdb.o(.bss) for .bss + fdb_kvdb.o(i.fdb_kv_get_blob) refers to fdb_kvdb.o(i.get_kv) for get_kv + fdb_kvdb.o(i.fdb_kv_get_obj) refers to fdb_kvdb.o(i.find_kv) for find_kv + fdb_kvdb.o(i.fdb_kv_iterate) refers to fdb_kvdb.o(i.read_sector_info) for read_sector_info + fdb_kvdb.o(i.fdb_kv_iterate) refers to fdb_kvdb.o(i.get_next_kv_addr) for get_next_kv_addr + fdb_kvdb.o(i.fdb_kv_iterate) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.fdb_kv_iterate) refers to fdb_kvdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_kvdb.o(i.fdb_kv_print) refers to fdb_kvdb.o(i.kv_iterator) for kv_iterator + fdb_kvdb.o(i.fdb_kv_print) refers to fdb_kvdb.o(i.print_kv_cb) for print_kv_cb + fdb_kvdb.o(i.fdb_kv_set) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.fdb_kv_set) refers to fdb_utils.o(i.fdb_blob_make) for fdb_blob_make + fdb_kvdb.o(i.fdb_kv_set) refers to fdb_kvdb.o(i.fdb_kv_set_blob) for fdb_kv_set_blob + fdb_kvdb.o(i.fdb_kv_set_blob) refers to fdb_kvdb.o(i.set_kv) for set_kv + fdb_kvdb.o(i.fdb_kv_set_default) refers to fdb_kvdb.o(i.format_sector) for format_sector + fdb_kvdb.o(i.fdb_kv_set_default) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.fdb_kv_set_default) refers to fdb_kvdb.o(i.create_kv_blob) for create_kv_blob + fdb_kvdb.o(i.fdb_kvdb_check) refers to fdb_kvdb.o(i.read_sector_info) for read_sector_info + fdb_kvdb.o(i.fdb_kvdb_check) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.fdb_kvdb_check) refers to fdb_kvdb.o(i.get_next_kv_addr) for get_next_kv_addr + fdb_kvdb.o(i.fdb_kvdb_check) refers to fdb_kvdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_kvdb.o(i.fdb_kvdb_deinit) refers to fdb.o(i._fdb_deinit) for _fdb_deinit + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb.o(i._fdb_init_ex) for _fdb_init_ex + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb_kvdb.o(i.sector_iterator) for sector_iterator + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb_kvdb.o(i._fdb_kv_load) for _fdb_kv_load + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb_kvdb.o(i.kv_auto_update) for kv_auto_update + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb.o(i._fdb_init_finish) for _fdb_init_finish + fdb_kvdb.o(i.fdb_kvdb_init) refers to fdb_kvdb.o(i.check_oldest_addr_cb) for check_oldest_addr_cb + fdb_kvdb.o(i.find_kv) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.find_kv) refers to fdb_kvdb.o(i.get_kv_from_cache) for get_kv_from_cache + fdb_kvdb.o(i.find_kv) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.find_kv) refers to fdb_kvdb.o(i.find_kv_no_cache) for find_kv_no_cache + fdb_kvdb.o(i.find_kv) refers to fdb_kvdb.o(i.update_kv_cache) for update_kv_cache + fdb_kvdb.o(i.find_kv_cb) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.find_kv_cb) refers to strncmp.o(.text) for strncmp + fdb_kvdb.o(i.find_kv_no_cache) refers to fdb_kvdb.o(i.kv_iterator) for kv_iterator + fdb_kvdb.o(i.find_kv_no_cache) refers to fdb_kvdb.o(i.find_kv_cb) for find_kv_cb + fdb_kvdb.o(i.find_next_kv_addr) refers to fdb_kvdb.o(i.get_sector_from_cache) for get_sector_from_cache + fdb_kvdb.o(i.find_next_kv_addr) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_flash_erase) for _fdb_flash_erase + fdb_kvdb.o(i.format_sector) refers to memseta.o(.text) for __aeabi_memset + fdb_kvdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_set_status) for _fdb_set_status + fdb_kvdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_kvdb.o(i.format_sector) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_kvdb.o(i.format_sector) refers to fdb_kvdb.o(i.update_sector_cache) for update_sector_cache + fdb_kvdb.o(i.format_sector) refers to fdb_kvdb.o(.constdata) for .constdata + fdb_kvdb.o(i.gc_collect) refers to fdb_kvdb.o(i.gc_collect_by_free_size) for gc_collect_by_free_size + fdb_kvdb.o(i.gc_collect_by_free_size) refers to fdb_kvdb.o(i.sector_iterator) for sector_iterator + fdb_kvdb.o(i.gc_collect_by_free_size) refers to fdb_kvdb.o(i.gc_check_cb) for gc_check_cb + fdb_kvdb.o(i.gc_collect_by_free_size) refers to fdb_kvdb.o(i.do_gc) for do_gc + fdb_kvdb.o(i.get_kv) refers to fdb_kvdb.o(i.find_kv) for find_kv + fdb_kvdb.o(i.get_kv) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.get_kv_from_cache) refers to fdb_utils.o(i.fdb_calc_crc32) for fdb_calc_crc32 + fdb_kvdb.o(i.get_kv_from_cache) refers to memseta.o(.text) for __aeabi_memclr4 + fdb_kvdb.o(i.get_kv_from_cache) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.get_kv_from_cache) refers to strncmp.o(.text) for strncmp + fdb_kvdb.o(i.get_next_kv_addr) refers to fdb_kvdb.o(i.find_next_kv_addr) for find_next_kv_addr + fdb_kvdb.o(i.kv_auto_update) refers to fdb_kvdb.o(i.get_kv) for get_kv + fdb_kvdb.o(i.kv_auto_update) refers to fdb_kvdb.o(i.find_kv) for find_kv + fdb_kvdb.o(i.kv_auto_update) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.kv_auto_update) refers to fdb_kvdb.o(i.create_kv_blob) for create_kv_blob + fdb_kvdb.o(i.kv_auto_update) refers to fdb_kvdb.o(i.set_kv) for set_kv + fdb_kvdb.o(i.kv_iterator) refers to fdb_kvdb.o(i.read_sector_info) for read_sector_info + fdb_kvdb.o(i.kv_iterator) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.kv_iterator) refers to fdb_kvdb.o(i.get_next_kv_addr) for get_next_kv_addr + fdb_kvdb.o(i.kv_iterator) refers to fdb_kvdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.del_kv) for del_kv + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.alloc_kv) for alloc_kv + fdb_kvdb.o(i.move_kv) refers to memseta.o(.text) for __aeabi_memclr4 + fdb_kvdb.o(i.move_kv) refers to strncpy.o(.text) for strncpy + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.find_kv_no_cache) for find_kv_no_cache + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.update_sec_status) for update_sec_status + fdb_kvdb.o(i.move_kv) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.move_kv) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.move_kv) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.update_sector_empty_addr_cache) for update_sector_empty_addr_cache + fdb_kvdb.o(i.move_kv) refers to fdb_kvdb.o(i.update_kv_cache) for update_kv_cache + fdb_kvdb.o(i.new_kv) refers to fdb_kvdb.o(i.alloc_kv) for alloc_kv + fdb_kvdb.o(i.new_kv) refers to fdb_kvdb.o(i.gc_collect_by_free_size) for gc_collect_by_free_size + fdb_kvdb.o(i.new_kv_ex) refers to fdb_kvdb.o(i.new_kv) for new_kv + fdb_kvdb.o(i.print_kv_cb) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.print_kv_cb) refers to fdb_kvdb.o(i.fdb_is_str) for fdb_is_str + fdb_kvdb.o(i.read_kv) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.read_kv) refers to fdb_utils.o(i._fdb_get_status) for _fdb_get_status + fdb_kvdb.o(i.read_kv) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.read_kv) refers to fdb_utils.o(i.fdb_calc_crc32) for fdb_calc_crc32 + fdb_kvdb.o(i.read_sector_info) refers to fdb_kvdb.o(i.get_sector_from_cache) for get_sector_from_cache + fdb_kvdb.o(i.read_sector_info) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_kvdb.o(i.read_sector_info) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_kvdb.o(i.read_sector_info) refers to fdb_utils.o(i._fdb_get_status) for _fdb_get_status + fdb_kvdb.o(i.read_sector_info) refers to fdb_kvdb.o(i.read_kv) for read_kv + fdb_kvdb.o(i.read_sector_info) refers to fdb_kvdb.o(i.get_next_kv_addr) for get_next_kv_addr + fdb_kvdb.o(i.read_sector_info) refers to fdb_utils.o(i._fdb_continue_ff_addr) for _fdb_continue_ff_addr + fdb_kvdb.o(i.read_sector_info) refers to fdb_kvdb.o(i.update_sector_cache) for update_sector_cache + fdb_kvdb.o(i.sector_iterator) refers to fdb_kvdb.o(i.read_sector_info) for read_sector_info + fdb_kvdb.o(i.sector_iterator) refers to fdb_kvdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_kvdb.o(i.set_kv) refers to strlen.o(.text) for strlen + fdb_kvdb.o(i.set_kv) refers to fdb_kvdb.o(i.new_kv_ex) for new_kv_ex + fdb_kvdb.o(i.set_kv) refers to fdb_kvdb.o(i.find_kv) for find_kv + fdb_kvdb.o(i.set_kv) refers to fdb_kvdb.o(i.del_kv) for del_kv + fdb_kvdb.o(i.set_kv) refers to fdb_kvdb.o(i.create_kv_blob) for create_kv_blob + fdb_kvdb.o(i.set_kv) refers to fdb_kvdb.o(i.gc_collect_by_free_size) for gc_collect_by_free_size + fdb_kvdb.o(i.update_kv_cache) refers to fdb_utils.o(i.fdb_calc_crc32) for fdb_calc_crc32 + fdb_kvdb.o(i.update_sec_status) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.update_sec_status) refers to fdb_kvdb.o(i.update_sector_status_store_cache) for update_sector_status_store_cache + fdb_kvdb.o(i.update_sector_cache) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_kvdb.o(i.update_sector_empty_addr_cache) refers to fdb_kvdb.o(i.get_sector_from_cache) for get_sector_from_cache + fdb_kvdb.o(i.update_sector_status_store_cache) refers to fdb_kvdb.o(i.get_sector_from_cache) for get_sector_from_cache + fdb_kvdb.o(i.write_kv_hdr) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_kvdb.o(i.write_kv_hdr) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_tsdb.o(i.check_sec_hdr_cb) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_tsdb.o(i.fdb_tsdb_deinit) refers to fdb.o(i._fdb_deinit) for _fdb_deinit + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb.o(i._fdb_init_ex) for _fdb_init_ex + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb_tsdb.o(i.sector_iterator) for sector_iterator + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb_tsdb.o(i.tsl_format_all) for tsl_format_all + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb.o(i._fdb_init_finish) for _fdb_init_finish + fdb_tsdb.o(i.fdb_tsdb_init) refers to fdb_tsdb.o(i.check_sec_hdr_cb) for check_sec_hdr_cb + fdb_tsdb.o(i.fdb_tsl_append) refers to fdb_tsdb.o(i.tsl_append) for tsl_append + fdb_tsdb.o(i.fdb_tsl_append_with_ts) refers to fdb_tsdb.o(i.tsl_append) for tsl_append + fdb_tsdb.o(i.fdb_tsl_clean) refers to fdb_tsdb.o(i.tsl_format_all) for tsl_format_all + fdb_tsdb.o(i.fdb_tsl_iter) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.fdb_tsl_iter) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_tsdb.o(i.fdb_tsl_iter) refers to fdb_tsdb.o(i.read_tsl) for read_tsl + fdb_tsdb.o(i.fdb_tsl_iter) refers to fdb_tsdb.o(i.get_next_tsl_addr) for get_next_tsl_addr + fdb_tsdb.o(i.fdb_tsl_iter) refers to fdb_tsdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.search_start_tsl_addr) for search_start_tsl_addr + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.read_tsl) for read_tsl + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.get_next_tsl_addr) for get_next_tsl_addr + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.get_last_sector_addr) for get_last_sector_addr + fdb_tsdb.o(i.fdb_tsl_iter_by_time) refers to fdb_tsdb.o(i.get_last_tsl_addr) for get_last_tsl_addr + fdb_tsdb.o(i.fdb_tsl_iter_reverse) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.fdb_tsl_iter_reverse) refers to fdb_tsdb.o(i.get_last_sector_addr) for get_last_sector_addr + fdb_tsdb.o(i.fdb_tsl_iter_reverse) refers to memcpya.o(.text) for __aeabi_memcpy4 + fdb_tsdb.o(i.fdb_tsl_iter_reverse) refers to fdb_tsdb.o(i.read_tsl) for read_tsl + fdb_tsdb.o(i.fdb_tsl_iter_reverse) refers to fdb_tsdb.o(i.get_last_tsl_addr) for get_last_tsl_addr + fdb_tsdb.o(i.fdb_tsl_query_count) refers to fdb_tsdb.o(i.fdb_tsl_iter_by_time) for fdb_tsl_iter_by_time + fdb_tsdb.o(i.fdb_tsl_query_count) refers to fdb_tsdb.o(i.query_count_cb) for query_count_cb + fdb_tsdb.o(i.fdb_tsl_set_status) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_tsdb.o(i.format_all_cb) refers to fdb_tsdb.o(i.format_sector) for format_sector + fdb_tsdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_flash_erase) for _fdb_flash_erase + fdb_tsdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_tsdb.o(i.format_sector) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_tsdb.o(i.read_sector_info) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_tsdb.o(i.read_sector_info) refers to fdb_utils.o(i._fdb_get_status) for _fdb_get_status + fdb_tsdb.o(i.read_sector_info) refers to fdb_tsdb.o(i.read_tsl) for read_tsl + fdb_tsdb.o(i.read_tsl) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_tsdb.o(i.read_tsl) refers to fdb_utils.o(i._fdb_get_status) for _fdb_get_status + fdb_tsdb.o(i.search_start_tsl_addr) refers to fdb_tsdb.o(i.read_tsl) for read_tsl + fdb_tsdb.o(i.sector_iterator) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.sector_iterator) refers to fdb_tsdb.o(i.get_next_sector_addr) for get_next_sector_addr + fdb_tsdb.o(i.tsl_append) refers to fdb_tsdb.o(i.update_sec_status) for update_sec_status + fdb_tsdb.o(i.tsl_append) refers to fdb_tsdb.o(i.write_tsl) for write_tsl + fdb_tsdb.o(i.tsl_format_all) refers to fdb_tsdb.o(i.sector_iterator) for sector_iterator + fdb_tsdb.o(i.tsl_format_all) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.tsl_format_all) refers to fdb_tsdb.o(i.format_all_cb) for format_all_cb + fdb_tsdb.o(i.update_sec_status) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_tsdb.o(i.update_sec_status) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_tsdb.o(i.update_sec_status) refers to fdb_tsdb.o(i.read_sector_info) for read_sector_info + fdb_tsdb.o(i.update_sec_status) refers to fdb_tsdb.o(i.format_sector) for format_sector + fdb_tsdb.o(i.write_tsl) refers to fdb_utils.o(i._fdb_write_status) for _fdb_write_status + fdb_tsdb.o(i.write_tsl) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_utils.o(i._fdb_continue_ff_addr) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_utils.o(i._fdb_flash_erase) refers to fal_partition.o(i.fal_partition_erase) for fal_partition_erase + fdb_utils.o(i._fdb_flash_read) refers to fal_partition.o(i.fal_partition_read) for fal_partition_read + fdb_utils.o(i._fdb_flash_write) refers to fal_partition.o(i.fal_partition_write) for fal_partition_write + fdb_utils.o(i._fdb_read_status) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_utils.o(i._fdb_read_status) refers to fdb_utils.o(i._fdb_get_status) for _fdb_get_status + fdb_utils.o(i._fdb_set_status) refers to memseta.o(.text) for __aeabi_memset + fdb_utils.o(i._fdb_write_status) refers to fdb_utils.o(i._fdb_set_status) for _fdb_set_status + fdb_utils.o(i._fdb_write_status) refers to fdb_utils.o(i._fdb_flash_write) for _fdb_flash_write + fdb_utils.o(i.fdb_blob_read) refers to fdb_utils.o(i._fdb_flash_read) for _fdb_flash_read + fdb_utils.o(i.fdb_calc_crc32) refers to fdb_utils.o(.constdata) for .constdata + fal_eeprom95_port.o(i.read1) refers to eeprom_m95.o(i.eeprom_m95_read) for eeprom_m95_read + fal_eeprom95_port.o(i.read1) refers to fal_eeprom95_port.o(.data) for .data + fal_eeprom95_port.o(i.read2) refers to eeprom_m95.o(i.eeprom_m95_read) for eeprom_m95_read + fal_eeprom95_port.o(i.read2) refers to fal_eeprom95_port.o(.data) for .data + fal_eeprom95_port.o(i.write1) refers to eeprom_m95.o(i.eeprom_m95_write) for eeprom_m95_write + fal_eeprom95_port.o(i.write1) refers to fal_eeprom95_port.o(.data) for .data + fal_eeprom95_port.o(i.write2) refers to eeprom_m95.o(i.eeprom_m95_write) for eeprom_m95_write + fal_eeprom95_port.o(i.write2) refers to fal_eeprom95_port.o(.data) for .data + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.init) for init + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.read1) for read1 + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.write1) for write1 + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.erase) for erase + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.read2) for read2 + fal_eeprom95_port.o(.data) refers to fal_eeprom95_port.o(i.write2) for write2 + fal_eeprom24_port.o(i.read) refers to eeprom_fm24.o(i.eeprom_fm24_read) for eeprom_fm24_read + fal_eeprom24_port.o(i.read) refers to fal_eeprom24_port.o(.data) for .data + fal_eeprom24_port.o(i.write) refers to eeprom_fm24.o(i.eeprom_fm24_write) for eeprom_fm24_write + fal_eeprom24_port.o(i.write) refers to fal_eeprom24_port.o(.data) for .data + fal_eeprom24_port.o(.data) refers to fal_eeprom24_port.o(i.init) for init + fal_eeprom24_port.o(.data) refers to fal_eeprom24_port.o(i.read) for read + fal_eeprom24_port.o(.data) refers to fal_eeprom24_port.o(i.write) for write + fal_eeprom24_port.o(.data) refers to fal_eeprom24_port.o(i.erase) for erase + fal.o(i.fal_init) refers to fal_flash.o(i.fal_flash_init) for fal_flash_init + fal.o(i.fal_init) refers to fal_partition.o(i.fal_partition_init) for fal_partition_init + fal.o(i.fal_init) refers to fal.o(.data) for .data + fal.o(i.fal_init_check) refers to fal.o(.data) for .data + fal_flash.o(i.fal_flash_device_find) refers to strncmp.o(.text) for strncmp + fal_flash.o(i.fal_flash_device_find) refers to fal_flash.o(.constdata) for .constdata + fal_flash.o(i.fal_flash_init) refers to fal_flash.o(.data) for .data + fal_flash.o(i.fal_flash_init) refers to fal_flash.o(.constdata) for .constdata + fal_flash.o(.constdata) refers to fal_eeprom95_port.o(.data) for eeprom_m95_1 + fal_flash.o(.constdata) refers to fal_eeprom24_port.o(.data) for eeprom_fm24 + fal_partition.o(i.check_and_update_part_cache) refers to fal_flash.o(i.fal_flash_device_find) for fal_flash_device_find + fal_partition.o(i.check_and_update_part_cache) refers to fal_partition.o(.bss) for .bss + fal_partition.o(i.check_and_update_part_cache) refers to fal_partition.o(.data) for .data + fal_partition.o(i.fal_get_partition_table) refers to fal_partition.o(.data) for .data + fal_partition.o(i.fal_partition_erase) refers to fal_partition.o(i.flash_device_find_by_part) for flash_device_find_by_part + fal_partition.o(i.fal_partition_erase_all) refers to fal_partition.o(i.fal_partition_erase) for fal_partition_erase + fal_partition.o(i.fal_partition_find) refers to strcmp.o(.text) for strcmp + fal_partition.o(i.fal_partition_find) refers to fal_partition.o(.data) for .data + fal_partition.o(i.fal_partition_init) refers to fal_partition.o(i.check_and_update_part_cache) for check_and_update_part_cache + fal_partition.o(i.fal_partition_init) refers to fal_partition.o(.data) for .data + fal_partition.o(i.fal_partition_init) refers to fal_partition.o(.constdata) for .constdata + fal_partition.o(i.fal_partition_read) refers to fal_partition.o(i.flash_device_find_by_part) for flash_device_find_by_part + fal_partition.o(i.fal_partition_write) refers to fal_partition.o(i.flash_device_find_by_part) for flash_device_find_by_part + fal_partition.o(i.fal_set_partition_table_temp) refers to fal_partition.o(i.check_and_update_part_cache) for check_and_update_part_cache + fal_partition.o(i.fal_set_partition_table_temp) refers to fal_partition.o(.data) for .data + fal_partition.o(i.fal_show_part_table) refers to strlen.o(.text) for strlen + fal_partition.o(i.fal_show_part_table) refers to fal_partition.o(.data) for .data + fal_partition.o(i.flash_device_find_by_part) refers to fal_partition.o(.data) for .data + fal_partition.o(i.flash_device_find_by_part) refers to fal_partition.o(.bss) for .bss + pid.o(i.pid_constructor) refers to pid_hd.o(i.pid_hd_constructor) for pid_hd_constructor + pid_hd.o(i._pid_position) refers to f2d.o(.text) for __aeabi_f2d + pid_hd.o(i._pid_position) refers to cfrcmple.o(.text) for __aeabi_cfrcmple + pid_hd.o(i._pid_position) refers to fadd.o(.text) for __aeabi_fadd + pid_hd.o(i._pid_position) refers to cfcmple.o(.text) for __aeabi_cfcmple + pid_hd.o(i._pid_position) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + pid_hd.o(i._pid_position) refers to cdcmple.o(.text) for __aeabi_cdcmple + pid_hd.o(i._pid_position) refers to fmul.o(.text) for __aeabi_fmul + pid_hd.o(i._pid_position) refers to pid_hd.o(.data) for .data + pid_hd.o(i.pid_hd_constructor) refers to pid_hd.o(i._set_ctrl_prm_position) for _set_ctrl_prm_position + pid_hd.o(i.pid_hd_constructor) refers to pid_hd.o(i._set_out_prm_position) for _set_out_prm_position + pid_hd.o(i.pid_hd_constructor) refers to pid_hd.o(i._pid_position) for _pid_position + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload + entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk + rand.o(.text) refers to rand.o(.data) for .data + printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0fprintf$bare) refers to fputc.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0printf$bare) refers to fputc.o(i.fputc) for fputc + printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc + printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vfprintf$bare) refers to fputc.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vprintf$bare) refers to fputc.o(i.fputc) for fputc + printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core + printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc + printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0fprintf$0) refers to fputc.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0printf$0) refers to fputc.o(i.fputc) for fputc + printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc + printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vfprintf$0) refers to fputc.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vprintf$0) refers to fputc.o(i.fputc) for fputc + printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core + printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc + printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0fprintf$1) refers to fputc.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0printf$1) refers to fputc.o(i.fputc) for fputc + printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vfprintf$1) refers to fputc.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vprintf$1) refers to fputc.o(i.fputc) for fputc + printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core + printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc + printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0fprintf$2) refers to fputc.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0printf$2) refers to fputc.o(i.fputc) for fputc + printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc + printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vfprintf$2) refers to fputc.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vprintf$2) refers to fputc.o(i.fputc) for fputc + printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core + printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc + printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0fprintf$3) refers to fputc.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0printf$3) refers to fputc.o(i.fputc) for fputc + printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vfprintf$3) refers to fputc.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vprintf$3) refers to fputc.o(i.fputc) for fputc + printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core + printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc + printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0fprintf$4) refers to fputc.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0printf$4) refers to fputc.o(i.fputc) for fputc + printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vfprintf$4) refers to fputc.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vprintf$4) refers to fputc.o(i.fputc) for fputc + printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core + printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc + printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0fprintf$5) refers to fputc.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0printf$5) refers to fputc.o(i.fputc) for fputc + printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vfprintf$5) refers to fputc.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vprintf$5) refers to fputc.o(i.fputc) for fputc + printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core + printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc + printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0fprintf$6) refers to fputc.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0printf$6) refers to fputc.o(i.fputc) for fputc + printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vfprintf$6) refers to fputc.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vprintf$6) refers to fputc.o(i.fputc) for fputc + printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core + printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc + printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding + printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding + printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0fprintf$7) refers to fputc.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0printf$7) refers to fputc.o(i.fputc) for fputc + printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vfprintf$7) refers to fputc.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vprintf$7) refers to fputc.o(i.fputc) for fputc + printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core + printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc + printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding + printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding + printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0fprintf$8) refers to fputc.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0printf$8) refers to fputc.o(i.fputc) for fputc + printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vfprintf$8) refers to fputc.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vprintf$8) refers to fputc.o(i.fputc) for fputc + printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core + printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc + printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding + printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0fprintf) refers to fputc.o(i.fputc) for fputc + printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0printf) refers to fputc.o(i.fputc) for fputc + printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vfprintf) refers to fputc.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vprintf) refers to fputc.o(i.fputc) for fputc + printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout + printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc + printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core + printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc + printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul + printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv + printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple + printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd + printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz + printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding + printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod + printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding + printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits + printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod + printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp + printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp + malloc.o(i.free) refers to mvars.o(.data) for __microlib_freelist + malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist_initialised + malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist + malloc.o(i.malloc) refers to startup_stm32l476xx.o(HEAP) for __heap_base + mallocr.o(i.__free$realloc) refers to mvars.o(.data) for __microlib_freelist + mallocr.o(i.__malloc$realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc + mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised + mallocr.o(i.__malloc$realloc) refers to startup_stm32l476xx.o(HEAP) for __heap_base + mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist + mallocr.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy + mallocr.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist + mallocr.o(i.realloc) refers to mallocr.o(i.__free$realloc) for __free$realloc + mallocr.o(i.realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc + mallocr.o(i.realloc) refers to mallocr.o(i.__malloc$realloc) for __malloc$realloc + mallocr.o(i.realloc) refers to mvars.o(.data) for __microlib_freelist + malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist_initialised + malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist + malloca.o(i.__aligned_malloc) refers to startup_stm32l476xx.o(HEAP) for __heap_base + malloca.o(i.__free$memalign) refers to mvars.o(.data) for __microlib_freelist + malloca.o(i.__malloc$memalign) refers to malloca.o(i.__aligned_malloc) for __aligned_malloc + mallocra.o(i.__aligned_malloc$realloc) refers to mallocra.o(i.internal_alloc) for internal_alloc + mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised + mallocra.o(i.__aligned_malloc$realloc) refers to startup_stm32l476xx.o(HEAP) for __heap_base + mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist + mallocra.o(i.__free$realloc$memalign) refers to mvars.o(.data) for __microlib_freelist + mallocra.o(i.__malloc$realloc$memalign) refers to mallocra.o(i.__aligned_malloc$realloc) for __aligned_malloc$realloc + mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__free$realloc$memalign) for __free$realloc$memalign + mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.internal_alloc) for internal_alloc + mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__malloc$realloc$memalign) for __malloc$realloc$memalign + mallocra.o(i.__realloc$memalign) refers to mvars.o(.data) for __microlib_freelist + mallocra.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy + mallocra.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist + fadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fadd.o(.text) refers to fepilogue.o(.text) for _float_epilogue + fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fdiv.o(.text) refers to fepilogue.o(.text) for _float_round + fscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl + dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr + dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue + dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue + ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ddiv.o(.text) refers to depilogue.o(.text) for _double_round + dscalb.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + fflti.o(.text) refers to fepilogue.o(.text) for _float_epilogue + ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue + dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue + dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue + ffixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + dfixui.o(.text) refers to llushr.o(.text) for __aeabi_llsr + f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cdrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + d2f.o(.text) refers to fepilogue.o(.text) for _float_round + cfcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + cfrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp + entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000 + entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32l476xx.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32l476xx.o(STACK) for __initial_sp + entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main + entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload + entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main + entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main + fputc.o(i.fputc) refers (Special) to iusesemip.o(.text) for __I$use$semihosting$fputc + fputc.o(i.fputc) refers (Special) to semi.o(.text) for __semihosting_library_function + uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr + uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl + depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr + dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl + init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload + + +============================================================================== + +Removing Unused input sections from the image. + + Removing main.o(.rev16_text), (4 bytes). + Removing main.o(.revsh_text), (4 bytes). + Removing main.o(.rrx_text), (6 bytes). + Removing main.o(i.Error_Handler), (4 bytes). + Removing gpio.o(.rev16_text), (4 bytes). + Removing gpio.o(.revsh_text), (4 bytes). + Removing gpio.o(.rrx_text), (6 bytes). + Removing adc.o(.rev16_text), (4 bytes). + Removing adc.o(.revsh_text), (4 bytes). + Removing adc.o(.rrx_text), (6 bytes). + Removing dac.o(.rev16_text), (4 bytes). + Removing dac.o(.revsh_text), (4 bytes). + Removing dac.o(.rrx_text), (6 bytes). + Removing dma.o(.rev16_text), (4 bytes). + Removing dma.o(.revsh_text), (4 bytes). + Removing dma.o(.rrx_text), (6 bytes). + Removing i2c.o(.rev16_text), (4 bytes). + Removing i2c.o(.revsh_text), (4 bytes). + Removing i2c.o(.rrx_text), (6 bytes). + Removing spi.o(.rev16_text), (4 bytes). + Removing spi.o(.revsh_text), (4 bytes). + Removing spi.o(.rrx_text), (6 bytes). + Removing tim.o(.rev16_text), (4 bytes). + Removing tim.o(.revsh_text), (4 bytes). + Removing tim.o(.rrx_text), (6 bytes). + Removing usart.o(.rev16_text), (4 bytes). + Removing usart.o(.revsh_text), (4 bytes). + Removing usart.o(.rrx_text), (6 bytes). + Removing stm32l4xx_it.o(.rev16_text), (4 bytes). + Removing stm32l4xx_it.o(.revsh_text), (4 bytes). + Removing stm32l4xx_it.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_utils.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_utils.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_utils.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSE), (108 bytes). + Removing stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_HSI), (84 bytes). + Removing stm32l4xx_ll_utils.o(i.LL_PLL_ConfigSystemClock_MSI), (172 bytes). + Removing stm32l4xx_ll_utils.o(i.LL_RCC_PLL_ConfigDomain_SYS), (32 bytes). + Removing stm32l4xx_ll_utils.o(i.LL_SetFlashLatency), (184 bytes). + Removing stm32l4xx_ll_utils.o(i.UTILS_EnablePLLAndSwitchSystem), (160 bytes). + Removing stm32l4xx_ll_utils.o(i.UTILS_GetPLLOutputFrequency), (34 bytes). + Removing stm32l4xx_ll_utils.o(i.UTILS_PLL_IsBusy), (44 bytes). + Removing stm32l4xx_ll_exti.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_exti.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_exti.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_exti.o(i.LL_EXTI_DeInit), (76 bytes). + Removing stm32l4xx_ll_exti.o(i.LL_EXTI_Init), (360 bytes). + Removing stm32l4xx_ll_exti.o(i.LL_EXTI_StructInit), (16 bytes). + Removing stm32l4xx_ll_gpio.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_gpio.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_gpio.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_gpio.o(i.LL_AHB2_GRP1_ForceReset), (16 bytes). + Removing stm32l4xx_ll_gpio.o(i.LL_AHB2_GRP1_ReleaseReset), (16 bytes). + Removing stm32l4xx_ll_gpio.o(i.LL_GPIO_DeInit), (200 bytes). + Removing stm32l4xx_ll_gpio.o(i.LL_GPIO_StructInit), (22 bytes). + Removing stm32l4xx_ll_adc.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_adc.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_adc.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_CommonDeInit), (28 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_CommonStructInit), (16 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_DeInit), (440 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_INJ_Init), (72 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_INJ_StructInit), (12 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_REG_StructInit), (20 bytes). + Removing stm32l4xx_ll_adc.o(i.LL_ADC_StructInit), (10 bytes). + Removing stm32l4xx_ll_dma.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_dma.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_dma.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_dma.o(i.LL_DMA_DeInit), (384 bytes). + Removing stm32l4xx_ll_dma.o(i.LL_DMA_Init), (96 bytes). + Removing stm32l4xx_ll_dma.o(i.LL_DMA_SetPeriphRequest), (30 bytes). + Removing stm32l4xx_ll_dma.o(i.LL_DMA_StructInit), (26 bytes). + Removing stm32l4xx_ll_dma.o(.constdata), (7 bytes). + Removing stm32l4xx_ll_dac.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_dac.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_dac.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_dac.o(i.LL_DAC_DeInit), (28 bytes). + Removing stm32l4xx_ll_dac.o(i.LL_DAC_StructInit), (18 bytes). + Removing stm32l4xx_ll_i2c.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_i2c.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_i2c.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_i2c.o(i.LL_I2C_DeInit), (100 bytes). + Removing stm32l4xx_ll_i2c.o(i.LL_I2C_StructInit), (22 bytes). + Removing stm32l4xx_ll_spi.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_spi.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_spi.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_spi.o(i.LL_SPI_DeInit), (96 bytes). + Removing stm32l4xx_ll_spi.o(i.LL_SPI_StructInit), (30 bytes). + Removing stm32l4xx_ll_pwr.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_pwr.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_pwr.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_pwr.o(i.LL_PWR_DeInit), (28 bytes). + Removing stm32l4xx_ll_tim.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_tim.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_tim.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_tim.o(i.IC1Config), (50 bytes). + Removing stm32l4xx_ll_tim.o(i.IC2Config), (52 bytes). + Removing stm32l4xx_ll_tim.o(i.IC3Config), (52 bytes). + Removing stm32l4xx_ll_tim.o(i.IC4Config), (52 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_APB1_GRP1_ForceReset), (16 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_APB1_GRP1_ReleaseReset), (16 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_APB2_GRP1_ForceReset), (16 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_APB2_GRP1_ReleaseReset), (16 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_BDTR_Init), (104 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_BDTR_StructInit), (26 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_DeInit), (288 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_ENCODER_Init), (100 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_ENCODER_StructInit), (28 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_HALLSENSOR_Init), (104 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_HALLSENSOR_StructInit), (12 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_IC_Init), (58 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_IC_StructInit), (16 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_OC_StructInit), (20 bytes). + Removing stm32l4xx_ll_tim.o(i.LL_TIM_StructInit), (16 bytes). + Removing stm32l4xx_ll_usart.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_usart.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_usart.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_APB1_GRP1_ForceReset), (16 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_APB1_GRP1_ReleaseReset), (16 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_USART_ClockInit), (60 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_USART_ClockStructInit), (12 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_USART_DeInit), (156 bytes). + Removing stm32l4xx_ll_usart.o(i.LL_USART_StructInit), (24 bytes). + Removing stm32l4xx_ll_rcc.o(.rev16_text), (4 bytes). + Removing stm32l4xx_ll_rcc.o(.revsh_text), (4 bytes). + Removing stm32l4xx_ll_rcc.o(.rrx_text), (6 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_DeInit), (148 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetADCClockFreq), (104 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetDFSDMClockFreq), (52 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockFreq), (208 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetI2CClockSource), (32 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPTIMClockFreq), (216 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetLPUARTClockFreq), (92 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetRNGClockFreq), (160 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetSAIClockFreq), (256 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetSDMMCClockFreq), (160 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetSWPMIClockFreq), (60 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetSystemClocksFreq), (32 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSBClockFreq), (160 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsReady), (16 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_PLLSAI1_IsReady), (16 bytes). + Removing stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_IsReady), (16 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_48M), (192 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_ADC), (192 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLLSAI1_GetFreqDomain_SAI), (196 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_ADC), (192 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLLSAI2_GetFreqDomain_SAI), (196 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_48M), (192 bytes). + Removing stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SAI), (196 bytes). + Removing system_stm32l4xx.o(.rev16_text), (4 bytes). + Removing system_stm32l4xx.o(.revsh_text), (4 bytes). + Removing system_stm32l4xx.o(.rrx_text), (6 bytes). + Removing system_stm32l4xx.o(i.SystemCoreClockUpdate), (172 bytes). + Removing app.o(.rev16_text), (4 bytes). + Removing app.o(.revsh_text), (4 bytes). + Removing app.o(.rrx_text), (6 bytes). + Removing app.o(.data), (4 bytes). + Removing app.o(.data), (1 bytes). + Removing app.o(.data), (1 bytes). + Removing app.o(.data), (4 bytes). + Removing app_hart.o(.rev16_text), (4 bytes). + Removing app_hart.o(.revsh_text), (4 bytes). + Removing app_hart.o(.rrx_text), (6 bytes). + Removing app_hart.o(i.app_hart_is_idle), (12 bytes). + Removing app_hart.o(.bss), (68 bytes). + Removing app_flow.o(.rev16_text), (4 bytes). + Removing app_flow.o(.revsh_text), (4 bytes). + Removing app_flow.o(.rrx_text), (6 bytes). + Removing key.o(.rev16_text), (4 bytes). + Removing key.o(.revsh_text), (4 bytes). + Removing key.o(.rrx_text), (6 bytes). + Removing key.o(i.get_key_uuid), (84 bytes). + Removing key.o(i.key_long_press_flag), (12 bytes). + Removing convert.o(.rev16_text), (4 bytes). + Removing convert.o(.revsh_text), (4 bytes). + Removing convert.o(.rrx_text), (6 bytes). + Removing convert.o(i.adjust_target_direction), (56 bytes). + Removing convert.o(i.pressure_kpa2unit), (56 bytes). + Removing convert.o(i.temperature_c2f), (24 bytes). + Removing params.o(.rev16_text), (4 bytes). + Removing params.o(.revsh_text), (4 bytes). + Removing params.o(.rrx_text), (6 bytes). + Removing params.o(.constdata), (8 bytes). + Removing params.o(.constdata), (12 bytes). + Removing mode.o(.rev16_text), (4 bytes). + Removing mode.o(.revsh_text), (4 bytes). + Removing mode.o(.rrx_text), (6 bytes). + Removing mode.o(i.mode_adjust_data_get), (80 bytes). + Removing mode.o(i.mode_adjust_start), (36 bytes). + Removing mode.o(i.mode_adjust_step_count), (40 bytes). + Removing mode.o(i.mode_adjust_step_current), (80 bytes). + Removing mode.o(i.mode_adjust_stop), (36 bytes). + Removing mode.o(i.mode_control_idel), (40 bytes). + Removing pdctrl.o(.rev16_text), (4 bytes). + Removing pdctrl.o(.revsh_text), (4 bytes). + Removing pdctrl.o(.rrx_text), (6 bytes). + Removing pdctrl.o(i.get_pdctrl_mode), (12 bytes). + Removing pdctrl.o(i.pdctrl_get), (8 bytes). + Removing pdctrl.o(i.pdctrl_pwm_duty_convert_ccr), (40 bytes). + Removing at_hc24.o(.rev16_text), (4 bytes). + Removing at_hc24.o(.revsh_text), (4 bytes). + Removing at_hc24.o(.rrx_text), (6 bytes). + Removing mode_dac.o(.rev16_text), (4 bytes). + Removing mode_dac.o(.revsh_text), (4 bytes). + Removing mode_dac.o(.rrx_text), (6 bytes). + Removing mode_dac.o(i.dac_process_state_set), (20 bytes). + Removing mode_dac.o(i.mode_dac_init), (80 bytes). + Removing mode_pwm.o(.rev16_text), (4 bytes). + Removing mode_pwm.o(.revsh_text), (4 bytes). + Removing mode_pwm.o(.rrx_text), (6 bytes). + Removing mode_pwm.o(i.mode_pwm_init), (104 bytes). + Removing fal_execution.o(.rev16_text), (4 bytes). + Removing fal_execution.o(.revsh_text), (4 bytes). + Removing fal_execution.o(.rrx_text), (6 bytes). + Removing fal_execution.o(i.fal_execution_clear), (60 bytes). + Removing fal_execution.o(i.fal_execution_data_storage_check), (144 bytes). + Removing fal_execution.o(i.fal_execution_inspection), (220 bytes). + Removing fal_execution.o(i.fal_execution_status_get), (112 bytes). + Removing mode_pwmp_hd.o(.rev16_text), (4 bytes). + Removing mode_pwmp_hd.o(.revsh_text), (4 bytes). + Removing mode_pwmp_hd.o(.rrx_text), (6 bytes). + Removing mode_pwmp_hd.o(i.pwmp_hd_algorithm_calibrated_status), (28 bytes). + Removing mode_pwmp_hd.o(i.pwmp_hd_process_adjust_result_get), (16 bytes). + Removing mode_pwmp_hd.o(i.pwmp_hd_process_adjust_state_get), (12 bytes). + Removing mode_pwmp_hd.o(i.pwmp_hd_process_idel), (24 bytes). + Removing mode_pwmp_hd.o(i.pwmp_hd_process_is_adjust), (20 bytes). + Removing mode_pwmp.o(.rev16_text), (4 bytes). + Removing mode_pwmp.o(.revsh_text), (4 bytes). + Removing mode_pwmp.o(.rrx_text), (6 bytes). + Removing mode_pwmp.o(i.mode_pwmp_init), (92 bytes). + Removing board.o(.rev16_text), (4 bytes). + Removing board.o(.revsh_text), (4 bytes). + Removing board.o(.rrx_text), (6 bytes). + Removing board.o(i.GUI_Flush), (12 bytes). + Removing board.o(i.GUI_Flush_Clear), (12 bytes). + Removing board.o(i.get_actual_travel_adc_average), (8 bytes). + Removing board.o(i.get_dac), (64 bytes). + Removing board.o(i.gui_close), (16 bytes). + Removing board.o(i.gui_clr), (12 bytes). + Removing board.o(i.gui_full), (16 bytes). + Removing board.o(i.gui_get_clear_flag), (12 bytes). + Removing board.o(i.gui_open), (16 bytes). + Removing board.o(i.gui_set_clear_flag), (12 bytes). + Removing board.o(i.gui_set_scandir), (20 bytes). + Removing board.o(i.ip_dac2current), (48 bytes). + Removing board.o(i.pwm_duty2current), (64 bytes). + Removing board.o(i.set_200kpa), (20 bytes). + Removing board.o(i.set_400kpa), (100 bytes). + Removing board.o(i.set_loop_20ma), (108 bytes). + Removing board.o(i.set_loop_4ma), (20 bytes). + Removing board.o(i.set_output_20ma_pwm), (84 bytes). + Removing board.o(i.set_output_4ma_pwm), (12 bytes). + Removing eeprom_m95.o(.rev16_text), (4 bytes). + Removing eeprom_m95.o(.revsh_text), (4 bytes). + Removing eeprom_m95.o(.rrx_text), (6 bytes). + Removing eeprom_m95.o(i.eeprom_m95_test), (124 bytes). + Removing eeprom_fm24.o(.rev16_text), (4 bytes). + Removing eeprom_fm24.o(.revsh_text), (4 bytes). + Removing eeprom_fm24.o(.rrx_text), (6 bytes). + Removing eeprom_fm24.o(i._memset), (14 bytes). + Removing eeprom_fm24.o(i.eeprom_fm24_test), (90 bytes). + Removing eeprom_lc02b.o(.rev16_text), (4 bytes). + Removing eeprom_lc02b.o(.revsh_text), (4 bytes). + Removing eeprom_lc02b.o(.rrx_text), (6 bytes). + Removing eeprom_lc02b.o(i.eeprom_lc02b_read), (116 bytes). + Removing eeprom_lc02b.o(i.eeprom_lc02b_test), (66 bytes). + Removing eeprom_lc02b.o(i.eeprom_lc02b_write), (140 bytes). + Removing rtc_rx8010.o(.rev16_text), (4 bytes). + Removing rtc_rx8010.o(.revsh_text), (4 bytes). + Removing rtc_rx8010.o(.rrx_text), (6 bytes). + Removing rtc_rx8010.o(i.rtc_weekday_rconvert), (82 bytes). + Removing ntc_3950.o(.rev16_text), (4 bytes). + Removing ntc_3950.o(.revsh_text), (4 bytes). + Removing ntc_3950.o(.rrx_text), (6 bytes). + Removing leds.o(.rev16_text), (4 bytes). + Removing leds.o(.revsh_text), (4 bytes). + Removing leds.o(.rrx_text), (6 bytes). + Removing leds.o(i.leds_off), (32 bytes). + Removing leds.o(i.leds_off_all), (36 bytes). + Removing leds.o(i.leds_on), (104 bytes). + Removing delay.o(.rev16_text), (4 bytes). + Removing delay.o(.revsh_text), (4 bytes). + Removing delay.o(.rrx_text), (6 bytes). + Removing sys.o(.rev16_text), (4 bytes). + Removing sys.o(.revsh_text), (4 bytes). + Removing sys.o(.rrx_text), (6 bytes). + Removing sys.o(i.sys_intx_disable), (4 bytes). + Removing sys.o(i.sys_intx_enable), (4 bytes). + Removing sys.o(i.sys_msr_msp), (6 bytes). + Removing sys.o(i.sys_nvic_set_vector_table), (16 bytes). + Removing sys.o(i.sys_soft_reset), (36 bytes). + Removing sys.o(i.sys_standby), (2 bytes). + Removing sys.o(i.sys_to_seconds), (20 bytes). + Removing sys.o(i.sys_wfi_set), (4 bytes). + Removing sys.o(.data), (4 bytes). + Removing btn.o(.rev16_text), (4 bytes). + Removing btn.o(.revsh_text), (4 bytes). + Removing btn.o(.rrx_text), (6 bytes). + Removing btn.o(i.get_button_event), (6 bytes). + Removing adcs.o(.rev16_text), (4 bytes). + Removing adcs.o(.revsh_text), (4 bytes). + Removing adcs.o(.rrx_text), (6 bytes). + Removing adcs.o(i._quick_sort), (96 bytes). + Removing adcs.o(i.adc_result_median_average), (240 bytes). + Removing adcs.o(i.adc_result_n_average), (256 bytes). + Removing adcs.o(i.adc_result_only_one), (60 bytes). + Removing adcs.o(i.adc_result_temperature), (40 bytes). + Removing adcs.o(i.adc_result_value_local), (36 bytes). + Removing dacs.o(.rev16_text), (4 bytes). + Removing dacs.o(.revsh_text), (4 bytes). + Removing dacs.o(.rrx_text), (6 bytes). + Removing dacs.o(i._out), (36 bytes). + Removing dacs.o(i.dac_create), (48 bytes). + Removing dacs.o(i.dac_free), (8 bytes). + Removing gpios.o(.rev16_text), (4 bytes). + Removing gpios.o(.revsh_text), (4 bytes). + Removing gpios.o(.rrx_text), (6 bytes). + Removing gpios.o(i.gpio_free), (14 bytes). + Removing spis.o(.rev16_text), (4 bytes). + Removing spis.o(.revsh_text), (4 bytes). + Removing spis.o(.rrx_text), (6 bytes). + Removing spis.o(i.spi_free), (58 bytes). + Removing uarts.o(.rev16_text), (4 bytes). + Removing uarts.o(.revsh_text), (4 bytes). + Removing uarts.o(.rrx_text), (6 bytes). + Removing uarts.o(i.uart_free), (42 bytes). + Removing eeprom.o(.rev16_text), (4 bytes). + Removing eeprom.o(.revsh_text), (4 bytes). + Removing eeprom.o(.rrx_text), (6 bytes). + Removing eeprom.o(i.chip_eeprom_config_read), (2 bytes). + Removing eeprom.o(i.chip_eeprom_config_write), (2 bytes). + Removing i2cs.o(.rev16_text), (4 bytes). + Removing i2cs.o(.revsh_text), (4 bytes). + Removing i2cs.o(.rrx_text), (6 bytes). + Removing i2cs.o(i.i2c_free), (34 bytes). + Removing debug.o(.rev16_text), (4 bytes). + Removing debug.o(.revsh_text), (4 bytes). + Removing debug.o(.rrx_text), (6 bytes). + Removing lib.o(.rev16_text), (4 bytes). + Removing lib.o(.revsh_text), (4 bytes). + Removing lib.o(.rrx_text), (6 bytes). + Removing lib.o(i.dayOfyear), (76 bytes). + Removing lib.o(i.get_bit_num), (22 bytes). + Removing lib.o(i.isLeap), (40 bytes). + Removing lib.o(i.is_bit_set), (12 bytes). + Removing lib.o(i.is_in_array), (30 bytes). + Removing lib.o(i.is_same_value), (28 bytes). + Removing lib.o(i.reverse), (32 bytes). + Removing lib.o(i.stamp2Time), (200 bytes). + Removing lib.o(i.version_split), (64 bytes). + Removing lib.o(i.weekOfyear), (20 bytes). + Removing lib.o(i.xor_compute), (26 bytes). + Removing malloc.o(i.mymemcpy), (18 bytes). + Removing malloc.o(i.myrealloc), (68 bytes). + Removing flow_core.o(i.fl_hour_much_time), (28 bytes). + Removing flow_core.o(i.fl_timer_reset), (10 bytes). + Removing flow_core.o(i.fl_timer_restart), (12 bytes). + Removing flow_core.o(i.fl_timer_set), (20 bytes). + Removing flow_core.o(i.fl_timer_timeout), (28 bytes). + Removing sqqueue.o(.rev16_text), (4 bytes). + Removing sqqueue.o(.revsh_text), (4 bytes). + Removing sqqueue.o(.rrx_text), (6 bytes). + Removing sqqueue.o(i.clear_sqq), (34 bytes). + Removing sqqueue.o(i.delete_sqqueue), (64 bytes). + Removing sqqueue.o(i.enter_sqqueue), (80 bytes). + Removing sqqueue.o(i.memcpyL), (18 bytes). + Removing sqqueue.o(i.qremove), (140 bytes). + Removing sqqueue.o(i.revoke_sqqueue), (64 bytes). + Removing sqqueue.o(i.sqqueue_ctrl_init), (120 bytes). + Removing sqqueue.o(i.sqqueue_full), (52 bytes). + Removing sqqueue.o(i.sqqueue_init), (66 bytes). + Removing sqqueue.o(i.sqqueue_length), (48 bytes). + Removing sqqueue.o(i.string_enter_sqqueue), (132 bytes). + Removing sqqueue.o(i.traverse), (68 bytes). + Removing filter.o(.rev16_text), (4 bytes). + Removing filter.o(.revsh_text), (4 bytes). + Removing filter.o(.rrx_text), (6 bytes). + Removing filter.o(i.kalman_init), (44 bytes). + Removing filter.o(i.kalman_reset), (6 bytes). + Removing filter.o(i.kalman_update), (162 bytes). + Removing filter.o(i.lpf_reset), (6 bytes). + Removing filter.o(i.lpf_window_dinit), (32 bytes). + Removing filter.o(i.lpf_window_reset), (8 bytes). + Removing clist.o(.rev16_text), (4 bytes). + Removing clist.o(.revsh_text), (4 bytes). + Removing clist.o(.rrx_text), (6 bytes). + Removing clist.o(i.CreateNode), (20 bytes). + Removing clist.o(i._free), (8 bytes). + Removing clist.o(i.cListErase), (32 bytes). + Removing clist.o(i.clist_destroy), (44 bytes). + Removing clist.o(i.clist_erase_for_node), (32 bytes). + Removing clist.o(i.clist_find), (16 bytes). + Removing clist.o(i.clist_init), (26 bytes). + Removing clist.o(i.clist_insert), (32 bytes). + Removing clist.o(i.clist_insert_for_node), (68 bytes). + Removing clist.o(i.clist_node_count), (16 bytes). + Removing clist.o(i.clist_pop_back), (70 bytes). + Removing clist.o(i.clist_pop_front), (46 bytes). + Removing clist.o(i.clist_print), (10 bytes). + Removing clist.o(i.clist_push_back), (50 bytes). + Removing clist.o(i.clist_push_front), (36 bytes). + Removing clist.o(i.clist_remove), (86 bytes). + Removing clist.o(i.clist_remove_all), (78 bytes). + Removing cmac.o(.rev16_text), (4 bytes). + Removing cmac.o(.revsh_text), (4 bytes). + Removing cmac.o(.rrx_text), (6 bytes). + Removing aes.o(i.aes_cbc_decrypt), (74 bytes). + Removing aes.o(i.aes_cbc_encrypt), (64 bytes). + Removing aes.o(i.aes_decrypt), (84 bytes). + Removing aes.o(i.inv_mix_sub_columns), (646 bytes). + Removing aes.o(i.inv_shift_sub_rows), (104 bytes). + Removing fdb.o(.rev16_text), (4 bytes). + Removing fdb.o(.revsh_text), (4 bytes). + Removing fdb.o(.rrx_text), (6 bytes). + Removing fdb.o(i._fdb_db_path), (16 bytes). + Removing fdb.o(i._fdb_deinit), (12 bytes). + Removing fdb_kvdb.o(.rev16_text), (4 bytes). + Removing fdb_kvdb.o(.revsh_text), (4 bytes). + Removing fdb_kvdb.o(.rrx_text), (6 bytes). + Removing fdb_kvdb.o(i.fdb_is_str), (26 bytes). + Removing fdb_kvdb.o(i.fdb_kv_del), (50 bytes). + Removing fdb_kvdb.o(i.fdb_kv_get), (72 bytes). + Removing fdb_kvdb.o(i.fdb_kv_get_obj), (56 bytes). + Removing fdb_kvdb.o(i.fdb_kv_iterate), (170 bytes). + Removing fdb_kvdb.o(i.fdb_kv_iterator_init), (22 bytes). + Removing fdb_kvdb.o(i.fdb_kv_print), (60 bytes). + Removing fdb_kvdb.o(i.fdb_kv_set), (40 bytes). + Removing fdb_kvdb.o(i.fdb_kv_to_blob), (18 bytes). + Removing fdb_kvdb.o(i.fdb_kvdb_check), (132 bytes). + Removing fdb_kvdb.o(i.fdb_kvdb_deinit), (10 bytes). + Removing fdb_kvdb.o(i.print_kv_cb), (124 bytes). + Removing fdb_kvdb.o(.bss), (129 bytes). + Removing fdb_tsdb.o(.rev16_text), (4 bytes). + Removing fdb_tsdb.o(.revsh_text), (4 bytes). + Removing fdb_tsdb.o(.rrx_text), (6 bytes). + Removing fdb_tsdb.o(i.fdb_tsdb_deinit), (10 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_append), (48 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_append_with_ts), (48 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_clean), (36 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_iter), (156 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_iter_by_time), (306 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_iter_reverse), (152 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_query_count), (40 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_set_status), (20 bytes). + Removing fdb_tsdb.o(i.fdb_tsl_to_blob), (18 bytes). + Removing fdb_tsdb.o(i.get_last_sector_addr), (30 bytes). + Removing fdb_tsdb.o(i.get_last_tsl_addr), (34 bytes). + Removing fdb_tsdb.o(i.get_next_tsl_addr), (30 bytes). + Removing fdb_tsdb.o(i.query_count_cb), (18 bytes). + Removing fdb_tsdb.o(i.search_start_tsl_addr), (112 bytes). + Removing fdb_tsdb.o(i.tsl_append), (106 bytes). + Removing fdb_tsdb.o(i.update_sec_status), (444 bytes). + Removing fdb_tsdb.o(i.write_tsl), (114 bytes). + Removing fdb_utils.o(.rev16_text), (4 bytes). + Removing fdb_utils.o(.revsh_text), (4 bytes). + Removing fdb_utils.o(.rrx_text), (6 bytes). + Removing fdb_utils.o(i.fdb_blob_read), (34 bytes). + Removing fdb_file.o(.rev16_text), (4 bytes). + Removing fdb_file.o(.revsh_text), (4 bytes). + Removing fdb_file.o(.rrx_text), (6 bytes). + Removing fal_eeprom95_port.o(.rev16_text), (4 bytes). + Removing fal_eeprom95_port.o(.revsh_text), (4 bytes). + Removing fal_eeprom95_port.o(.rrx_text), (6 bytes). + Removing fal_eeprom24_port.o(.rev16_text), (4 bytes). + Removing fal_eeprom24_port.o(.revsh_text), (4 bytes). + Removing fal_eeprom24_port.o(.rrx_text), (6 bytes). + Removing fal.o(.rev16_text), (4 bytes). + Removing fal.o(.revsh_text), (4 bytes). + Removing fal.o(.rrx_text), (6 bytes). + Removing fal.o(i.fal_init_check), (12 bytes). + Removing fal_flash.o(.rev16_text), (4 bytes). + Removing fal_flash.o(.revsh_text), (4 bytes). + Removing fal_flash.o(.rrx_text), (6 bytes). + Removing fal_partition.o(.rev16_text), (4 bytes). + Removing fal_partition.o(.revsh_text), (4 bytes). + Removing fal_partition.o(.rrx_text), (6 bytes). + Removing fal_partition.o(i.fal_get_partition_table), (16 bytes). + Removing fal_partition.o(i.fal_partition_erase_all), (8 bytes). + Removing fal_partition.o(i.fal_set_partition_table_temp), (28 bytes). + Removing fal_partition.o(i.fal_show_part_table), (128 bytes). + Removing fal_rtt.o(.rev16_text), (4 bytes). + Removing fal_rtt.o(.revsh_text), (4 bytes). + Removing fal_rtt.o(.rrx_text), (6 bytes). + Removing pid.o(.rev16_text), (4 bytes). + Removing pid.o(.revsh_text), (4 bytes). + Removing pid.o(.rrx_text), (6 bytes). + Removing pid_hd.o(.rev16_text), (4 bytes). + Removing pid_hd.o(.revsh_text), (4 bytes). + Removing pid_hd.o(.rrx_text), (6 bytes). + Removing pid_hd.o(.data), (4 bytes). + Removing dscalb.o(.text), (46 bytes). + Removing dfixi.o(.text), (62 bytes). + +492 unused section(s) (total 19292 bytes) removed from the image. + +============================================================================== + +Image Symbol Table + + Local Symbols + + Symbol Name Value Ov Type Size Object(Section) + + ../Core/Src/adc.c 0x00000000 Number 0 adc.o ABSOLUTE + ../Core/Src/dac.c 0x00000000 Number 0 dac.o ABSOLUTE + ../Core/Src/dma.c 0x00000000 Number 0 dma.o ABSOLUTE + ../Core/Src/gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE + ../Core/Src/i2c.c 0x00000000 Number 0 i2c.o ABSOLUTE + ../Core/Src/main.c 0x00000000 Number 0 main.o ABSOLUTE + ../Core/Src/spi.c 0x00000000 Number 0 spi.o ABSOLUTE + ../Core/Src/stm32l4xx_it.c 0x00000000 Number 0 stm32l4xx_it.o ABSOLUTE + ../Core/Src/system_stm32l4xx.c 0x00000000 Number 0 system_stm32l4xx.o ABSOLUTE + ../Core/Src/tim.c 0x00000000 Number 0 tim.o ABSOLUTE + ../Core/Src/usart.c 0x00000000 Number 0 usart.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c 0x00000000 Number 0 stm32l4xx_ll_adc.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c 0x00000000 Number 0 stm32l4xx_ll_dac.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c 0x00000000 Number 0 stm32l4xx_ll_dma.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c 0x00000000 Number 0 stm32l4xx_ll_exti.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c 0x00000000 Number 0 stm32l4xx_ll_gpio.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c 0x00000000 Number 0 stm32l4xx_ll_i2c.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c 0x00000000 Number 0 stm32l4xx_ll_pwr.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c 0x00000000 Number 0 stm32l4xx_ll_rcc.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c 0x00000000 Number 0 stm32l4xx_ll_spi.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c 0x00000000 Number 0 stm32l4xx_ll_tim.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usart.c 0x00000000 Number 0 stm32l4xx_ll_usart.o ABSOLUTE + ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_utils.c 0x00000000 Number 0 stm32l4xx_ll_utils.o ABSOLUTE + ../clib/../cmprslib/zerorunl2.c 0x00000000 Number 0 __dczerorl2.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE + ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE + ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE + ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE + ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloc.o ABSOLUTE + ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocr.o ABSOLUTE + ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloca.o ABSOLUTE + ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocra.o ABSOLUTE + ../clib/microlib/malloc/mvars.c 0x00000000 Number 0 mvars.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE + ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE + ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE + ../clib/microlib/stdio/fputc.c 0x00000000 Number 0 fputc.o ABSOLUTE + ../clib/microlib/stdio/semi.s 0x00000000 Number 0 semi.o ABSOLUTE + ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE + ../clib/microlib/stdlib/rand.c 0x00000000 Number 0 rand.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE + ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE + ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE + ../clib/microlib/string/strcmp.c 0x00000000 Number 0 strcmp.o ABSOLUTE + ../clib/microlib/string/strlen.c 0x00000000 Number 0 strlen.o ABSOLUTE + ../clib/microlib/string/strncmp.c 0x00000000 Number 0 strncmp.o ABSOLUTE + ../clib/microlib/string/strncpy.c 0x00000000 Number 0 strncpy.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE + ../clib/microlib/stubs.s 0x00000000 Number 0 iusesemip.o ABSOLUTE + ../fplib/microlib/d2f.c 0x00000000 Number 0 d2f.o ABSOLUTE + ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 fadd.o ABSOLUTE + ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE + ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE + ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixui.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE + ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 fflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE + ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE + ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 fscalb.o ABSOLUTE + ../fplib/microlib/fpscalb.c 0x00000000 Number 0 dscalb.o ABSOLUTE + ..\Core\Src\adc.c 0x00000000 Number 0 adc.o ABSOLUTE + ..\Core\Src\dac.c 0x00000000 Number 0 dac.o ABSOLUTE + ..\Core\Src\dma.c 0x00000000 Number 0 dma.o ABSOLUTE + ..\Core\Src\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE + ..\Core\Src\i2c.c 0x00000000 Number 0 i2c.o ABSOLUTE + ..\Core\Src\main.c 0x00000000 Number 0 main.o ABSOLUTE + ..\Core\Src\spi.c 0x00000000 Number 0 spi.o ABSOLUTE + ..\Core\Src\stm32l4xx_it.c 0x00000000 Number 0 stm32l4xx_it.o ABSOLUTE + ..\Core\Src\system_stm32l4xx.c 0x00000000 Number 0 system_stm32l4xx.o ABSOLUTE + ..\Core\Src\tim.c 0x00000000 Number 0 tim.o ABSOLUTE + ..\Core\Src\usart.c 0x00000000 Number 0 usart.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_adc.c 0x00000000 Number 0 stm32l4xx_ll_adc.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_dac.c 0x00000000 Number 0 stm32l4xx_ll_dac.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_dma.c 0x00000000 Number 0 stm32l4xx_ll_dma.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_exti.c 0x00000000 Number 0 stm32l4xx_ll_exti.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_gpio.c 0x00000000 Number 0 stm32l4xx_ll_gpio.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_i2c.c 0x00000000 Number 0 stm32l4xx_ll_i2c.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_pwr.c 0x00000000 Number 0 stm32l4xx_ll_pwr.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_rcc.c 0x00000000 Number 0 stm32l4xx_ll_rcc.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_spi.c 0x00000000 Number 0 stm32l4xx_ll_spi.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_tim.c 0x00000000 Number 0 stm32l4xx_ll_tim.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_usart.c 0x00000000 Number 0 stm32l4xx_ll_usart.o ABSOLUTE + ..\Drivers\STM32L4xx_HAL_Driver\Src\stm32l4xx_ll_utils.c 0x00000000 Number 0 stm32l4xx_ll_utils.o ABSOLUTE + ..\User\app.c 0x00000000 Number 0 app.o ABSOLUTE + ..\User\app_flow.c 0x00000000 Number 0 app_flow.o ABSOLUTE + ..\User\app_hart.c 0x00000000 Number 0 app_hart.o ABSOLUTE + ..\User\application\src\at_hc24.c 0x00000000 Number 0 at_hc24.o ABSOLUTE + ..\User\application\src\convert.c 0x00000000 Number 0 convert.o ABSOLUTE + ..\User\application\src\fal_execution.c 0x00000000 Number 0 fal_execution.o ABSOLUTE + ..\User\application\src\key.c 0x00000000 Number 0 key.o ABSOLUTE + ..\User\application\src\mode.c 0x00000000 Number 0 mode.o ABSOLUTE + ..\User\application\src\mode_dac.c 0x00000000 Number 0 mode_dac.o ABSOLUTE + ..\User\application\src\mode_pwm.c 0x00000000 Number 0 mode_pwm.o ABSOLUTE + ..\User\application\src\mode_pwmp.c 0x00000000 Number 0 mode_pwmp.o ABSOLUTE + ..\User\application\src\mode_pwmp_hd.c 0x00000000 Number 0 mode_pwmp_hd.o ABSOLUTE + ..\User\application\src\params.c 0x00000000 Number 0 params.o ABSOLUTE + ..\User\application\src\pdctrl.c 0x00000000 Number 0 pdctrl.o ABSOLUTE + ..\User\board\src\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\User\board\src\eeprom_fm24.c 0x00000000 Number 0 eeprom_fm24.o ABSOLUTE + ..\User\board\src\eeprom_lc02b.c 0x00000000 Number 0 eeprom_lc02b.o ABSOLUTE + ..\User\board\src\eeprom_m95.c 0x00000000 Number 0 eeprom_m95.o ABSOLUTE + ..\User\board\src\leds.c 0x00000000 Number 0 leds.o ABSOLUTE + ..\User\board\src\ntc_3950.c 0x00000000 Number 0 ntc_3950.o ABSOLUTE + ..\User\board\src\rtc_rx8010.c 0x00000000 Number 0 rtc_rx8010.o ABSOLUTE + ..\User\lib\control\custom\pid_hd.c 0x00000000 Number 0 pid_hd.o ABSOLUTE + ..\User\lib\control\src\pid.c 0x00000000 Number 0 pid.o ABSOLUTE + ..\User\lib\flashdb\fal\fal.c 0x00000000 Number 0 fal.o ABSOLUTE + ..\User\lib\flashdb\fal\fal_flash.c 0x00000000 Number 0 fal_flash.o ABSOLUTE + ..\User\lib\flashdb\fal\fal_partition.c 0x00000000 Number 0 fal_partition.o ABSOLUTE + ..\User\lib\flashdb\fal\fal_rtt.c 0x00000000 Number 0 fal_rtt.o ABSOLUTE + ..\User\lib\flashdb\fal_eeprom24_port.c 0x00000000 Number 0 fal_eeprom24_port.o ABSOLUTE + ..\User\lib\flashdb\fal_eeprom95_port.c 0x00000000 Number 0 fal_eeprom95_port.o ABSOLUTE + ..\User\lib\flashdb\fdb.c 0x00000000 Number 0 fdb.o ABSOLUTE + ..\User\lib\flashdb\fdb_file.c 0x00000000 Number 0 fdb_file.o ABSOLUTE + ..\User\lib\flashdb\fdb_kvdb.c 0x00000000 Number 0 fdb_kvdb.o ABSOLUTE + ..\User\lib\flashdb\fdb_tsdb.c 0x00000000 Number 0 fdb_tsdb.o ABSOLUTE + ..\User\lib\flashdb\fdb_utils.c 0x00000000 Number 0 fdb_utils.o ABSOLUTE + ..\User\lib\flow\flow_core.c 0x00000000 Number 0 flow_core.o ABSOLUTE + ..\User\lib\src\aes.c 0x00000000 Number 0 aes.o ABSOLUTE + ..\User\lib\src\clist.c 0x00000000 Number 0 clist.o ABSOLUTE + ..\User\lib\src\cmac.c 0x00000000 Number 0 cmac.o ABSOLUTE + ..\User\lib\src\debug.c 0x00000000 Number 0 debug.o ABSOLUTE + ..\User\lib\src\filter.c 0x00000000 Number 0 filter.o ABSOLUTE + ..\User\lib\src\lib.c 0x00000000 Number 0 lib.o ABSOLUTE + ..\User\lib\src\malloc.c 0x00000000 Number 0 malloc.o ABSOLUTE + ..\User\lib\src\sqqueue.c 0x00000000 Number 0 sqqueue.o ABSOLUTE + ..\User\system\bsp\adcs.c 0x00000000 Number 0 adcs.o ABSOLUTE + ..\User\system\bsp\dacs.c 0x00000000 Number 0 dacs.o ABSOLUTE + ..\User\system\bsp\eeprom.c 0x00000000 Number 0 eeprom.o ABSOLUTE + ..\User\system\bsp\gpios.c 0x00000000 Number 0 gpios.o ABSOLUTE + ..\User\system\bsp\i2cs.c 0x00000000 Number 0 i2cs.o ABSOLUTE + ..\User\system\bsp\pwms.c 0x00000000 Number 0 pwms.o ABSOLUTE + ..\User\system\bsp\spis.c 0x00000000 Number 0 spis.o ABSOLUTE + ..\User\system\bsp\uarts.c 0x00000000 Number 0 uarts.o ABSOLUTE + ..\User\system\src\btn.c 0x00000000 Number 0 btn.o ABSOLUTE + ..\User\system\src\delay.c 0x00000000 Number 0 delay.o ABSOLUTE + ..\User\system\src\sys.c 0x00000000 Number 0 sys.o ABSOLUTE + ..\\User\\app.c 0x00000000 Number 0 app.o ABSOLUTE + ..\\User\\app_flow.c 0x00000000 Number 0 app_flow.o ABSOLUTE + ..\\User\\app_hart.c 0x00000000 Number 0 app_hart.o ABSOLUTE + ..\\User\\application\\src\\at_hc24.c 0x00000000 Number 0 at_hc24.o ABSOLUTE + ..\\User\\application\\src\\convert.c 0x00000000 Number 0 convert.o ABSOLUTE + ..\\User\\application\\src\\fal_execution.c 0x00000000 Number 0 fal_execution.o ABSOLUTE + ..\\User\\application\\src\\key.c 0x00000000 Number 0 key.o ABSOLUTE + ..\\User\\application\\src\\mode.c 0x00000000 Number 0 mode.o ABSOLUTE + ..\\User\\application\\src\\mode_dac.c 0x00000000 Number 0 mode_dac.o ABSOLUTE + ..\\User\\application\\src\\mode_pwm.c 0x00000000 Number 0 mode_pwm.o ABSOLUTE + ..\\User\\application\\src\\mode_pwmp.c 0x00000000 Number 0 mode_pwmp.o ABSOLUTE + ..\\User\\application\\src\\mode_pwmp_hd.c 0x00000000 Number 0 mode_pwmp_hd.o ABSOLUTE + ..\\User\\application\\src\\params.c 0x00000000 Number 0 params.o ABSOLUTE + ..\\User\\application\\src\\pdctrl.c 0x00000000 Number 0 pdctrl.o ABSOLUTE + ..\\User\\board\\src\\board.c 0x00000000 Number 0 board.o ABSOLUTE + ..\\User\\board\\src\\eeprom_fm24.c 0x00000000 Number 0 eeprom_fm24.o ABSOLUTE + ..\\User\\board\\src\\eeprom_lc02b.c 0x00000000 Number 0 eeprom_lc02b.o ABSOLUTE + ..\\User\\board\\src\\eeprom_m95.c 0x00000000 Number 0 eeprom_m95.o ABSOLUTE + ..\\User\\board\\src\\leds.c 0x00000000 Number 0 leds.o ABSOLUTE + ..\\User\\board\\src\\ntc_3950.c 0x00000000 Number 0 ntc_3950.o ABSOLUTE + ..\\User\\board\\src\\rtc_rx8010.c 0x00000000 Number 0 rtc_rx8010.o ABSOLUTE + ..\\User\\lib\\control\\custom\\pid_hd.c 0x00000000 Number 0 pid_hd.o ABSOLUTE + ..\\User\\lib\\control\\src\\pid.c 0x00000000 Number 0 pid.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal\\fal.c 0x00000000 Number 0 fal.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal\\fal_flash.c 0x00000000 Number 0 fal_flash.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal\\fal_partition.c 0x00000000 Number 0 fal_partition.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal\\fal_rtt.c 0x00000000 Number 0 fal_rtt.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal_eeprom24_port.c 0x00000000 Number 0 fal_eeprom24_port.o ABSOLUTE + ..\\User\\lib\\flashdb\\fal_eeprom95_port.c 0x00000000 Number 0 fal_eeprom95_port.o ABSOLUTE + ..\\User\\lib\\flashdb\\fdb.c 0x00000000 Number 0 fdb.o ABSOLUTE + ..\\User\\lib\\flashdb\\fdb_file.c 0x00000000 Number 0 fdb_file.o ABSOLUTE + ..\\User\\lib\\flashdb\\fdb_kvdb.c 0x00000000 Number 0 fdb_kvdb.o ABSOLUTE + ..\\User\\lib\\flashdb\\fdb_tsdb.c 0x00000000 Number 0 fdb_tsdb.o ABSOLUTE + ..\\User\\lib\\flashdb\\fdb_utils.c 0x00000000 Number 0 fdb_utils.o ABSOLUTE + ..\\User\\lib\\src\\clist.c 0x00000000 Number 0 clist.o ABSOLUTE + ..\\User\\lib\\src\\cmac.c 0x00000000 Number 0 cmac.o ABSOLUTE + ..\\User\\lib\\src\\debug.c 0x00000000 Number 0 debug.o ABSOLUTE + ..\\User\\lib\\src\\filter.c 0x00000000 Number 0 filter.o ABSOLUTE + ..\\User\\lib\\src\\lib.c 0x00000000 Number 0 lib.o ABSOLUTE + ..\\User\\lib\\src\\sqqueue.c 0x00000000 Number 0 sqqueue.o ABSOLUTE + ..\\User\\system\\bsp\\adcs.c 0x00000000 Number 0 adcs.o ABSOLUTE + ..\\User\\system\\bsp\\dacs.c 0x00000000 Number 0 dacs.o ABSOLUTE + ..\\User\\system\\bsp\\eeprom.c 0x00000000 Number 0 eeprom.o ABSOLUTE + ..\\User\\system\\bsp\\gpios.c 0x00000000 Number 0 gpios.o ABSOLUTE + ..\\User\\system\\bsp\\i2cs.c 0x00000000 Number 0 i2cs.o ABSOLUTE + ..\\User\\system\\bsp\\spis.c 0x00000000 Number 0 spis.o ABSOLUTE + ..\\User\\system\\bsp\\uarts.c 0x00000000 Number 0 uarts.o ABSOLUTE + ..\\User\\system\\src\\btn.c 0x00000000 Number 0 btn.o ABSOLUTE + ..\\User\\system\\src\\delay.c 0x00000000 Number 0 delay.o ABSOLUTE + ..\\User\\system\\src\\sys.c 0x00000000 Number 0 sys.o ABSOLUTE + cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE + cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE + cfcmple.s 0x00000000 Number 0 cfcmple.o ABSOLUTE + cfrcmple.s 0x00000000 Number 0 cfrcmple.o ABSOLUTE + dc.s 0x00000000 Number 0 dc.o ABSOLUTE + handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE + init.s 0x00000000 Number 0 init.o ABSOLUTE + startup_stm32l476xx.s 0x00000000 Number 0 startup_stm32l476xx.o ABSOLUTE + RESET 0x08000000 Section 392 startup_stm32l476xx.o(RESET) + .ARM.Collect$$$$00000000 0x08000188 Section 0 entry.o(.ARM.Collect$$$$00000000) + .ARM.Collect$$$$00000001 0x08000188 Section 4 entry2.o(.ARM.Collect$$$$00000001) + .ARM.Collect$$$$00000004 0x0800018c Section 4 entry5.o(.ARM.Collect$$$$00000004) + .ARM.Collect$$$$00000008 0x08000190 Section 0 entry7b.o(.ARM.Collect$$$$00000008) + .ARM.Collect$$$$0000000A 0x08000190 Section 0 entry8b.o(.ARM.Collect$$$$0000000A) + .ARM.Collect$$$$0000000B 0x08000190 Section 8 entry9a.o(.ARM.Collect$$$$0000000B) + .ARM.Collect$$$$0000000D 0x08000198 Section 0 entry10a.o(.ARM.Collect$$$$0000000D) + .ARM.Collect$$$$0000000F 0x08000198 Section 0 entry11a.o(.ARM.Collect$$$$0000000F) + .ARM.Collect$$$$00002712 0x08000198 Section 4 entry2.o(.ARM.Collect$$$$00002712) + __lit__00000000 0x08000198 Data 4 entry2.o(.ARM.Collect$$$$00002712) + .text 0x0800019c Section 36 startup_stm32l476xx.o(.text) + .text 0x080001c0 Section 0 rand.o(.text) + .text 0x080001e4 Section 0 memcpya.o(.text) + .text 0x08000208 Section 0 memseta.o(.text) + .text 0x0800022c Section 0 strncpy.o(.text) + .text 0x08000244 Section 0 strlen.o(.text) + .text 0x08000252 Section 0 strcmp.o(.text) + .text 0x0800026e Section 0 strncmp.o(.text) + .text 0x0800028c Section 0 fadd.o(.text) + .text 0x0800033c Section 0 fmul.o(.text) + .text 0x080003a0 Section 0 fdiv.o(.text) + .text 0x0800041c Section 0 fscalb.o(.text) + .text 0x08000434 Section 0 dadd.o(.text) + .text 0x08000592 Section 0 dmul.o(.text) + .text 0x0800067c Section 0 ddiv.o(.text) + .text 0x0800075a Section 0 fflti.o(.text) + .text 0x0800076c Section 0 ffltui.o(.text) + .text 0x08000776 Section 0 dflti.o(.text) + .text 0x08000798 Section 0 dfltui.o(.text) + .text 0x080007b2 Section 0 ffixui.o(.text) + .text 0x080007da Section 0 dfixui.o(.text) + .text 0x0800080c Section 0 f2d.o(.text) + .text 0x08000834 Section 48 cdcmple.o(.text) + .text 0x08000864 Section 48 cdrcmple.o(.text) + .text 0x08000894 Section 0 d2f.o(.text) + .text 0x080008cc Section 20 cfcmple.o(.text) + .text 0x080008e0 Section 20 cfrcmple.o(.text) + .text 0x080008f4 Section 0 uidiv.o(.text) + .text 0x08000920 Section 0 uldiv.o(.text) + .text 0x08000988 Section 0 llshl.o(.text) + .text 0x080009a6 Section 0 llushr.o(.text) + .text 0x080009c6 Section 0 llsshr.o(.text) + .text 0x080009ea Section 0 fepilogue.o(.text) + .text 0x080009ea Section 0 iusefp.o(.text) + .text 0x08000a58 Section 0 depilogue.o(.text) + .text 0x08000b12 Section 0 dfixul.o(.text) + .text 0x08000b44 Section 36 init.o(.text) + .text 0x08000b68 Section 0 __dczerorl2.o(.text) + i.ADC1_2_IRQHandler 0x08000bbe Section 0 stm32l4xx_it.o(i.ADC1_2_IRQHandler) + i.AES_CMAC_Final 0x08000bc4 Section 0 cmac.o(i.AES_CMAC_Final) + i.AES_CMAC_Init 0x08000d0c Section 0 cmac.o(i.AES_CMAC_Init) + i.AES_CMAC_SetKey 0x08000d30 Section 0 cmac.o(i.AES_CMAC_SetKey) + i.AES_CMAC_Update 0x08000d3a Section 0 cmac.o(i.AES_CMAC_Update) + i.BusFault_Handler 0x08000df4 Section 0 stm32l4xx_it.o(i.BusFault_Handler) + i.DBG_ASSERT 0x08000df6 Section 0 debug.o(i.DBG_ASSERT) + i.DMA1_Channel1_IRQHandler 0x08000e00 Section 0 stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler) + i.DMA1_Channel2_IRQHandler 0x08000e06 Section 0 stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler) + i.DMA1_Channel5_IRQHandler 0x08000e0c Section 0 stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler) + i.DMA1_Channel6_IRQHandler 0x08000e1c Section 0 stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) + i.DMA1_Channel7_IRQHandler 0x08000e28 Section 0 stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) + i.DMA2_Channel1_IRQHandler 0x08000e34 Section 0 stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) + i.DMA2_Channel2_IRQHandler 0x08000e40 Section 0 stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) + i.DMA2_Channel6_IRQHandler 0x08000e4c Section 0 stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) + i.DMA2_Channel7_IRQHandler 0x08000e58 Section 0 stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) + i.DebugMon_Handler 0x08000e64 Section 0 stm32l4xx_it.o(i.DebugMon_Handler) + i.HardFault_Handler 0x08000e66 Section 0 stm32l4xx_it.o(i.HardFault_Handler) + i.I2C1_EV_IRQHandler 0x08000e68 Section 0 stm32l4xx_it.o(i.I2C1_EV_IRQHandler) + i.LL_ADC_CommonInit 0x08000e74 Section 0 stm32l4xx_ll_adc.o(i.LL_ADC_CommonInit) + i.LL_ADC_DMA_GetRegAddr 0x08000ed4 Section 0 adcs.o(i.LL_ADC_DMA_GetRegAddr) + LL_ADC_DMA_GetRegAddr 0x08000ed5 Thumb Code 12 adcs.o(i.LL_ADC_DMA_GetRegAddr) + i.LL_ADC_Init 0x08000ee4 Section 0 stm32l4xx_ll_adc.o(i.LL_ADC_Init) + i.LL_ADC_REG_Init 0x08000f10 Section 0 stm32l4xx_ll_adc.o(i.LL_ADC_REG_Init) + i.LL_ADC_REG_SetSequencerRanks 0x08000f70 Section 0 adc.o(i.LL_ADC_REG_SetSequencerRanks) + LL_ADC_REG_SetSequencerRanks 0x08000f71 Thumb Code 34 adc.o(i.LL_ADC_REG_SetSequencerRanks) + i.LL_ADC_SetChannelSamplingTime 0x08000f92 Section 0 adc.o(i.LL_ADC_SetChannelSamplingTime) + LL_ADC_SetChannelSamplingTime 0x08000f93 Thumb Code 30 adc.o(i.LL_ADC_SetChannelSamplingTime) + i.LL_ADC_SetChannelSingleDiff 0x08000fb0 Section 0 adc.o(i.LL_ADC_SetChannelSingleDiff) + LL_ADC_SetChannelSingleDiff 0x08000fb1 Thumb Code 28 adc.o(i.LL_ADC_SetChannelSingleDiff) + i.LL_AHB1_GRP1_EnableClock 0x08000fd0 Section 0 dma.o(i.LL_AHB1_GRP1_EnableClock) + LL_AHB1_GRP1_EnableClock 0x08000fd1 Thumb Code 18 dma.o(i.LL_AHB1_GRP1_EnableClock) + i.LL_AHB2_GRP1_EnableClock 0x08000fe8 Section 0 gpio.o(i.LL_AHB2_GRP1_EnableClock) + LL_AHB2_GRP1_EnableClock 0x08000fe9 Thumb Code 18 gpio.o(i.LL_AHB2_GRP1_EnableClock) + i.LL_AHB2_GRP1_EnableClock 0x08001000 Section 0 adc.o(i.LL_AHB2_GRP1_EnableClock) + LL_AHB2_GRP1_EnableClock 0x08001001 Thumb Code 18 adc.o(i.LL_AHB2_GRP1_EnableClock) + i.LL_AHB2_GRP1_EnableClock 0x08001018 Section 0 spi.o(i.LL_AHB2_GRP1_EnableClock) + LL_AHB2_GRP1_EnableClock 0x08001019 Thumb Code 18 spi.o(i.LL_AHB2_GRP1_EnableClock) + i.LL_AHB2_GRP1_EnableClock 0x08001030 Section 0 tim.o(i.LL_AHB2_GRP1_EnableClock) + LL_AHB2_GRP1_EnableClock 0x08001031 Thumb Code 18 tim.o(i.LL_AHB2_GRP1_EnableClock) + i.LL_AHB2_GRP1_EnableClock 0x08001048 Section 0 usart.o(i.LL_AHB2_GRP1_EnableClock) + LL_AHB2_GRP1_EnableClock 0x08001049 Thumb Code 18 usart.o(i.LL_AHB2_GRP1_EnableClock) + i.LL_APB1_GRP1_EnableClock 0x08001060 Section 0 tim.o(i.LL_APB1_GRP1_EnableClock) + LL_APB1_GRP1_EnableClock 0x08001061 Thumb Code 18 tim.o(i.LL_APB1_GRP1_EnableClock) + i.LL_DAC_Init 0x08001078 Section 0 stm32l4xx_ll_dac.o(i.LL_DAC_Init) + i.LL_DMA_ConfigAddresses 0x080010e0 Section 0 i2cs.o(i.LL_DMA_ConfigAddresses) + LL_DMA_ConfigAddresses 0x080010e1 Thumb Code 34 i2cs.o(i.LL_DMA_ConfigAddresses) + i.LL_DMA_ConfigTransfer 0x08001108 Section 0 i2cs.o(i.LL_DMA_ConfigTransfer) + LL_DMA_ConfigTransfer 0x08001109 Thumb Code 20 i2cs.o(i.LL_DMA_ConfigTransfer) + i.LL_DMA_DisableChannel 0x08001120 Section 0 uarts.o(i.LL_DMA_DisableChannel) + LL_DMA_DisableChannel 0x08001121 Thumb Code 14 uarts.o(i.LL_DMA_DisableChannel) + i.LL_DMA_DisableChannel 0x08001134 Section 0 i2cs.o(i.LL_DMA_DisableChannel) + LL_DMA_DisableChannel 0x08001135 Thumb Code 14 i2cs.o(i.LL_DMA_DisableChannel) + i.LL_DMA_EnableChannel 0x08001148 Section 0 adcs.o(i.LL_DMA_EnableChannel) + LL_DMA_EnableChannel 0x08001149 Thumb Code 14 adcs.o(i.LL_DMA_EnableChannel) + i.LL_DMA_EnableChannel 0x0800115c Section 0 uarts.o(i.LL_DMA_EnableChannel) + LL_DMA_EnableChannel 0x0800115d Thumb Code 14 uarts.o(i.LL_DMA_EnableChannel) + i.LL_DMA_EnableChannel 0x08001170 Section 0 i2cs.o(i.LL_DMA_EnableChannel) + LL_DMA_EnableChannel 0x08001171 Thumb Code 14 i2cs.o(i.LL_DMA_EnableChannel) + i.LL_DMA_EnableIT_TC 0x08001184 Section 0 uarts.o(i.LL_DMA_EnableIT_TC) + LL_DMA_EnableIT_TC 0x08001185 Thumb Code 14 uarts.o(i.LL_DMA_EnableIT_TC) + i.LL_DMA_EnableIT_TC 0x08001198 Section 0 i2cs.o(i.LL_DMA_EnableIT_TC) + LL_DMA_EnableIT_TC 0x08001199 Thumb Code 14 i2cs.o(i.LL_DMA_EnableIT_TC) + i.LL_DMA_EnableIT_TE 0x080011ac Section 0 i2cs.o(i.LL_DMA_EnableIT_TE) + LL_DMA_EnableIT_TE 0x080011ad Thumb Code 14 i2cs.o(i.LL_DMA_EnableIT_TE) + i.LL_DMA_GetDataTransferDirection 0x080011c0 Section 0 i2cs.o(i.LL_DMA_GetDataTransferDirection) + LL_DMA_GetDataTransferDirection 0x080011c1 Thumb Code 14 i2cs.o(i.LL_DMA_GetDataTransferDirection) + i.LL_DMA_SetChannelPriorityLevel 0x080011d4 Section 0 adc.o(i.LL_DMA_SetChannelPriorityLevel) + LL_DMA_SetChannelPriorityLevel 0x080011d5 Thumb Code 16 adc.o(i.LL_DMA_SetChannelPriorityLevel) + i.LL_DMA_SetChannelPriorityLevel 0x080011e8 Section 0 i2c.o(i.LL_DMA_SetChannelPriorityLevel) + LL_DMA_SetChannelPriorityLevel 0x080011e9 Thumb Code 16 i2c.o(i.LL_DMA_SetChannelPriorityLevel) + i.LL_DMA_SetChannelPriorityLevel 0x080011fc Section 0 usart.o(i.LL_DMA_SetChannelPriorityLevel) + LL_DMA_SetChannelPriorityLevel 0x080011fd Thumb Code 16 usart.o(i.LL_DMA_SetChannelPriorityLevel) + i.LL_DMA_SetDataLength 0x08001210 Section 0 adcs.o(i.LL_DMA_SetDataLength) + LL_DMA_SetDataLength 0x08001211 Thumb Code 18 adcs.o(i.LL_DMA_SetDataLength) + i.LL_DMA_SetDataLength 0x08001228 Section 0 uarts.o(i.LL_DMA_SetDataLength) + LL_DMA_SetDataLength 0x08001229 Thumb Code 18 uarts.o(i.LL_DMA_SetDataLength) + i.LL_DMA_SetDataLength 0x08001240 Section 0 i2cs.o(i.LL_DMA_SetDataLength) + LL_DMA_SetDataLength 0x08001241 Thumb Code 18 i2cs.o(i.LL_DMA_SetDataLength) + i.LL_DMA_SetDataTransferDirection 0x08001258 Section 0 adc.o(i.LL_DMA_SetDataTransferDirection) + LL_DMA_SetDataTransferDirection 0x08001259 Thumb Code 20 adc.o(i.LL_DMA_SetDataTransferDirection) + i.LL_DMA_SetDataTransferDirection 0x08001270 Section 0 i2c.o(i.LL_DMA_SetDataTransferDirection) + LL_DMA_SetDataTransferDirection 0x08001271 Thumb Code 20 i2c.o(i.LL_DMA_SetDataTransferDirection) + i.LL_DMA_SetDataTransferDirection 0x08001288 Section 0 usart.o(i.LL_DMA_SetDataTransferDirection) + LL_DMA_SetDataTransferDirection 0x08001289 Thumb Code 20 usart.o(i.LL_DMA_SetDataTransferDirection) + i.LL_DMA_SetMemoryIncMode 0x080012a0 Section 0 adc.o(i.LL_DMA_SetMemoryIncMode) + LL_DMA_SetMemoryIncMode 0x080012a1 Thumb Code 16 adc.o(i.LL_DMA_SetMemoryIncMode) + i.LL_DMA_SetMemoryIncMode 0x080012b4 Section 0 i2c.o(i.LL_DMA_SetMemoryIncMode) + LL_DMA_SetMemoryIncMode 0x080012b5 Thumb Code 16 i2c.o(i.LL_DMA_SetMemoryIncMode) + i.LL_DMA_SetMemoryIncMode 0x080012c8 Section 0 usart.o(i.LL_DMA_SetMemoryIncMode) + LL_DMA_SetMemoryIncMode 0x080012c9 Thumb Code 16 usart.o(i.LL_DMA_SetMemoryIncMode) + i.LL_DMA_SetMemorySize 0x080012dc Section 0 adc.o(i.LL_DMA_SetMemorySize) + LL_DMA_SetMemorySize 0x080012dd Thumb Code 16 adc.o(i.LL_DMA_SetMemorySize) + i.LL_DMA_SetMemorySize 0x080012f0 Section 0 i2c.o(i.LL_DMA_SetMemorySize) + LL_DMA_SetMemorySize 0x080012f1 Thumb Code 16 i2c.o(i.LL_DMA_SetMemorySize) + i.LL_DMA_SetMemorySize 0x08001304 Section 0 usart.o(i.LL_DMA_SetMemorySize) + LL_DMA_SetMemorySize 0x08001305 Thumb Code 16 usart.o(i.LL_DMA_SetMemorySize) + i.LL_DMA_SetMode 0x08001318 Section 0 adc.o(i.LL_DMA_SetMode) + LL_DMA_SetMode 0x08001319 Thumb Code 16 adc.o(i.LL_DMA_SetMode) + i.LL_DMA_SetMode 0x0800132c Section 0 i2c.o(i.LL_DMA_SetMode) + LL_DMA_SetMode 0x0800132d Thumb Code 16 i2c.o(i.LL_DMA_SetMode) + i.LL_DMA_SetMode 0x08001340 Section 0 usart.o(i.LL_DMA_SetMode) + LL_DMA_SetMode 0x08001341 Thumb Code 16 usart.o(i.LL_DMA_SetMode) + i.LL_DMA_SetPeriphIncMode 0x08001354 Section 0 adc.o(i.LL_DMA_SetPeriphIncMode) + LL_DMA_SetPeriphIncMode 0x08001355 Thumb Code 16 adc.o(i.LL_DMA_SetPeriphIncMode) + i.LL_DMA_SetPeriphIncMode 0x08001368 Section 0 i2c.o(i.LL_DMA_SetPeriphIncMode) + LL_DMA_SetPeriphIncMode 0x08001369 Thumb Code 16 i2c.o(i.LL_DMA_SetPeriphIncMode) + i.LL_DMA_SetPeriphIncMode 0x0800137c Section 0 usart.o(i.LL_DMA_SetPeriphIncMode) + LL_DMA_SetPeriphIncMode 0x0800137d Thumb Code 16 usart.o(i.LL_DMA_SetPeriphIncMode) + i.LL_DMA_SetPeriphRequest 0x08001390 Section 0 adc.o(i.LL_DMA_SetPeriphRequest) + LL_DMA_SetPeriphRequest 0x08001391 Thumb Code 30 adc.o(i.LL_DMA_SetPeriphRequest) + i.LL_DMA_SetPeriphRequest 0x080013ae Section 0 i2c.o(i.LL_DMA_SetPeriphRequest) + LL_DMA_SetPeriphRequest 0x080013af Thumb Code 30 i2c.o(i.LL_DMA_SetPeriphRequest) + i.LL_DMA_SetPeriphRequest 0x080013cc Section 0 usart.o(i.LL_DMA_SetPeriphRequest) + LL_DMA_SetPeriphRequest 0x080013cd Thumb Code 30 usart.o(i.LL_DMA_SetPeriphRequest) + i.LL_DMA_SetPeriphRequest 0x080013ea Section 0 i2cs.o(i.LL_DMA_SetPeriphRequest) + LL_DMA_SetPeriphRequest 0x080013eb Thumb Code 30 i2cs.o(i.LL_DMA_SetPeriphRequest) + i.LL_DMA_SetPeriphSize 0x08001408 Section 0 adc.o(i.LL_DMA_SetPeriphSize) + LL_DMA_SetPeriphSize 0x08001409 Thumb Code 16 adc.o(i.LL_DMA_SetPeriphSize) + i.LL_DMA_SetPeriphSize 0x0800141c Section 0 i2c.o(i.LL_DMA_SetPeriphSize) + LL_DMA_SetPeriphSize 0x0800141d Thumb Code 16 i2c.o(i.LL_DMA_SetPeriphSize) + i.LL_DMA_SetPeriphSize 0x08001430 Section 0 usart.o(i.LL_DMA_SetPeriphSize) + LL_DMA_SetPeriphSize 0x08001431 Thumb Code 16 usart.o(i.LL_DMA_SetPeriphSize) + i.LL_GPIO_Init 0x08001444 Section 0 stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) + i.LL_GPIO_IsInputPinSet 0x08001580 Section 0 app_flow.o(i.LL_GPIO_IsInputPinSet) + LL_GPIO_IsInputPinSet 0x08001581 Thumb Code 14 app_flow.o(i.LL_GPIO_IsInputPinSet) + i.LL_GPIO_IsInputPinSet 0x0800158e Section 0 key.o(i.LL_GPIO_IsInputPinSet) + LL_GPIO_IsInputPinSet 0x0800158f Thumb Code 14 key.o(i.LL_GPIO_IsInputPinSet) + i.LL_GPIO_SetPinMode 0x0800159c Section 0 app_hart.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x0800159d Thumb Code 38 app_hart.o(i.LL_GPIO_SetPinMode) + i.LL_GPIO_SetPinMode 0x080015c2 Section 0 key.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x080015c3 Thumb Code 38 key.o(i.LL_GPIO_SetPinMode) + i.LL_GPIO_SetPinMode 0x080015e8 Section 0 pdctrl.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x080015e9 Thumb Code 38 pdctrl.o(i.LL_GPIO_SetPinMode) + i.LL_GPIO_SetPinMode 0x0800160e Section 0 mode_pwm.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x0800160f Thumb Code 38 mode_pwm.o(i.LL_GPIO_SetPinMode) + i.LL_GPIO_SetPinMode 0x08001634 Section 0 mode_pwmp.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x08001635 Thumb Code 38 mode_pwmp.o(i.LL_GPIO_SetPinMode) + i.LL_GPIO_SetPinMode 0x0800165a Section 0 leds.o(i.LL_GPIO_SetPinMode) + LL_GPIO_SetPinMode 0x0800165b Thumb Code 38 leds.o(i.LL_GPIO_SetPinMode) + i.LL_I2C_DMA_GetRegAddr 0x08001680 Section 0 i2cs.o(i.LL_I2C_DMA_GetRegAddr) + LL_I2C_DMA_GetRegAddr 0x08001681 Thumb Code 12 i2cs.o(i.LL_I2C_DMA_GetRegAddr) + i.LL_I2C_HandleTransfer 0x0800168c Section 0 i2cs.o(i.LL_I2C_HandleTransfer) + LL_I2C_HandleTransfer 0x0800168d Thumb Code 46 i2cs.o(i.LL_I2C_HandleTransfer) + i.LL_I2C_Init 0x080016c0 Section 0 stm32l4xx_ll_i2c.o(i.LL_I2C_Init) + i.LL_IncTick 0x0800172c Section 0 sys.o(i.LL_IncTick) + i.LL_Init1msTick 0x0800173c Section 0 stm32l4xx_ll_utils.o(i.LL_Init1msTick) + i.LL_RCC_GetUARTClockFreq 0x08001758 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) + i.LL_RCC_GetUSARTClockFreq 0x08001824 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) + i.LL_RCC_HSI_IsReady 0x08001938 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) + LL_RCC_HSI_IsReady 0x08001939 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_HSI_IsReady) + i.LL_RCC_LSE_IsReady 0x08001948 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) + LL_RCC_LSE_IsReady 0x08001949 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_LSE_IsReady) + i.LL_RCC_MSI_GetRange 0x08001958 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) + LL_RCC_MSI_GetRange 0x08001959 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRange) + i.LL_RCC_MSI_GetRangeAfterStandby 0x08001968 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) + LL_RCC_MSI_GetRangeAfterStandby 0x08001969 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_GetRangeAfterStandby) + i.LL_RCC_MSI_IsEnabledRangeSelect 0x08001978 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) + LL_RCC_MSI_IsEnabledRangeSelect 0x08001979 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_MSI_IsEnabledRangeSelect) + i.LL_RCC_PLL_GetDivider 0x08001988 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) + LL_RCC_PLL_GetDivider 0x08001989 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetDivider) + i.LL_RCC_PLL_GetMainSource 0x08001998 Section 0 stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) + LL_RCC_PLL_GetMainSource 0x08001999 Thumb Code 10 stm32l4xx_ll_rcc.o(i.LL_RCC_PLL_GetMainSource) + i.LL_RCC_SetADCClockSource 0x080019a8 Section 0 adc.o(i.LL_RCC_SetADCClockSource) + LL_RCC_SetADCClockSource 0x080019a9 Thumb Code 14 adc.o(i.LL_RCC_SetADCClockSource) + i.LL_SPI_Init 0x080019bc Section 0 stm32l4xx_ll_spi.o(i.LL_SPI_Init) + i.LL_SetSystemCoreClock 0x08001a2c Section 0 stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) + i.LL_TIM_Init 0x08001a38 Section 0 stm32l4xx_ll_tim.o(i.LL_TIM_Init) + i.LL_TIM_OC_DisableFast 0x08001af8 Section 0 tim.o(i.LL_TIM_OC_DisableFast) + LL_TIM_OC_DisableFast 0x08001af9 Thumb Code 100 tim.o(i.LL_TIM_OC_DisableFast) + i.LL_TIM_OC_EnablePreload 0x08001b60 Section 0 tim.o(i.LL_TIM_OC_EnablePreload) + LL_TIM_OC_EnablePreload 0x08001b61 Thumb Code 100 tim.o(i.LL_TIM_OC_EnablePreload) + i.LL_TIM_OC_Init 0x08001bc8 Section 0 stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) + i.LL_USART_DMA_GetRegAddr 0x08001c20 Section 0 uarts.o(i.LL_USART_DMA_GetRegAddr) + LL_USART_DMA_GetRegAddr 0x08001c21 Thumb Code 12 uarts.o(i.LL_USART_DMA_GetRegAddr) + i.LL_USART_Init 0x08001c2c Section 0 stm32l4xx_ll_usart.o(i.LL_USART_Init) + i.LL_mDelay 0x08001d0c Section 0 stm32l4xx_ll_utils.o(i.LL_mDelay) + i.MX_ADC1_Init 0x08001d2c Section 0 adc.o(i.MX_ADC1_Init) + i.MX_ADC2_Init 0x08002054 Section 0 adc.o(i.MX_ADC2_Init) + i.MX_DAC1_Init 0x080021d4 Section 0 dac.o(i.MX_DAC1_Init) + i.MX_DMA_Init 0x08002298 Section 0 dma.o(i.MX_DMA_Init) + i.MX_GPIO_Init 0x08002394 Section 0 gpio.o(i.MX_GPIO_Init) + i.MX_I2C1_Init 0x0800258c Section 0 i2c.o(i.MX_I2C1_Init) + i.MX_SPI1_Init 0x0800271c Section 0 spi.o(i.MX_SPI1_Init) + i.MX_SPI2_Init 0x080027b4 Section 0 spi.o(i.MX_SPI2_Init) + i.MX_TIM2_Init 0x080028d0 Section 0 tim.o(i.MX_TIM2_Init) + i.MX_TIM3_Init 0x0800299c Section 0 tim.o(i.MX_TIM3_Init) + i.MX_TIM4_Init 0x08002a68 Section 0 tim.o(i.MX_TIM4_Init) + i.MX_TIM6_Init 0x08002aec Section 0 tim.o(i.MX_TIM6_Init) + i.MX_TIM7_Init 0x08002b5c Section 0 tim.o(i.MX_TIM7_Init) + i.MX_UART5_Init 0x08002bcc Section 0 usart.o(i.MX_UART5_Init) + i.MX_USART1_UART_Init 0x08002d50 Section 0 usart.o(i.MX_USART1_UART_Init) + i.MemManage_Handler 0x08002eb8 Section 0 stm32l4xx_it.o(i.MemManage_Handler) + i.NMI_Handler 0x08002eba Section 0 stm32l4xx_it.o(i.NMI_Handler) + i.NVIC_EncodePriority 0x08002ebc Section 0 adc.o(i.NVIC_EncodePriority) + NVIC_EncodePriority 0x08002ebd Thumb Code 50 adc.o(i.NVIC_EncodePriority) + i.NVIC_EncodePriority 0x08002eee Section 0 dma.o(i.NVIC_EncodePriority) + NVIC_EncodePriority 0x08002eef Thumb Code 50 dma.o(i.NVIC_EncodePriority) + i.NVIC_EncodePriority 0x08002f20 Section 0 tim.o(i.NVIC_EncodePriority) + NVIC_EncodePriority 0x08002f21 Thumb Code 50 tim.o(i.NVIC_EncodePriority) + i.NVIC_EncodePriority 0x08002f52 Section 0 usart.o(i.NVIC_EncodePriority) + NVIC_EncodePriority 0x08002f53 Thumb Code 50 usart.o(i.NVIC_EncodePriority) + i.OC1Config 0x08002f84 Section 0 stm32l4xx_ll_tim.o(i.OC1Config) + OC1Config 0x08002f85 Thumb Code 126 stm32l4xx_ll_tim.o(i.OC1Config) + i.OC2Config 0x0800301c Section 0 stm32l4xx_ll_tim.o(i.OC2Config) + OC2Config 0x0800301d Thumb Code 134 stm32l4xx_ll_tim.o(i.OC2Config) + i.OC3Config 0x080030bc Section 0 stm32l4xx_ll_tim.o(i.OC3Config) + OC3Config 0x080030bd Thumb Code 132 stm32l4xx_ll_tim.o(i.OC3Config) + i.OC4Config 0x08003158 Section 0 stm32l4xx_ll_tim.o(i.OC4Config) + OC4Config 0x08003159 Thumb Code 104 stm32l4xx_ll_tim.o(i.OC4Config) + i.OC5Config 0x080031d8 Section 0 stm32l4xx_ll_tim.o(i.OC5Config) + OC5Config 0x080031d9 Thumb Code 100 stm32l4xx_ll_tim.o(i.OC5Config) + i.OC6Config 0x08003254 Section 0 stm32l4xx_ll_tim.o(i.OC6Config) + OC6Config 0x08003255 Thumb Code 100 stm32l4xx_ll_tim.o(i.OC6Config) + i.PendSV_Handler 0x080032d0 Section 0 stm32l4xx_it.o(i.PendSV_Handler) + i.PeriphCommonClock_Config 0x080032d4 Section 0 main.o(i.PeriphCommonClock_Config) + i.RCC_GetHCLKClockFreq 0x08003314 Section 0 stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) + RCC_GetHCLKClockFreq 0x08003315 Thumb Code 18 stm32l4xx_ll_rcc.o(i.RCC_GetHCLKClockFreq) + i.RCC_GetPCLK1ClockFreq 0x08003330 Section 0 stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) + RCC_GetPCLK1ClockFreq 0x08003331 Thumb Code 20 stm32l4xx_ll_rcc.o(i.RCC_GetPCLK1ClockFreq) + i.RCC_GetPCLK2ClockFreq 0x0800334c Section 0 stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) + RCC_GetPCLK2ClockFreq 0x0800334d Thumb Code 20 stm32l4xx_ll_rcc.o(i.RCC_GetPCLK2ClockFreq) + i.RCC_GetSystemClockFreq 0x08003368 Section 0 stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) + RCC_GetSystemClockFreq 0x08003369 Thumb Code 154 stm32l4xx_ll_rcc.o(i.RCC_GetSystemClockFreq) + i.RCC_PLL_GetFreqDomain_SYS 0x08003414 Section 0 stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) + RCC_PLL_GetFreqDomain_SYS 0x08003415 Thumb Code 176 stm32l4xx_ll_rcc.o(i.RCC_PLL_GetFreqDomain_SYS) + i.SVC_Handler 0x080034d4 Section 0 stm32l4xx_it.o(i.SVC_Handler) + i.SysTick_Handler 0x080034d6 Section 0 stm32l4xx_it.o(i.SysTick_Handler) + i.SysTick_Init 0x080034d8 Section 0 delay.o(i.SysTick_Init) + i.SystemClock_Config 0x080034f0 Section 0 main.o(i.SystemClock_Config) + i.SystemInit 0x08003588 Section 0 system_stm32l4xx.o(i.SystemInit) + i.TIM4_IRQHandler 0x0800358c Section 0 stm32l4xx_it.o(i.TIM4_IRQHandler) + i.TIM6_DAC_IRQHandler 0x08003608 Section 0 stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) + i.TIM7_IRQHandler 0x08003698 Section 0 stm32l4xx_it.o(i.TIM7_IRQHandler) + i.UART5_IRQHandler 0x0800371c Section 0 stm32l4xx_it.o(i.UART5_IRQHandler) + i.USART1_IRQHandler 0x08003728 Section 0 stm32l4xx_it.o(i.USART1_IRQHandler) + i.UsageFault_Handler 0x08003734 Section 0 stm32l4xx_it.o(i.UsageFault_Handler) + i.__0sprintf 0x08003738 Section 0 printfa.o(i.__0sprintf) + i.__NVIC_EnableIRQ 0x08003760 Section 0 adc.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x08003761 Thumb Code 26 adc.o(i.__NVIC_EnableIRQ) + i.__NVIC_EnableIRQ 0x0800377a Section 0 dma.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x0800377b Thumb Code 26 dma.o(i.__NVIC_EnableIRQ) + i.__NVIC_EnableIRQ 0x08003794 Section 0 tim.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x08003795 Thumb Code 26 tim.o(i.__NVIC_EnableIRQ) + i.__NVIC_EnableIRQ 0x080037ae Section 0 usart.o(i.__NVIC_EnableIRQ) + __NVIC_EnableIRQ 0x080037af Thumb Code 26 usart.o(i.__NVIC_EnableIRQ) + i.__NVIC_GetPriorityGrouping 0x080037c8 Section 0 dma.o(i.__NVIC_GetPriorityGrouping) + __NVIC_GetPriorityGrouping 0x080037c9 Thumb Code 10 dma.o(i.__NVIC_GetPriorityGrouping) + i.__NVIC_SetPriority 0x080037d8 Section 0 adc.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x080037d9 Thumb Code 32 adc.o(i.__NVIC_SetPriority) + i.__NVIC_SetPriority 0x080037f8 Section 0 dma.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x080037f9 Thumb Code 32 dma.o(i.__NVIC_SetPriority) + i.__NVIC_SetPriority 0x08003818 Section 0 tim.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x08003819 Thumb Code 32 tim.o(i.__NVIC_SetPriority) + i.__NVIC_SetPriority 0x08003838 Section 0 usart.o(i.__NVIC_SetPriority) + __NVIC_SetPriority 0x08003839 Thumb Code 32 usart.o(i.__NVIC_SetPriority) + i.__scatterload_copy 0x08003858 Section 14 handlers.o(i.__scatterload_copy) + i.__scatterload_null 0x08003866 Section 2 handlers.o(i.__scatterload_null) + i.__scatterload_zeroinit 0x08003868 Section 14 handlers.o(i.__scatterload_zeroinit) + i._dma_enable 0x08003878 Section 0 spis.o(i._dma_enable) + _dma_enable 0x08003879 Thumb Code 144 spis.o(i._dma_enable) + i._fdb_continue_ff_addr 0x0800390c Section 0 fdb_utils.o(i._fdb_continue_ff_addr) + i._fdb_flash_erase 0x08003976 Section 0 fdb_utils.o(i._fdb_flash_erase) + i._fdb_flash_read 0x08003994 Section 0 fdb_utils.o(i._fdb_flash_read) + i._fdb_flash_write 0x080039b2 Section 0 fdb_utils.o(i._fdb_flash_write) + i._fdb_get_status 0x080039d0 Section 0 fdb_utils.o(i._fdb_get_status) + i._fdb_init_ex 0x080039fa Section 0 fdb.o(i._fdb_init_ex) + i._fdb_init_finish 0x08003a80 Section 0 fdb.o(i._fdb_init_finish) + i._fdb_kv_load 0x08003a98 Section 0 fdb_kvdb.o(i._fdb_kv_load) + _fdb_kv_load 0x08003a99 Thumb Code 130 fdb_kvdb.o(i._fdb_kv_load) + i._fdb_read_status 0x08003b28 Section 0 fdb_utils.o(i._fdb_read_status) + i._fdb_set_status 0x08003b4e Section 0 fdb_utils.o(i._fdb_set_status) + i._fdb_write_status 0x08003b7c Section 0 fdb_utils.o(i._fdb_write_status) + i._fp_digits 0x08003bb4 Section 0 printfa.o(i._fp_digits) + _fp_digits 0x08003bb5 Thumb Code 334 printfa.o(i._fp_digits) + i._hardware_enable 0x08003d1e Section 0 spis.o(i._hardware_enable) + _hardware_enable 0x08003d1f Thumb Code 54 spis.o(i._hardware_enable) + i._malloc 0x08003d54 Section 0 i2cs.o(i._malloc) + _malloc 0x08003d55 Thumb Code 8 i2cs.o(i._malloc) + i._memset 0x08003d5c Section 0 params.o(i._memset) + _memset 0x08003d5d Thumb Code 14 params.o(i._memset) + i._memset 0x08003d6a Section 0 mode_pwmp_hd.o(i._memset) + _memset 0x08003d6b Thumb Code 14 mode_pwmp_hd.o(i._memset) + i._memset 0x08003d78 Section 0 adcs.o(i._memset) + _memset 0x08003d79 Thumb Code 14 adcs.o(i._memset) + i._memset 0x08003d86 Section 0 lib.o(i._memset) + _memset 0x08003d87 Thumb Code 14 lib.o(i._memset) + i._memset 0x08003d94 Section 0 cmac.o(i._memset) + _memset 0x08003d95 Thumb Code 14 cmac.o(i._memset) + i._mstrlen 0x08003da2 Section 0 app_hart.o(i._mstrlen) + _mstrlen 0x08003da3 Thumb Code 16 app_hart.o(i._mstrlen) + i._mstrlen 0x08003db2 Section 0 at_hc24.o(i._mstrlen) + _mstrlen 0x08003db3 Thumb Code 16 at_hc24.o(i._mstrlen) + i._pid_position 0x08003dc4 Section 0 pid_hd.o(i._pid_position) + _pid_position 0x08003dc5 Thumb Code 366 pid_hd.o(i._pid_position) + i._printf_core 0x08003f48 Section 0 printfa.o(i._printf_core) + _printf_core 0x08003f49 Thumb Code 1744 printfa.o(i._printf_core) + i._printf_post_padding 0x0800462a Section 0 printfa.o(i._printf_post_padding) + _printf_post_padding 0x0800462b Thumb Code 36 printfa.o(i._printf_post_padding) + i._printf_pre_padding 0x0800464e Section 0 printfa.o(i._printf_pre_padding) + _printf_pre_padding 0x0800464f Thumb Code 46 printfa.o(i._printf_pre_padding) + i._read 0x0800467c Section 0 gpios.o(i._read) + _read 0x0800467d Thumb Code 26 gpios.o(i._read) + i._read_byte 0x08004696 Section 0 i2cs.o(i._read_byte) + _read_byte 0x08004697 Thumb Code 324 i2cs.o(i._read_byte) + i._read_drdy 0x080047e0 Section 0 spis.o(i._read_drdy) + _read_drdy 0x080047e1 Thumb Code 36 spis.o(i._read_drdy) + i._read_mem_dma 0x08004804 Section 0 i2cs.o(i._read_mem_dma) + _read_mem_dma 0x08004805 Thumb Code 352 i2cs.o(i._read_mem_dma) + i._read_regs 0x08004972 Section 0 spis.o(i._read_regs) + _read_regs 0x08004973 Thumb Code 106 spis.o(i._read_regs) + i._reset 0x080049dc Section 0 gpios.o(i._reset) + _reset 0x080049dd Thumb Code 14 gpios.o(i._reset) + i._set 0x080049ea Section 0 gpios.o(i._set) + _set 0x080049eb Thumb Code 14 gpios.o(i._set) + i._set_ctrl_prm_position 0x080049f8 Section 0 pid_hd.o(i._set_ctrl_prm_position) + _set_ctrl_prm_position 0x080049f9 Thumb Code 50 pid_hd.o(i._set_ctrl_prm_position) + i._set_out_prm_position 0x08004a34 Section 0 pid_hd.o(i._set_out_prm_position) + _set_out_prm_position 0x08004a35 Thumb Code 6 pid_hd.o(i._set_out_prm_position) + i._spi_dma_callback 0x08004a3a Section 0 spis.o(i._spi_dma_callback) + _spi_dma_callback 0x08004a3b Thumb Code 44 spis.o(i._spi_dma_callback) + i._spi_dma_send 0x08004a68 Section 0 spis.o(i._spi_dma_send) + _spi_dma_send 0x08004a69 Thumb Code 96 spis.o(i._spi_dma_send) + i._spi_read_reg 0x08004acc Section 0 spis.o(i._spi_read_reg) + _spi_read_reg 0x08004acd Thumb Code 58 spis.o(i._spi_read_reg) + i._spi_write_cmd 0x08004b06 Section 0 spis.o(i._spi_write_cmd) + _spi_write_cmd 0x08004b07 Thumb Code 86 spis.o(i._spi_write_cmd) + i._spi_write_data 0x08004b5c Section 0 spis.o(i._spi_write_data) + _spi_write_data 0x08004b5d Thumb Code 106 spis.o(i._spi_write_data) + i._spi_write_reg 0x08004bc6 Section 0 spis.o(i._spi_write_reg) + _spi_write_reg 0x08004bc7 Thumb Code 58 spis.o(i._spi_write_reg) + i._sputc 0x08004c00 Section 0 printfa.o(i._sputc) + _sputc 0x08004c01 Thumb Code 10 printfa.o(i._sputc) + i._start 0x08004c0a Section 0 i2cs.o(i._start) + _start 0x08004c0b Thumb Code 114 i2cs.o(i._start) + i._stop 0x08004c7c Section 0 i2cs.o(i._stop) + _stop 0x08004c7d Thumb Code 108 i2cs.o(i._stop) + i._toggle 0x08004ce8 Section 0 gpios.o(i._toggle) + _toggle 0x08004ce9 Thumb Code 26 gpios.o(i._toggle) + i._wait_ack 0x08004d02 Section 0 i2cs.o(i._wait_ack) + _wait_ack 0x08004d03 Thumb Code 142 i2cs.o(i._wait_ack) + i._write_byte 0x08004d90 Section 0 i2cs.o(i._write_byte) + _write_byte 0x08004d91 Thumb Code 174 i2cs.o(i._write_byte) + i._write_mem_dma 0x08004e40 Section 0 i2cs.o(i._write_mem_dma) + _write_mem_dma 0x08004e41 Thumb Code 244 i2cs.o(i._write_mem_dma) + i._write_regs 0x08004f3e Section 0 spis.o(i._write_regs) + _write_regs 0x08004f3f Thumb Code 102 spis.o(i._write_regs) + i._write_word 0x08004fa4 Section 0 i2cs.o(i._write_word) + _write_word 0x08004fa5 Thumb Code 38 i2cs.o(i._write_word) + i.actual_travel_deal 0x08004fca Section 0 convert.o(i.actual_travel_deal) + i.adc_dma_callback 0x08004fe4 Section 0 adcs.o(i.adc_dma_callback) + i.adc_env_callback 0x08005038 Section 0 adcs.o(i.adc_env_callback) + i.adc_get_channels_count 0x080050e0 Section 0 adcs.o(i.adc_get_channels_count) + adc_get_channels_count 0x080050e1 Thumb Code 148 adcs.o(i.adc_get_channels_count) + i.adc_init 0x08005174 Section 0 adcs.o(i.adc_init) + i.adc_result_average 0x080052bc Section 0 adcs.o(i.adc_result_average) + i.adc_result_median 0x08005318 Section 0 adcs.o(i.adc_result_median) + i.add_round_key 0x080053f8 Section 0 aes.o(i.add_round_key) + add_round_key 0x080053f9 Thumb Code 4 aes.o(i.add_round_key) + i.aes_encrypt 0x080053fc Section 0 aes.o(i.aes_encrypt) + i.aes_set_key 0x08005454 Section 0 aes.o(i.aes_set_key) + i.align_write 0x08005556 Section 0 fdb_kvdb.o(i.align_write) + align_write 0x08005557 Thumb Code 42 fdb_kvdb.o(i.align_write) + i.alloc_kv 0x08005580 Section 0 fdb_kvdb.o(i.alloc_kv) + alloc_kv 0x08005581 Thumb Code 132 fdb_kvdb.o(i.alloc_kv) + i.alloc_kv_cb 0x0800560c Section 0 fdb_kvdb.o(i.alloc_kv_cb) + alloc_kv_cb 0x0800560d Thumb Code 48 fdb_kvdb.o(i.alloc_kv_cb) + i.allow_condition 0x0800563c Section 0 key.o(i.allow_condition) + allow_condition 0x0800563d Thumb Code 4 key.o(i.allow_condition) + i.alog_control_module 0x08005640 Section 0 mode.o(i.alog_control_module) + i.app_init 0x080056c8 Section 0 app.o(i.app_init) + i.app_preload 0x080056e8 Section 0 app.o(i.app_preload) + app_preload 0x080056e9 Thumb Code 38 app.o(i.app_preload) + i.app_start 0x08005724 Section 0 app.o(i.app_start) + i.at_cmd_name 0x08005728 Section 0 at_hc24.o(i.at_cmd_name) + at_cmd_name 0x08005729 Thumb Code 34 at_hc24.o(i.at_cmd_name) + i.at_cmd_parse 0x08005754 Section 0 at_hc24.o(i.at_cmd_parse) + i.at_cmd_search 0x080057c8 Section 0 at_hc24.o(i.at_cmd_search) + i.at_cmd_test 0x0800580c Section 0 at_hc24.o(i.at_cmd_test) + at_cmd_test 0x0800580d Thumb Code 14 at_hc24.o(i.at_cmd_test) + i.at_set_memcmp_cache 0x08005820 Section 0 at_hc24.o(i.at_set_memcmp_cache) + i.board_init 0x0800584c Section 0 board.o(i.board_init) + i.btn_inspection 0x080058f4 Section 0 app_flow.o(i.btn_inspection) + btn_inspection 0x080058f5 Thumb Code 64 app_flow.o(i.btn_inspection) + i.business_inspection 0x0800593c Section 0 app_flow.o(i.business_inspection) + business_inspection 0x0800593d Thumb Code 70 app_flow.o(i.business_inspection) + i.button_attach 0x08005990 Section 0 btn.o(i.button_attach) + i.button_handler 0x08005998 Section 0 btn.o(i.button_handler) + i.button_init 0x08005b92 Section 0 btn.o(i.button_init) + i.button_start 0x08005bd4 Section 0 btn.o(i.button_start) + i.button_stop 0x08005bf8 Section 0 btn.o(i.button_stop) + i.button_ticks 0x08005c18 Section 0 btn.o(i.button_ticks) + i.calculate_pwm_duty 0x08005c34 Section 0 pdctrl.o(i.calculate_pwm_duty) + i.calculate_pwm_freq 0x08005cb0 Section 0 pdctrl.o(i.calculate_pwm_freq) + calculate_pwm_freq 0x08005cb1 Thumb Code 66 pdctrl.o(i.calculate_pwm_freq) + i.calib_parapos_perent 0x08005cfc Section 0 board.o(i.calib_parapos_perent) + i.check_and_recovery_gc_cb 0x08005d70 Section 0 fdb_kvdb.o(i.check_and_recovery_gc_cb) + check_and_recovery_gc_cb 0x08005d71 Thumb Code 32 fdb_kvdb.o(i.check_and_recovery_gc_cb) + i.check_and_recovery_kv_cb 0x08005d90 Section 0 fdb_kvdb.o(i.check_and_recovery_kv_cb) + check_and_recovery_kv_cb 0x08005d91 Thumb Code 84 fdb_kvdb.o(i.check_and_recovery_kv_cb) + i.check_and_update_part_cache 0x08005de4 Section 0 fal_partition.o(i.check_and_update_part_cache) + check_and_update_part_cache 0x08005de5 Thumb Code 64 fal_partition.o(i.check_and_update_part_cache) + i.check_oldest_addr_cb 0x08005e2c Section 0 fdb_kvdb.o(i.check_oldest_addr_cb) + check_oldest_addr_cb 0x08005e2d Thumb Code 28 fdb_kvdb.o(i.check_oldest_addr_cb) + i.check_sec_hdr_cb 0x08005e48 Section 0 fdb_kvdb.o(i.check_sec_hdr_cb) + check_sec_hdr_cb 0x08005e49 Thumb Code 40 fdb_kvdb.o(i.check_sec_hdr_cb) + i.check_sec_hdr_cb 0x08005e70 Section 0 fdb_tsdb.o(i.check_sec_hdr_cb) + check_sec_hdr_cb 0x08005e71 Thumb Code 92 fdb_tsdb.o(i.check_sec_hdr_cb) + i.copy_and_key 0x08005ecc Section 0 aes.o(i.copy_and_key) + copy_and_key 0x08005ecd Thumb Code 132 aes.o(i.copy_and_key) + i.copy_block 0x08005f50 Section 0 aes.o(i.copy_block) + copy_block 0x08005f51 Thumb Code 66 aes.o(i.copy_block) + i.copy_block_nn 0x08005f92 Section 0 aes.o(i.copy_block_nn) + copy_block_nn 0x08005f93 Thumb Code 18 aes.o(i.copy_block_nn) + i.crc16_compute 0x08005fa4 Section 0 lib.o(i.crc16_compute) + i.create_kv_blob 0x08005fdc Section 0 fdb_kvdb.o(i.create_kv_blob) + create_kv_blob 0x08005fdd Thumb Code 376 fdb_kvdb.o(i.create_kv_blob) + i.current_inspection 0x08006158 Section 0 app_flow.o(i.current_inspection) + current_inspection 0x08006159 Thumb Code 164 app_flow.o(i.current_inspection) + i.dac_dinit 0x08006210 Section 0 pdctrl.o(i.dac_dinit) + dac_dinit 0x08006211 Thumb Code 22 pdctrl.o(i.dac_dinit) + i.dac_init 0x0800622c Section 0 pdctrl.o(i.dac_init) + dac_init 0x0800622d Thumb Code 34 pdctrl.o(i.dac_init) + i.dead_zone_deal 0x08006258 Section 0 convert.o(i.dead_zone_deal) + i.dec_format_hex 0x08006284 Section 0 lib.o(i.dec_format_hex) + i.del_kv 0x080062d0 Section 0 fdb_kvdb.o(i.del_kv) + del_kv 0x080062d1 Thumb Code 242 fdb_kvdb.o(i.del_kv) + i.delay 0x080063c2 Section 0 i2cs.o(i.delay) + delay 0x080063c3 Thumb Code 36 i2cs.o(i.delay) + i.delay_init 0x080063e8 Section 0 delay.o(i.delay_init) + i.delay_ms 0x08006400 Section 0 delay.o(i.delay_ms) + i.delay_tick 0x08006436 Section 0 delay.o(i.delay_tick) + i.delay_us 0x08006444 Section 0 delay.o(i.delay_us) + i.dma_rx_cb 0x0800647c Section 0 eeprom_m95.o(i.dma_rx_cb) + dma_rx_cb 0x0800647d Thumb Code 58 eeprom_m95.o(i.dma_rx_cb) + i.dma_tx_cb 0x080064b6 Section 0 eeprom_m95.o(i.dma_tx_cb) + dma_tx_cb 0x080064b7 Thumb Code 62 eeprom_m95.o(i.dma_tx_cb) + i.do_gc 0x080064f4 Section 0 fdb_kvdb.o(i.do_gc) + do_gc 0x080064f5 Thumb Code 154 fdb_kvdb.o(i.do_gc) + i.driver_dinit 0x08006590 Section 0 board.o(i.driver_dinit) + i.driver_init 0x080065c0 Section 0 board.o(i.driver_init) + i.eeprom_fm24_disable 0x080065f0 Section 0 eeprom_fm24.o(i.eeprom_fm24_disable) + i.eeprom_fm24_dma_rx_cb 0x08006600 Section 0 eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb) + eeprom_fm24_dma_rx_cb 0x08006601 Thumb Code 80 eeprom_fm24.o(i.eeprom_fm24_dma_rx_cb) + i.eeprom_fm24_dma_tx_cb 0x08006650 Section 0 eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb) + eeprom_fm24_dma_tx_cb 0x08006651 Thumb Code 80 eeprom_fm24.o(i.eeprom_fm24_dma_tx_cb) + i.eeprom_fm24_enable 0x080066a0 Section 0 eeprom_fm24.o(i.eeprom_fm24_enable) + i.eeprom_fm24_init 0x080066b0 Section 0 eeprom_fm24.o(i.eeprom_fm24_init) + i.eeprom_fm24_read 0x080066f4 Section 0 eeprom_fm24.o(i.eeprom_fm24_read) + i.eeprom_fm24_write 0x0800671c Section 0 eeprom_fm24.o(i.eeprom_fm24_write) + i.eeprom_lc02b_init 0x080067e0 Section 0 eeprom_lc02b.o(i.eeprom_lc02b_init) + i.eeprom_m95_disable 0x08006810 Section 0 eeprom_m95.o(i.eeprom_m95_disable) + i.eeprom_m95_enable 0x08006820 Section 0 eeprom_m95.o(i.eeprom_m95_enable) + i.eeprom_m95_init 0x08006830 Section 0 eeprom_m95.o(i.eeprom_m95_init) + i.eeprom_m95_read 0x08006994 Section 0 eeprom_m95.o(i.eeprom_m95_read) + i.eeprom_m95_ready 0x08006a38 Section 0 eeprom_m95.o(i.eeprom_m95_ready) + eeprom_m95_ready 0x08006a39 Thumb Code 48 eeprom_m95.o(i.eeprom_m95_ready) + i.eeprom_m95_write 0x08006a6c Section 0 eeprom_m95.o(i.eeprom_m95_write) + i.erase 0x08006bba Section 0 fal_eeprom95_port.o(i.erase) + erase 0x08006bbb Thumb Code 6 fal_eeprom95_port.o(i.erase) + i.erase 0x08006bc0 Section 0 fal_eeprom24_port.o(i.erase) + erase 0x08006bc1 Thumb Code 4 fal_eeprom24_port.o(i.erase) + i.execute_dac 0x08006bc4 Section 0 mode_pwmp_hd.o(i.execute_dac) + i.execute_dac_plan1 0x08006bf4 Section 0 mode_pwmp_hd.o(i.execute_dac_plan1) + execute_dac_plan1 0x08006bf5 Thumb Code 540 mode_pwmp_hd.o(i.execute_dac_plan1) + i.execute_dac_plan2 0x08006e3e Section 0 mode_pwmp_hd.o(i.execute_dac_plan2) + execute_dac_plan2 0x08006e3f Thumb Code 4 mode_pwmp_hd.o(i.execute_dac_plan2) + i.execute_dac_plan3 0x08006e42 Section 0 mode_pwmp_hd.o(i.execute_dac_plan3) + execute_dac_plan3 0x08006e43 Thumb Code 4 mode_pwmp_hd.o(i.execute_dac_plan3) + i.execute_dac_plan4 0x08006e46 Section 0 mode_pwmp_hd.o(i.execute_dac_plan4) + execute_dac_plan4 0x08006e47 Thumb Code 4 mode_pwmp_hd.o(i.execute_dac_plan4) + i.execute_pid_init 0x08006e4c Section 0 mode_pwmp_hd.o(i.execute_pid_init) + i.fal_execution_get 0x08006e8c Section 0 fal_execution.o(i.fal_execution_get) + fal_execution_get 0x08006e8d Thumb Code 40 fal_execution.o(i.fal_execution_get) + i.fal_execution_init 0x08006ec0 Section 0 fal_execution.o(i.fal_execution_init) + i.fal_execution_kv_read 0x08007054 Section 0 fal_execution.o(i.fal_execution_kv_read) + i.fal_execution_kv_write 0x08007120 Section 0 fal_execution.o(i.fal_execution_kv_write) + i.fal_execution_set_cmac 0x080071ec Section 0 fal_execution.o(i.fal_execution_set_cmac) + fal_execution_set_cmac 0x080071ed Thumb Code 102 fal_execution.o(i.fal_execution_set_cmac) + i.fal_execution_set_crc 0x0800725c Section 0 fal_execution.o(i.fal_execution_set_crc) + fal_execution_set_crc 0x0800725d Thumb Code 20 fal_execution.o(i.fal_execution_set_crc) + i.fal_flash_device_find 0x08007274 Section 0 fal_flash.o(i.fal_flash_device_find) + i.fal_flash_init 0x080072a0 Section 0 fal_flash.o(i.fal_flash_init) + i.fal_init 0x080072d4 Section 0 fal.o(i.fal_init) + i.fal_partition_erase 0x08007300 Section 0 fal_partition.o(i.fal_partition_erase) + i.fal_partition_find 0x08007338 Section 0 fal_partition.o(i.fal_partition_find) + i.fal_partition_init 0x0800736c Section 0 fal_partition.o(i.fal_partition_init) + i.fal_partition_read 0x08007398 Section 0 fal_partition.o(i.fal_partition_read) + i.fal_partition_write 0x080073d6 Section 0 fal_partition.o(i.fal_partition_write) + i.fdb_blob_make 0x08007414 Section 0 fdb_utils.o(i.fdb_blob_make) + i.fdb_calc_crc32 0x0800741c Section 0 fdb_utils.o(i.fdb_calc_crc32) + i.fdb_kv_get_blob 0x08007444 Section 0 fdb_kvdb.o(i.fdb_kv_get_blob) + i.fdb_kv_set_blob 0x0800747c Section 0 fdb_kvdb.o(i.fdb_kv_set_blob) + i.fdb_kv_set_default 0x080074ae Section 0 fdb_kvdb.o(i.fdb_kv_set_default) + i.fdb_kvdb_control 0x08007540 Section 0 fdb_kvdb.o(i.fdb_kvdb_control) + i.fdb_kvdb_init 0x08007580 Section 0 fdb_kvdb.o(i.fdb_kvdb_init) + i.fdb_tsdb_control 0x08007640 Section 0 fdb_tsdb.o(i.fdb_tsdb_control) + i.fdb_tsdb_init 0x080076a0 Section 0 fdb_tsdb.o(i.fdb_tsdb_init) + i.find_kv 0x080077ac Section 0 fdb_kvdb.o(i.find_kv) + find_kv 0x080077ad Thumb Code 78 fdb_kvdb.o(i.find_kv) + i.find_kv_cb 0x080077fa Section 0 fdb_kvdb.o(i.find_kv_cb) + find_kv_cb 0x080077fb Thumb Code 60 fdb_kvdb.o(i.find_kv_cb) + i.find_kv_no_cache 0x08007838 Section 0 fdb_kvdb.o(i.find_kv_no_cache) + find_kv_no_cache 0x08007839 Thumb Code 30 fdb_kvdb.o(i.find_kv_no_cache) + i.find_next_kv_addr 0x0800785c Section 0 fdb_kvdb.o(i.find_next_kv_addr) + find_next_kv_addr 0x0800785d Thumb Code 154 fdb_kvdb.o(i.find_next_kv_addr) + i.flash_device_find_by_part 0x080078fc Section 0 fal_partition.o(i.flash_device_find_by_part) + flash_device_find_by_part 0x080078fd Thumb Code 16 fal_partition.o(i.flash_device_find_by_part) + i.flow_init 0x08007914 Section 0 app_flow.o(i.flow_init) + i.flow_start 0x0800792c Section 0 app_flow.o(i.flow_start) + i.format_all_cb 0x08007954 Section 0 fdb_tsdb.o(i.format_all_cb) + format_all_cb 0x08007955 Thumb Code 16 fdb_tsdb.o(i.format_all_cb) + i.format_sector 0x08007964 Section 0 fdb_kvdb.o(i.format_sector) + format_sector 0x08007965 Thumb Code 136 fdb_kvdb.o(i.format_sector) + i.format_sector 0x080079f4 Section 0 fdb_tsdb.o(i.format_sector) + format_sector 0x080079f5 Thumb Code 80 fdb_tsdb.o(i.format_sector) + i.free 0x08007a48 Section 0 malloc.o(i.free) + i.gc_check_cb 0x08007a98 Section 0 fdb_kvdb.o(i.gc_check_cb) + gc_check_cb 0x08007a99 Thumb Code 16 fdb_kvdb.o(i.gc_check_cb) + i.gc_collect 0x08007aa8 Section 0 fdb_kvdb.o(i.gc_collect) + gc_collect 0x08007aa9 Thumb Code 6 fdb_kvdb.o(i.gc_collect) + i.gc_collect_by_free_size 0x08007ab0 Section 0 fdb_kvdb.o(i.gc_collect_by_free_size) + gc_collect_by_free_size 0x08007ab1 Thumb Code 72 fdb_kvdb.o(i.gc_collect_by_free_size) + i.get_actual_travel 0x08007b00 Section 0 board.o(i.get_actual_travel) + i.get_actual_travel_adc 0x08007b6c Section 0 board.o(i.get_actual_travel_adc) + i.get_current 0x08007b74 Section 0 board.o(i.get_current) + i.get_current_deal 0x08007bb4 Section 0 board.o(i.get_current_deal) + i.get_kv 0x08007bd8 Section 0 fdb_kvdb.o(i.get_kv) + get_kv 0x08007bd9 Thumb Code 74 fdb_kvdb.o(i.get_kv) + i.get_kv_from_cache 0x08007c22 Section 0 fdb_kvdb.o(i.get_kv_from_cache) + get_kv_from_cache 0x08007c23 Thumb Code 142 fdb_kvdb.o(i.get_kv_from_cache) + i.get_next_kv_addr 0x08007cb6 Section 0 fdb_kvdb.o(i.get_next_kv_addr) + get_next_kv_addr 0x08007cb7 Thumb Code 96 fdb_kvdb.o(i.get_next_kv_addr) + i.get_next_sector_addr 0x08007d16 Section 0 fdb_kvdb.o(i.get_next_sector_addr) + get_next_sector_addr 0x08007d17 Thumb Code 38 fdb_kvdb.o(i.get_next_sector_addr) + i.get_next_sector_addr 0x08007d3c Section 0 fdb_tsdb.o(i.get_next_sector_addr) + get_next_sector_addr 0x08007d3d Thumb Code 30 fdb_tsdb.o(i.get_next_sector_addr) + i.get_pid_travel 0x08007d5c Section 0 convert.o(i.get_pid_travel) + i.get_pressure 0x08007d78 Section 0 board.o(i.get_pressure) + i.get_pwmp_control_kd 0x08007e08 Section 0 mode_pwmp_hd.o(i.get_pwmp_control_kd) + get_pwmp_control_kd 0x08007e09 Thumb Code 10 mode_pwmp_hd.o(i.get_pwmp_control_kd) + i.get_pwmp_control_ki 0x08007e18 Section 0 mode_pwmp_hd.o(i.get_pwmp_control_ki) + get_pwmp_control_ki 0x08007e19 Thumb Code 10 mode_pwmp_hd.o(i.get_pwmp_control_ki) + i.get_pwmp_control_kp 0x08007e28 Section 0 mode_pwmp_hd.o(i.get_pwmp_control_kp) + get_pwmp_control_kp 0x08007e29 Thumb Code 22 mode_pwmp_hd.o(i.get_pwmp_control_kp) + i.get_sector_from_cache 0x08007e48 Section 0 fdb_kvdb.o(i.get_sector_from_cache) + get_sector_from_cache 0x08007e49 Thumb Code 42 fdb_kvdb.o(i.get_sector_from_cache) + i.get_show_travel 0x08007e74 Section 0 convert.o(i.get_show_travel) + i.get_temperature 0x08007e90 Section 0 board.o(i.get_temperature) + i.get_time 0x08007eb8 Section 0 fal_execution.o(i.get_time) + get_time 0x08007eb9 Thumb Code 92 fal_execution.o(i.get_time) + i.get_time_tangent 0x08007f14 Section 0 mode_pwmp_hd.o(i.get_time_tangent) + get_time_tangent 0x08007f15 Thumb Code 22 mode_pwmp_hd.o(i.get_time_tangent) + i.get_timestamp 0x08007f30 Section 0 board.o(i.get_timestamp) + i.get_weekday 0x08007f60 Section 0 lib.o(i.get_weekday) + i.gpio_create 0x08007fac Section 0 gpios.o(i.gpio_create) + i.h24_bluetooth_output 0x08007ff4 Section 0 app_hart.o(i.h24_bluetooth_output) + h24_bluetooth_output 0x08007ff5 Thumb Code 20 app_hart.o(i.h24_bluetooth_output) + i.h24_bluetooth_output_dbg 0x0800800c Section 0 app_hart.o(i.h24_bluetooth_output_dbg) + i.h24_bluetooth_work 0x08008010 Section 0 app_hart.o(i.h24_bluetooth_work) + i.hart_ble_dinit 0x0800811c Section 0 app_hart.o(i.hart_ble_dinit) + i.hart_ble_init 0x0800817c Section 0 app_hart.o(i.hart_ble_init) + i.hart_rx_cb 0x0800821c Section 0 app_hart.o(i.hart_rx_cb) + hart_rx_cb 0x0800821d Thumb Code 66 app_hart.o(i.hart_rx_cb) + i.hart_tx_complete_cb 0x08008264 Section 0 app_hart.o(i.hart_tx_complete_cb) + hart_tx_complete_cb 0x08008265 Thumb Code 12 app_hart.o(i.hart_tx_complete_cb) + i.hart_uart_dinit 0x08008270 Section 0 app_hart.o(i.hart_uart_dinit) + i.hart_uart_init 0x080082d8 Section 0 app_hart.o(i.hart_uart_init) + i.hex_format_dec 0x080083c0 Section 0 lib.o(i.hex_format_dec) + i.i2c_create 0x0800842c Section 0 i2cs.o(i.i2c_create) + i.i2c_create_dma 0x08008478 Section 0 i2cs.o(i.i2c_create_dma) + i.i2c_dma_callback 0x0800859a Section 0 i2cs.o(i.i2c_dma_callback) + i.i2c_dma_set_address 0x080085c8 Section 0 i2cs.o(i.i2c_dma_set_address) + i.i2c_ev_callback 0x080085ea Section 0 i2cs.o(i.i2c_ev_callback) + i.i2c_reset 0x080086dc Section 0 i2cs.o(i.i2c_reset) + i2c_reset 0x080086dd Thumb Code 18 i2cs.o(i.i2c_reset) + i.i2psb 0x080086f0 Section 0 convert.o(i.i2psb) + i.icon_inspection 0x080087d8 Section 0 app_flow.o(i.icon_inspection) + icon_inspection 0x080087d9 Thumb Code 82 app_flow.o(i.icon_inspection) + i.idle_inspection 0x0800883c Section 0 app_flow.o(i.idle_inspection) + idle_inspection 0x0800883d Thumb Code 62 app_flow.o(i.idle_inspection) + i.init 0x08008884 Section 0 fal_eeprom95_port.o(i.init) + init 0x08008885 Thumb Code 4 fal_eeprom95_port.o(i.init) + i.init 0x08008888 Section 0 fal_eeprom24_port.o(i.init) + init 0x08008889 Thumb Code 4 fal_eeprom24_port.o(i.init) + i.ip2current 0x0800888c Section 0 board.o(i.ip2current) + i.is_manual_test 0x080088b4 Section 0 mode.o(i.is_manual_test) + i.key_1_double_click_handler 0x080088c8 Section 0 key.o(i.key_1_double_click_handler) + key_1_double_click_handler 0x080088c9 Thumb Code 4 key.o(i.key_1_double_click_handler) + i.key_1_long_press_hold_handler 0x080088cc Section 0 key.o(i.key_1_long_press_hold_handler) + key_1_long_press_hold_handler 0x080088cd Thumb Code 4 key.o(i.key_1_long_press_hold_handler) + i.key_1_press_down_handler 0x080088d0 Section 0 key.o(i.key_1_press_down_handler) + key_1_press_down_handler 0x080088d1 Thumb Code 4 key.o(i.key_1_press_down_handler) + i.key_1_up_handler 0x080088d4 Section 0 key.o(i.key_1_up_handler) + key_1_up_handler 0x080088d5 Thumb Code 4 key.o(i.key_1_up_handler) + i.key_2_5_press_down 0x080088d8 Section 0 key.o(i.key_2_5_press_down) + key_2_5_press_down 0x080088d9 Thumb Code 26 key.o(i.key_2_5_press_down) + i.key_2_double_click_handler 0x080088f8 Section 0 key.o(i.key_2_double_click_handler) + key_2_double_click_handler 0x080088f9 Thumb Code 4 key.o(i.key_2_double_click_handler) + i.key_2_long_press_hold_handler 0x080088fc Section 0 key.o(i.key_2_long_press_hold_handler) + key_2_long_press_hold_handler 0x080088fd Thumb Code 4 key.o(i.key_2_long_press_hold_handler) + i.key_2_press_down_handler 0x08008900 Section 0 key.o(i.key_2_press_down_handler) + key_2_press_down_handler 0x08008901 Thumb Code 6 key.o(i.key_2_press_down_handler) + i.key_2_up_handler 0x08008906 Section 0 key.o(i.key_2_up_handler) + key_2_up_handler 0x08008907 Thumb Code 4 key.o(i.key_2_up_handler) + i.key_3_double_click_handler 0x0800890a Section 0 key.o(i.key_3_double_click_handler) + key_3_double_click_handler 0x0800890b Thumb Code 4 key.o(i.key_3_double_click_handler) + i.key_3_long_press_hold_handler 0x0800890e Section 0 key.o(i.key_3_long_press_hold_handler) + key_3_long_press_hold_handler 0x0800890f Thumb Code 4 key.o(i.key_3_long_press_hold_handler) + i.key_3_press_down_handler 0x08008912 Section 0 key.o(i.key_3_press_down_handler) + key_3_press_down_handler 0x08008913 Thumb Code 4 key.o(i.key_3_press_down_handler) + i.key_3_up_handler 0x08008916 Section 0 key.o(i.key_3_up_handler) + key_3_up_handler 0x08008917 Thumb Code 4 key.o(i.key_3_up_handler) + i.key_4_double_click_handler 0x0800891a Section 0 key.o(i.key_4_double_click_handler) + key_4_double_click_handler 0x0800891b Thumb Code 4 key.o(i.key_4_double_click_handler) + i.key_4_long_press_hold_handler 0x0800891e Section 0 key.o(i.key_4_long_press_hold_handler) + key_4_long_press_hold_handler 0x0800891f Thumb Code 4 key.o(i.key_4_long_press_hold_handler) + i.key_4_press_down_handler 0x08008922 Section 0 key.o(i.key_4_press_down_handler) + key_4_press_down_handler 0x08008923 Thumb Code 4 key.o(i.key_4_press_down_handler) + i.key_4_up_handler 0x08008926 Section 0 key.o(i.key_4_up_handler) + key_4_up_handler 0x08008927 Thumb Code 4 key.o(i.key_4_up_handler) + i.key_5_double_click_handler 0x0800892a Section 0 key.o(i.key_5_double_click_handler) + key_5_double_click_handler 0x0800892b Thumb Code 4 key.o(i.key_5_double_click_handler) + i.key_5_long_press_hold_handler 0x0800892e Section 0 key.o(i.key_5_long_press_hold_handler) + key_5_long_press_hold_handler 0x0800892f Thumb Code 4 key.o(i.key_5_long_press_hold_handler) + i.key_5_press_down_handler 0x08008932 Section 0 key.o(i.key_5_press_down_handler) + key_5_press_down_handler 0x08008933 Thumb Code 4 key.o(i.key_5_press_down_handler) + i.key_5_up_handler 0x08008936 Section 0 key.o(i.key_5_up_handler) + key_5_up_handler 0x08008937 Thumb Code 4 key.o(i.key_5_up_handler) + i.key_6_double_click_handler 0x0800893a Section 0 key.o(i.key_6_double_click_handler) + key_6_double_click_handler 0x0800893b Thumb Code 4 key.o(i.key_6_double_click_handler) + i.key_6_long_press_hold_handler 0x0800893e Section 0 key.o(i.key_6_long_press_hold_handler) + key_6_long_press_hold_handler 0x0800893f Thumb Code 4 key.o(i.key_6_long_press_hold_handler) + i.key_6_press_down_handler 0x08008942 Section 0 key.o(i.key_6_press_down_handler) + key_6_press_down_handler 0x08008943 Thumb Code 4 key.o(i.key_6_press_down_handler) + i.key_6_up_handler 0x08008946 Section 0 key.o(i.key_6_up_handler) + key_6_up_handler 0x08008947 Thumb Code 4 key.o(i.key_6_up_handler) + i.key_auto_long_press_hold_handler 0x0800894a Section 0 key.o(i.key_auto_long_press_hold_handler) + key_auto_long_press_hold_handler 0x0800894b Thumb Code 4 key.o(i.key_auto_long_press_hold_handler) + i.key_auto_press_down_handler 0x0800894e Section 0 key.o(i.key_auto_press_down_handler) + key_auto_press_down_handler 0x0800894f Thumb Code 4 key.o(i.key_auto_press_down_handler) + i.key_auto_up_handler 0x08008952 Section 0 key.o(i.key_auto_up_handler) + key_auto_up_handler 0x08008953 Thumb Code 4 key.o(i.key_auto_up_handler) + i.key_botton_start 0x08008958 Section 0 key.o(i.key_botton_start) + i.key_dinit 0x0800899c Section 0 key.o(i.key_dinit) + i.key_init 0x08008a50 Section 0 key.o(i.key_init) + i.kv_auto_update 0x08008d28 Section 0 fdb_kvdb.o(i.kv_auto_update) + kv_auto_update 0x08008d29 Thumb Code 146 fdb_kvdb.o(i.kv_auto_update) + i.kv_iterator 0x08008dce Section 0 fdb_kvdb.o(i.kv_iterator) + kv_iterator 0x08008dcf Thumb Code 114 fdb_kvdb.o(i.kv_iterator) + i.lcd_dinit 0x08008e40 Section 0 board.o(i.lcd_dinit) + i.lcd_init 0x08008e42 Section 0 board.o(i.lcd_init) + i.leds_dinit 0x08008e44 Section 0 leds.o(i.leds_dinit) + i.leds_init 0x08008e8c Section 0 leds.o(i.leds_init) + i.leds_toggle 0x08008f44 Section 0 leds.o(i.leds_toggle) + i.loop_current_convert 0x08008f64 Section 0 board.o(i.loop_current_convert) + i.lpf_init 0x08008f80 Section 0 filter.o(i.lpf_init) + i.lpf_update 0x08008fa0 Section 0 filter.o(i.lpf_update) + i.lpf_window_init 0x08008fdc Section 0 filter.o(i.lpf_window_init) + i.lpf_window_update 0x0800902a Section 0 filter.o(i.lpf_window_update) + i.main 0x0800909c Section 0 main.o(i.main) + i.malloc 0x08009180 Section 0 malloc.o(i.malloc) + i.manual_test_mode 0x080091ec Section 0 mode.o(i.manual_test_mode) + manual_test_mode 0x080091ed Thumb Code 16 mode.o(i.manual_test_mode) + i.memcpyL 0x08009200 Section 0 adcs.o(i.memcpyL) + memcpyL 0x08009201 Thumb Code 18 adcs.o(i.memcpyL) + i.memcpyL 0x08009212 Section 0 i2cs.o(i.memcpyL) + memcpyL 0x08009213 Thumb Code 18 i2cs.o(i.memcpyL) + i.memcpyL 0x08009224 Section 0 cmac.o(i.memcpyL) + memcpyL 0x08009225 Thumb Code 18 cmac.o(i.memcpyL) + i.mix_sub_columns 0x08009238 Section 0 aes.o(i.mix_sub_columns) + mix_sub_columns 0x08009239 Thumb Code 536 aes.o(i.mix_sub_columns) + i.mode_autoload_change 0x08009454 Section 0 mode.o(i.mode_autoload_change) + mode_autoload_change 0x08009455 Thumb Code 6 mode.o(i.mode_autoload_change) + i.mode_dac_dinit 0x08009460 Section 0 mode_dac.o(i.mode_dac_dinit) + i.mode_dac_process 0x0800947c Section 0 mode_dac.o(i.mode_dac_process) + i.mode_detection 0x080094a4 Section 0 mode.o(i.mode_detection) + i.mode_init 0x0800952c Section 0 mode.o(i.mode_init) + i.mode_params_save_cb 0x080095a0 Section 0 mode.o(i.mode_params_save_cb) + mode_params_save_cb 0x080095a1 Thumb Code 12 mode.o(i.mode_params_save_cb) + i.mode_pwm_dinit 0x080095b0 Section 0 mode_pwm.o(i.mode_pwm_dinit) + i.mode_pwm_process 0x080095dc Section 0 mode_pwm.o(i.mode_pwm_process) + i.mode_pwmp_dinit 0x08009618 Section 0 mode_pwmp.o(i.mode_pwmp_dinit) + i.mode_pwmp_hd_dinit 0x08009644 Section 0 mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) + i.mode_pwmp_hd_init 0x08009668 Section 0 mode_pwmp_hd.o(i.mode_pwmp_hd_init) + i.mode_pwmp_hd_process 0x08009754 Section 0 mode_pwmp_hd.o(i.mode_pwmp_hd_process) + i.mode_pwmp_process 0x08009938 Section 0 mode_pwmp.o(i.mode_pwmp_process) + i.move_kv 0x0800996c Section 0 fdb_kvdb.o(i.move_kv) + move_kv 0x0800996d Thumb Code 282 fdb_kvdb.o(i.move_kv) + i.mstrncmp 0x08009a8c Section 0 at_hc24.o(i.mstrncmp) + i.my_mem_free 0x08009aac Section 0 malloc.o(i.my_mem_free) + i.my_mem_init 0x08009b04 Section 0 malloc.o(i.my_mem_init) + i.my_mem_malloc 0x08009b40 Section 0 malloc.o(i.my_mem_malloc) + i.my_mem_perused 0x08009bdc Section 0 malloc.o(i.my_mem_perused) + i.myfree 0x08009c14 Section 0 malloc.o(i.myfree) + i.mymalloc 0x08009c58 Section 0 malloc.o(i.mymalloc) + i.mymemset 0x08009c7c Section 0 malloc.o(i.mymemset) + i.new_kv 0x08009c8a Section 0 fdb_kvdb.o(i.new_kv) + new_kv 0x08009c8b Thumb Code 62 fdb_kvdb.o(i.new_kv) + i.new_kv_ex 0x08009cc8 Section 0 fdb_kvdb.o(i.new_kv_ex) + new_kv_ex 0x08009cc9 Thumb Code 8 fdb_kvdb.o(i.new_kv_ex) + i.ntc_get_temp 0x08009cd0 Section 0 ntc_3950.o(i.ntc_get_temp) + i.ntc_lookup 0x08009d54 Section 0 ntc_3950.o(i.ntc_lookup) + ntc_lookup 0x08009d55 Thumb Code 62 ntc_3950.o(i.ntc_lookup) + i.online_offline_mode_adjust 0x08009d94 Section 0 mode.o(i.online_offline_mode_adjust) + online_offline_mode_adjust 0x08009d95 Thumb Code 8 mode.o(i.online_offline_mode_adjust) + i.params_init 0x08009da0 Section 0 params.o(i.params_init) + i.params_restart 0x08009e4c Section 0 params.o(i.params_restart) + i.part_travel_deal 0x0800a0e8 Section 0 convert.o(i.part_travel_deal) + i.pdctrl_init 0x0800a128 Section 0 pdctrl.o(i.pdctrl_init) + i.pdctrl_out 0x0800a190 Section 0 pdctrl.o(i.pdctrl_out) + i.pdctrl_pwm_set_arr 0x0800a1f4 Section 0 pdctrl.o(i.pdctrl_pwm_set_arr) + i.pdctrl_run 0x0800a228 Section 0 pdctrl.o(i.pdctrl_run) + i.pdctrl_stop 0x0800a260 Section 0 pdctrl.o(i.pdctrl_stop) + i.pid_autotune_way_set 0x0800a298 Section 0 mode_pwmp_hd.o(i.pid_autotune_way_set) + pid_autotune_way_set 0x0800a299 Thumb Code 8 mode_pwmp_hd.o(i.pid_autotune_way_set) + i.pid_constructor 0x0800a2a4 Section 0 pid.o(i.pid_constructor) + i.pid_hd_constructor 0x0800a2b4 Section 0 pid_hd.o(i.pid_hd_constructor) + i.pressure_inspection 0x0800a2d0 Section 0 app_flow.o(i.pressure_inspection) + pressure_inspection 0x0800a2d1 Thumb Code 4 app_flow.o(i.pressure_inspection) + i.pwm_dinit 0x0800a2d4 Section 0 pdctrl.o(i.pwm_dinit) + pwm_dinit 0x0800a2d5 Thumb Code 30 pdctrl.o(i.pwm_dinit) + i.pwm_init 0x0800a2f8 Section 0 pdctrl.o(i.pwm_init) + pwm_init 0x0800a2f9 Thumb Code 50 pdctrl.o(i.pwm_init) + i.pwm_output_deal 0x0800a334 Section 0 convert.o(i.pwm_output_deal) + i.pwm_output_position 0x0800a348 Section 0 board.o(i.pwm_output_position) + i.pwmp_adjust 0x0800a378 Section 0 mode_pwmp_hd.o(i.pwmp_adjust) + i.pwmp_adjust_hd_PID_tuning 0x0800a48c Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) + pwmp_adjust_hd_PID_tuning 0x0800a48d Thumb Code 280 mode_pwmp_hd.o(i.pwmp_adjust_hd_PID_tuning) + i.pwmp_adjust_hd_accurate_position0 0x0800a5b0 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) + pwmp_adjust_hd_accurate_position0 0x0800a5b1 Thumb Code 196 mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position0) + i.pwmp_adjust_hd_accurate_position100 0x0800a678 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) + pwmp_adjust_hd_accurate_position100 0x0800a679 Thumb Code 242 mode_pwmp_hd.o(i.pwmp_adjust_hd_accurate_position100) + i.pwmp_adjust_hd_bleeding 0x0800a770 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) + pwmp_adjust_hd_bleeding 0x0800a771 Thumb Code 284 mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding) + i.pwmp_adjust_hd_bleeding_position0 0x0800a890 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) + pwmp_adjust_hd_bleeding_position0 0x0800a891 Thumb Code 260 mode_pwmp_hd.o(i.pwmp_adjust_hd_bleeding_position0) + i.pwmp_adjust_hd_calculate 0x0800a998 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) + pwmp_adjust_hd_calculate 0x0800a999 Thumb Code 164 mode_pwmp_hd.o(i.pwmp_adjust_hd_calculate) + i.pwmp_adjust_hd_fail 0x0800aa44 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_fail) + pwmp_adjust_hd_fail 0x0800aa45 Thumb Code 10 mode_pwmp_hd.o(i.pwmp_adjust_hd_fail) + i.pwmp_adjust_hd_idle 0x0800aa54 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) + pwmp_adjust_hd_idle 0x0800aa55 Thumb Code 174 mode_pwmp_hd.o(i.pwmp_adjust_hd_idle) + i.pwmp_adjust_hd_pid_calculate 0x0800ab08 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) + pwmp_adjust_hd_pid_calculate 0x0800ab09 Thumb Code 490 mode_pwmp_hd.o(i.pwmp_adjust_hd_pid_calculate) + i.pwmp_adjust_hd_rough_position0 0x0800ad38 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) + pwmp_adjust_hd_rough_position0 0x0800ad39 Thumb Code 324 mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position0) + i.pwmp_adjust_hd_rough_position100 0x0800aeb0 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) + pwmp_adjust_hd_rough_position100 0x0800aeb1 Thumb Code 166 mode_pwmp_hd.o(i.pwmp_adjust_hd_rough_position100) + i.pwmp_adjust_hd_save 0x0800af5c Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_save) + pwmp_adjust_hd_save 0x0800af5d Thumb Code 56 mode_pwmp_hd.o(i.pwmp_adjust_hd_save) + i.pwmp_adjust_hd_stop 0x0800af98 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) + pwmp_adjust_hd_stop 0x0800af99 Thumb Code 44 mode_pwmp_hd.o(i.pwmp_adjust_hd_stop) + i.pwmp_adjust_hd_valve_position_change 0x0800afc8 Section 0 mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) + pwmp_adjust_hd_valve_position_change 0x0800afc9 Thumb Code 90 mode_pwmp_hd.o(i.pwmp_adjust_hd_valve_position_change) + i.pwmp_control_update 0x0800b028 Section 0 mode_pwmp_hd.o(i.pwmp_control_update) + pwmp_control_update 0x0800b029 Thumb Code 74 mode_pwmp_hd.o(i.pwmp_control_update) + i.pwmp_dinit 0x0800b088 Section 0 pdctrl.o(i.pwmp_dinit) + pwmp_dinit 0x0800b089 Thumb Code 30 pdctrl.o(i.pwmp_dinit) + i.pwmp_hd_process_state_set 0x0800b0ac Section 0 mode_pwmp_hd.o(i.pwmp_hd_process_state_set) + i.pwmp_init 0x0800b0d4 Section 0 pdctrl.o(i.pwmp_init) + pwmp_init 0x0800b0d5 Thumb Code 42 pdctrl.o(i.pwmp_init) + i.pwmp_public_params_update 0x0800b108 Section 0 mode_pwmp_hd.o(i.pwmp_public_params_update) + pwmp_public_params_update 0x0800b109 Thumb Code 84 mode_pwmp_hd.o(i.pwmp_public_params_update) + i.read 0x0800b164 Section 0 fal_eeprom24_port.o(i.read) + read 0x0800b165 Thumb Code 28 fal_eeprom24_port.o(i.read) + i.read1 0x0800b184 Section 0 fal_eeprom95_port.o(i.read1) + read1 0x0800b185 Thumb Code 26 fal_eeprom95_port.o(i.read1) + i.read2 0x0800b1a4 Section 0 fal_eeprom95_port.o(i.read2) + read2 0x0800b1a5 Thumb Code 26 fal_eeprom95_port.o(i.read2) + i.read_button_gpio 0x0800b1c4 Section 0 key.o(i.read_button_gpio) + read_button_gpio 0x0800b1c5 Thumb Code 154 key.o(i.read_button_gpio) + i.read_kv 0x0800b270 Section 0 fdb_kvdb.o(i.read_kv) + read_kv 0x0800b271 Thumb Code 288 fdb_kvdb.o(i.read_kv) + i.read_sector_info 0x0800b398 Section 0 fdb_kvdb.o(i.read_sector_info) + read_sector_info 0x0800b399 Thumb Code 346 fdb_kvdb.o(i.read_sector_info) + i.read_sector_info 0x0800b4f8 Section 0 fdb_tsdb.o(i.read_sector_info) + read_sector_info 0x0800b4f9 Thumb Code 252 fdb_tsdb.o(i.read_sector_info) + i.read_status 0x0800b5f8 Section 0 eeprom_m95.o(i.read_status) + read_status 0x0800b5f9 Thumb Code 58 eeprom_m95.o(i.read_status) + i.read_tsl 0x0800b632 Section 0 fdb_tsdb.o(i.read_tsl) + read_tsl 0x0800b633 Thumb Code 70 fdb_tsdb.o(i.read_tsl) + i.rtc_check_vlf 0x0800b678 Section 0 rtc_rx8010.o(i.rtc_check_vlf) + rtc_check_vlf 0x0800b679 Thumb Code 32 rtc_rx8010.o(i.rtc_check_vlf) + i.rtc_clock_reginit 0x0800b698 Section 0 rtc_rx8010.o(i.rtc_clock_reginit) + rtc_clock_reginit 0x0800b699 Thumb Code 70 rtc_rx8010.o(i.rtc_clock_reginit) + i.rtc_dummy_read 0x0800b6e0 Section 0 rtc_rx8010.o(i.rtc_dummy_read) + rtc_dummy_read 0x0800b6e1 Thumb Code 58 rtc_rx8010.o(i.rtc_dummy_read) + i.rtc_get_clock_time 0x0800b720 Section 0 rtc_rx8010.o(i.rtc_get_clock_time) + i.rtc_init 0x0800b728 Section 0 rtc_rx8010.o(i.rtc_init) + i.rtc_read_byte 0x0800b77c Section 0 rtc_rx8010.o(i.rtc_read_byte) + rtc_read_byte 0x0800b77d Thumb Code 124 rtc_rx8010.o(i.rtc_read_byte) + i.rtc_read_bytes 0x0800b7fc Section 0 rtc_rx8010.o(i.rtc_read_bytes) + rtc_read_bytes 0x0800b7fd Thumb Code 160 rtc_rx8010.o(i.rtc_read_bytes) + i.rtc_set_clock_time 0x0800b8a0 Section 0 rtc_rx8010.o(i.rtc_set_clock_time) + i.rtc_soft_reset 0x0800b8e8 Section 0 rtc_rx8010.o(i.rtc_soft_reset) + rtc_soft_reset 0x0800b8e9 Thumb Code 64 rtc_rx8010.o(i.rtc_soft_reset) + i.rtc_wait_vlf_clear 0x0800b928 Section 0 rtc_rx8010.o(i.rtc_wait_vlf_clear) + rtc_wait_vlf_clear 0x0800b929 Thumb Code 42 rtc_rx8010.o(i.rtc_wait_vlf_clear) + i.rtc_weekday_convert 0x0800b952 Section 0 rtc_rx8010.o(i.rtc_weekday_convert) + i.rtc_write_byte 0x0800b994 Section 0 rtc_rx8010.o(i.rtc_write_byte) + rtc_write_byte 0x0800b995 Thumb Code 124 rtc_rx8010.o(i.rtc_write_byte) + i.rtc_write_bytes 0x0800ba14 Section 0 rtc_rx8010.o(i.rtc_write_bytes) + rtc_write_bytes 0x0800ba15 Thumb Code 138 rtc_rx8010.o(i.rtc_write_bytes) + i.scheduler_time_occupancy_get 0x0800baa4 Section 0 sys.o(i.scheduler_time_occupancy_get) + i.scheduler_time_start 0x0800bad4 Section 0 sys.o(i.scheduler_time_start) + i.scheduler_time_stop 0x0800bae4 Section 0 sys.o(i.scheduler_time_stop) + i.sector_iterator 0x0800bafc Section 0 fdb_kvdb.o(i.sector_iterator) + sector_iterator 0x0800bafd Thumb Code 100 fdb_kvdb.o(i.sector_iterator) + i.sector_iterator 0x0800bb66 Section 0 fdb_tsdb.o(i.sector_iterator) + sector_iterator 0x0800bb67 Thumb Code 100 fdb_tsdb.o(i.sector_iterator) + i.sector_statistics_cb 0x0800bbd0 Section 0 fdb_kvdb.o(i.sector_statistics_cb) + sector_statistics_cb 0x0800bbd1 Thumb Code 42 fdb_kvdb.o(i.sector_statistics_cb) + i.set_app_preload_language_flag 0x0800bbfc Section 0 board.o(i.set_app_preload_language_flag) + i.set_kv 0x0800bc0c Section 0 fdb_kvdb.o(i.set_kv) + set_kv 0x0800bc0d Thumb Code 172 fdb_kvdb.o(i.set_kv) + i.set_manual_test 0x0800bcc0 Section 0 mode.o(i.set_manual_test) + set_manual_test 0x0800bcc1 Thumb Code 6 mode.o(i.set_manual_test) + i.set_pwm_calib_current 0x0800bccc Section 0 board.o(i.set_pwm_calib_current) + i.set_step_signal 0x0800bd20 Section 0 mode_pwmp_hd.o(i.set_step_signal) + set_step_signal 0x0800bd21 Thumb Code 4 mode_pwmp_hd.o(i.set_step_signal) + i.shift_sub_rows 0x0800bd24 Section 0 aes.o(i.shift_sub_rows) + shift_sub_rows 0x0800bd25 Thumb Code 100 aes.o(i.shift_sub_rows) + i.small_signal_deal 0x0800bd8c Section 0 convert.o(i.small_signal_deal) + i.spi_create 0x0800bdcc Section 0 spis.o(i.spi_create) + i.spi_cs_high 0x0800be88 Section 0 spis.o(i.spi_cs_high) + spi_cs_high 0x0800be89 Thumb Code 40 spis.o(i.spi_cs_high) + i.spi_cs_low 0x0800beb0 Section 0 spis.o(i.spi_cs_low) + spi_cs_low 0x0800beb1 Thumb Code 40 spis.o(i.spi_cs_low) + i.spi_delay 0x0800bed8 Section 0 spis.o(i.spi_delay) + spi_delay 0x0800bed9 Thumb Code 36 spis.o(i.spi_delay) + i.spi_read_write_byte 0x0800befc Section 0 spis.o(i.spi_read_write_byte) + spi_read_write_byte 0x0800befd Thumb Code 318 spis.o(i.spi_read_write_byte) + i.swo_output_deal 0x0800c040 Section 0 convert.o(i.swo_output_deal) + i.sys_millis 0x0800c0cc Section 0 sys.o(i.sys_millis) + i.sys_millis_reset 0x0800c0dc Section 0 sys.o(i.sys_millis_reset) + i.systom_inspection 0x0800c0e8 Section 0 app_flow.o(i.systom_inspection) + systom_inspection 0x0800c0e9 Thumb Code 120 app_flow.o(i.systom_inspection) + i.target_travel_deal 0x0800c168 Section 0 convert.o(i.target_travel_deal) + i.temperature_inspection 0x0800c17c Section 0 app_flow.o(i.temperature_inspection) + temperature_inspection 0x0800c17d Thumb Code 50 app_flow.o(i.temperature_inspection) + i.time2Stamp 0x0800c1b8 Section 0 lib.o(i.time2Stamp) + i.travel_statistics 0x0800c268 Section 0 mode.o(i.travel_statistics) + i.tsl_format_all 0x0800c32c Section 0 fdb_tsdb.o(i.tsl_format_all) + tsl_format_all 0x0800c32d Thumb Code 54 fdb_tsdb.o(i.tsl_format_all) + i.uart_create 0x0800c368 Section 0 uarts.o(i.uart_create) + i.uart_dma_reception_callback 0x0800c3f2 Section 0 uarts.o(i.uart_dma_reception_callback) + i.uart_reception_callback 0x0800c468 Section 0 uarts.o(i.uart_reception_callback) + i.uart_recv_en 0x0800c5a4 Section 0 uarts.o(i.uart_recv_en) + i.uart_send_data 0x0800c690 Section 0 uarts.o(i.uart_send_data) + i.update_kv_cache 0x0800c75a Section 0 fdb_kvdb.o(i.update_kv_cache) + update_kv_cache 0x0800c75b Thumb Code 178 fdb_kvdb.o(i.update_kv_cache) + i.update_sec_status 0x0800c80c Section 0 fdb_kvdb.o(i.update_sec_status) + update_sec_status 0x0800c80d Thumb Code 118 fdb_kvdb.o(i.update_sec_status) + i.update_sector_cache 0x0800c888 Section 0 fdb_kvdb.o(i.update_sector_cache) + update_sector_cache 0x0800c889 Thumb Code 110 fdb_kvdb.o(i.update_sector_cache) + i.update_sector_empty_addr_cache 0x0800c8f6 Section 0 fdb_kvdb.o(i.update_sector_empty_addr_cache) + update_sector_empty_addr_cache 0x0800c8f7 Thumb Code 30 fdb_kvdb.o(i.update_sector_empty_addr_cache) + i.update_sector_status_store_cache 0x0800c914 Section 0 fdb_kvdb.o(i.update_sector_status_store_cache) + update_sector_status_store_cache 0x0800c915 Thumb Code 16 fdb_kvdb.o(i.update_sector_status_store_cache) + i.wait_mode_adjust 0x0800c924 Section 0 mode.o(i.wait_mode_adjust) + wait_mode_adjust 0x0800c925 Thumb Code 8 mode.o(i.wait_mode_adjust) + i.write 0x0800c930 Section 0 fal_eeprom24_port.o(i.write) + write 0x0800c931 Thumb Code 20 fal_eeprom24_port.o(i.write) + i.write1 0x0800c948 Section 0 fal_eeprom95_port.o(i.write1) + write1 0x0800c949 Thumb Code 26 fal_eeprom95_port.o(i.write1) + i.write2 0x0800c968 Section 0 fal_eeprom95_port.o(i.write2) + write2 0x0800c969 Thumb Code 26 fal_eeprom95_port.o(i.write2) + i.write_disable 0x0800c988 Section 0 eeprom_m95.o(i.write_disable) + write_disable 0x0800c989 Thumb Code 46 eeprom_m95.o(i.write_disable) + i.write_enable 0x0800c9b6 Section 0 eeprom_m95.o(i.write_enable) + write_enable 0x0800c9b7 Thumb Code 46 eeprom_m95.o(i.write_enable) + i.write_kv_hdr 0x0800c9e4 Section 0 fdb_kvdb.o(i.write_kv_hdr) + write_kv_hdr 0x0800c9e5 Thumb Code 52 fdb_kvdb.o(i.write_kv_hdr) + i.xor_block 0x0800ca18 Section 0 aes.o(i.xor_block) + xor_block 0x0800ca19 Thumb Code 130 aes.o(i.xor_block) + .constdata 0x0800ca9a Section 7 adc.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800ca9a Data 7 adc.o(.constdata) + .constdata 0x0800caa1 Section 7 i2c.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800caa1 Data 7 i2c.o(.constdata) + .constdata 0x0800caa8 Section 7 spi.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800caa8 Data 7 spi.o(.constdata) + .constdata 0x0800caaf Section 18 tim.o(.constdata) + OFFSET_TAB_CCMRx 0x0800caaf Data 9 tim.o(.constdata) + SHIFT_TAB_OCxx 0x0800cab8 Data 9 tim.o(.constdata) + .constdata 0x0800cac1 Section 7 usart.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800cac1 Data 7 usart.o(.constdata) + .constdata 0x0800cac8 Section 64 system_stm32l4xx.o(.constdata) + .constdata 0x0800cb08 Section 8 system_stm32l4xx.o(.constdata) + .constdata 0x0800cb10 Section 12 app_hart.o(.constdata) + .constdata 0x0800cb1c Section 238 params.o(.constdata) + .constdata 0x0800cc0c Section 60 at_hc24.o(.constdata) + .constdata 0x0800cc48 Section 740 ntc_3950.o(.constdata) + .constdata 0x0800cf2c Section 7 adcs.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800cf2c Data 7 adcs.o(.constdata) + .constdata 0x0800cf33 Section 7 spis.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800cf33 Data 7 spis.o(.constdata) + .constdata 0x0800cf3a Section 7 uarts.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800cf3a Data 7 uarts.o(.constdata) + .constdata 0x0800cf41 Section 7 i2cs.o(.constdata) + CHANNEL_OFFSET_TAB 0x0800cf41 Data 7 i2cs.o(.constdata) + .constdata 0x0800cf48 Section 36 lib.o(.constdata) + .constdata 0x0800cf6c Section 24 malloc.o(.constdata) + .constdata 0x0800cf84 Section 2048 aes.o(.constdata) + sbox 0x0800cf84 Data 256 aes.o(.constdata) + isbox 0x0800d084 Data 256 aes.o(.constdata) + gfm2_sbox 0x0800d184 Data 256 aes.o(.constdata) + gfm3_sbox 0x0800d284 Data 256 aes.o(.constdata) + gfmul_9 0x0800d384 Data 256 aes.o(.constdata) + gfmul_b 0x0800d484 Data 256 aes.o(.constdata) + gfmul_d 0x0800d584 Data 256 aes.o(.constdata) + gfmul_e 0x0800d684 Data 256 aes.o(.constdata) + .constdata 0x0800d784 Section 24 fdb_kvdb.o(.constdata) + .constdata 0x0800d79c Section 1024 fdb_utils.o(.constdata) + crc32_table 0x0800d79c Data 1024 fdb_utils.o(.constdata) + .constdata 0x0800db9c Section 12 fal_flash.o(.constdata) + device_table 0x0800db9c Data 12 fal_flash.o(.constdata) + .constdata 0x0800dba8 Section 192 fal_partition.o(.constdata) + partition_table_def 0x0800dba8 Data 192 fal_partition.o(.constdata) + .conststring 0x0800dc68 Section 23 app_hart.o(.conststring) + .conststring 0x0800dc80 Section 24 at_hc24.o(.conststring) + .conststring 0x0800dc98 Section 112 fal_execution.o(.conststring) + .ARM.__AT_0x10007FF0 0x10007ff0 Section 1 board.o(.ARM.__AT_0x10007FF0) + .ARM.__AT_0x10007FF1 0x10007ff1 Section 1 board.o(.ARM.__AT_0x10007FF1) + .data 0x20000000 Section 4 system_stm32l4xx.o(.data) + .data 0x20000004 Section 4 app.o(.data) + .data 0x20000008 Section 4 app.o(.data) + .data 0x2000000c Section 4 app.o(.data) + .data 0x20000010 Section 4 app.o(.data) + .data 0x20000014 Section 4 app.o(.data) + .data 0x20000018 Section 4 app.o(.data) + .data 0x2000001c Section 4 app.o(.data) + .data 0x20000020 Section 4 app.o(.data) + .data 0x20000024 Section 4 app.o(.data) + .data 0x20000028 Section 1 app.o(.data) + .data 0x20000029 Section 8 app.o(.data) + .data 0x20000032 Section 2 app.o(.data) + .data 0x20000034 Section 4 app.o(.data) + .data 0x20000038 Section 4 app.o(.data) + .data 0x2000003c Section 4 app.o(.data) + .data 0x20000040 Section 4 app.o(.data) + .data 0x20000044 Section 12 app_hart.o(.data) + hart_idle 0x20000044 Data 1 app_hart.o(.data) + .data 0x20000050 Section 36 app_flow.o(.data) + first_run 0x20000050 Data 1 app_flow.o(.data) + business_tm 0x20000054 Data 8 app_flow.o(.data) + systom_tm 0x2000005c Data 8 app_flow.o(.data) + btn_tm 0x20000064 Data 8 app_flow.o(.data) + idle_tm 0x2000006c Data 8 app_flow.o(.data) + .data 0x20000078 Section 64 key.o(.data) + key_init_flag 0x20000078 Data 1 key.o(.data) + long_done_flag 0x20000079 Data 1 key.o(.data) + key2_5_imitate_timers 0x2000007a Data 2 key.o(.data) + key_imitate 0x2000007c Data 4 key.o(.data) + .data 0x200000b8 Section 4 convert.o(.data) + last_travel 0x200000b8 Data 4 convert.o(.data) + .data 0x200000bc Section 12 mode.o(.data) + last_work_mode 0x200000bc Data 1 mode.o(.data) + manual_test_flag 0x200000bd Data 1 mode.o(.data) + mode_control_state 0x200000be Data 1 mode.o(.data) + alog_control_count 0x200000bf Data 1 mode.o(.data) + change_count 0x200000c0 Data 1 mode.o(.data) + loop_current_last 0x200000c4 Data 4 mode.o(.data) + .data 0x200000c8 Section 4 pdctrl.o(.data) + out_mode 0x200000c8 Data 1 pdctrl.o(.data) + pdctrl_run_flag 0x200000c9 Data 1 pdctrl.o(.data) + pwm_arr 0x200000ca Data 2 pdctrl.o(.data) + .data 0x200000cc Section 1 at_hc24.o(.data) + .data 0x200000d0 Section 4 mode_dac.o(.data) + .data 0x200000d4 Section 4 mode_pwm.o(.data) + .data 0x200000d8 Section 96 fal_execution.o(.data) + rtdata_cnt 0x200000d8 Data 2 fal_execution.o(.data) + fal_execution_status 0x200000da Data 3 fal_execution.o(.data) + m95_1_kv_table 0x200000f8 Data 36 fal_execution.o(.data) + fm24_kv_table 0x2000011c Data 12 fal_execution.o(.data) + cmac_key 0x20000128 Data 16 fal_execution.o(.data) + .data 0x20000138 Section 36 mode_pwmp_hd.o(.data) + execute_run_count 0x20000138 Data 1 mode_pwmp_hd.o(.data) + index_min 0x2000013c Data 4 mode_pwmp_hd.o(.data) + index_max 0x20000140 Data 4 mode_pwmp_hd.o(.data) + Control_diff 0x20000144 Data 4 mode_pwmp_hd.o(.data) + .data 0x2000015c Section 4 mode_pwmp.o(.data) + .data 0x20000160 Section 12 board.o(.data) + driver_init_flag 0x20000160 Data 1 board.o(.data) + board_cache 0x20000168 Data 4 board.o(.data) + .data 0x2000016c Section 1 eeprom_m95.o(.data) + .data 0x20000170 Section 4 eeprom_fm24.o(.data) + .data 0x20000174 Section 4 eeprom_lc02b.o(.data) + eeprom_24lc028bt_i2c 0x20000174 Data 4 eeprom_lc02b.o(.data) + .data 0x20000178 Section 4 rtc_rx8010.o(.data) + rtc 0x20000178 Data 4 rtc_rx8010.o(.data) + .data 0x2000017c Section 8 delay.o(.data) + g_fac_ms 0x2000017c Data 2 delay.o(.data) + g_fac_us 0x20000180 Data 4 delay.o(.data) + .data 0x20000184 Section 12 sys.o(.data) + .data 0x20000190 Section 4 btn.o(.data) + head_handle 0x20000190 Data 4 btn.o(.data) + .data 0x20000194 Section 28 malloc.o(.data) + .data 0x200001b0 Section 4 flow_core.o(.data) + .data 0x200001b4 Section 1 fdb.o(.data) + log_is_show 0x200001b4 Data 1 fdb.o(.data) + .data 0x200001b8 Section 112 fal_eeprom95_port.o(.data) + .data 0x20000228 Section 56 fal_eeprom24_port.o(.data) + .data 0x20000260 Section 1 fal.o(.data) + init_ok 0x20000260 Data 1 fal.o(.data) + .data 0x20000261 Section 1 fal_flash.o(.data) + init_ok 0x20000261 Data 1 fal_flash.o(.data) + .data 0x20000264 Section 12 fal_partition.o(.data) + init_ok 0x20000264 Data 1 fal_partition.o(.data) + partition_table 0x20000268 Data 4 fal_partition.o(.data) + partition_table_len 0x2000026c Data 4 fal_partition.o(.data) + .data 0x20000270 Section 8 pid_hd.o(.data) + .data 0x20000278 Section 4 rand.o(.data) + _rand_state 0x20000278 Data 4 rand.o(.data) + .data 0x2000027c Section 4 mvars.o(.data) + .data 0x20000280 Section 4 mvars.o(.data) + .sram2 0x200002a0 Section 2048 malloc.o(.sram2) + .bss 0x20000aa0 Section 356 app.o(.bss) + .bss 0x20000c04 Section 33 app.o(.bss) + .bss 0x20000c28 Section 532 app.o(.bss) + .bss 0x20000e3c Section 56 app.o(.bss) + .bss 0x20000e74 Section 20 app.o(.bss) + .bss 0x20000e88 Section 308 key.o(.bss) + .bss 0x20000fbc Section 524 mode.o(.bss) + .bss 0x200011c8 Section 28 pdctrl.o(.bss) + pdctrl_data 0x200011c8 Data 28 pdctrl.o(.bss) + .bss 0x200011e4 Section 64 at_hc24.o(.bss) + at_memcmp_cache 0x200011e4 Data 64 at_hc24.o(.bss) + .bss 0x20001224 Section 3036 fal_execution.o(.bss) + fal_executions 0x20001224 Data 3000 fal_execution.o(.bss) + fal_inspection_crc 0x20001ddc Data 12 fal_execution.o(.bss) + fal_inspection_cmac 0x20001de8 Data 24 fal_execution.o(.bss) + .bss 0x20001e00 Section 12 board.o(.bss) + lpf_temperature 0x20001e00 Data 12 board.o(.bss) + .bss 0x20001e0c Section 56 eeprom_m95.o(.bss) + .bss 0x20001e44 Section 20 leds.o(.bss) + leds 0x20001e44 Data 20 leds.o(.bss) + .bss 0x20001e58 Section 84 adcs.o(.bss) + .bss 0x20001ec0 Section 30720 malloc.o(.bss) + .bss 0x200096c0 Section 1920 malloc.o(.bss) + .bss 0x20009e40 Section 128 malloc.o(.bss) + .bss 0x20009ec0 Section 12 fal_partition.o(.bss) + part_flash_cache 0x20009ec0 Data 12 fal_partition.o(.bss) + HEAP 0x20009ed0 Section 2048 startup_stm32l476xx.o(HEAP) + STACK 0x2000a6d0 Section 4096 startup_stm32l476xx.o(STACK) + + Global Symbols + + Symbol Name Value Ov Type Size Object(Section) + + BuildAttributes$$THM_ISAv4$E$P$D$K$B$S$7EM$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE + __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE + _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE + _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE + __cpp_initialize__aeabi_ - Undefined Weak Reference + __cxa_finalize - Undefined Weak Reference + _clock_init - Undefined Weak Reference + _microlib_exit - Undefined Weak Reference + __Vectors_Size 0x00000188 Number 0 startup_stm32l476xx.o ABSOLUTE + __Vectors 0x08000000 Data 4 startup_stm32l476xx.o(RESET) + __Vectors_End 0x08000188 Data 0 startup_stm32l476xx.o(RESET) + __main 0x08000189 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000) + _main_stk 0x08000189 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001) + _main_scatterload 0x0800018d Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + __main_after_scatterload 0x08000191 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004) + _main_clock 0x08000191 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008) + _main_cpp_init 0x08000191 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A) + _main_init 0x08000191 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B) + __rt_final_cpp 0x08000199 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D) + __rt_final_exit 0x08000199 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F) + Reset_Handler 0x0800019d Thumb Code 8 startup_stm32l476xx.o(.text) + ADC3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + CAN1_RX0_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + CAN1_RX1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + CAN1_SCE_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + CAN1_TX_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + COMP_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DFSDM1_FLT0_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DFSDM1_FLT1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DFSDM1_FLT2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DFSDM1_FLT3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DMA1_Channel3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DMA1_Channel4_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DMA2_Channel3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DMA2_Channel4_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + DMA2_Channel5_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI0_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI15_10_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI4_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + EXTI9_5_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + FLASH_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + FMC_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + FPU_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + I2C1_ER_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + I2C2_ER_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + I2C2_EV_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + I2C3_ER_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + I2C3_EV_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + LCD_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + LPTIM1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + LPTIM2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + LPUART1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + OTG_FS_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + PVD_PVM_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + QUADSPI_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + RCC_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + RNG_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + RTC_Alarm_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + RTC_WKUP_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SAI1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SAI2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SDMMC1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SPI1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SPI2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SPI3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + SWPMI1_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TAMP_STAMP_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM1_BRK_TIM15_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM1_CC_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM1_TRG_COM_TIM17_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM1_UP_TIM16_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM5_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM8_BRK_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM8_CC_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM8_TRG_COM_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TIM8_UP_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + TSC_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + UART4_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + USART2_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + USART3_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + WWDG_IRQHandler 0x080001b7 Thumb Code 0 startup_stm32l476xx.o(.text) + rand 0x080001c1 Thumb Code 20 rand.o(.text) + srand 0x080001d5 Thumb Code 6 rand.o(.text) + __aeabi_memcpy 0x080001e5 Thumb Code 36 memcpya.o(.text) + __aeabi_memcpy4 0x080001e5 Thumb Code 0 memcpya.o(.text) + __aeabi_memcpy8 0x080001e5 Thumb Code 0 memcpya.o(.text) + __aeabi_memset 0x08000209 Thumb Code 14 memseta.o(.text) + __aeabi_memset4 0x08000209 Thumb Code 0 memseta.o(.text) + __aeabi_memset8 0x08000209 Thumb Code 0 memseta.o(.text) + __aeabi_memclr 0x08000217 Thumb Code 4 memseta.o(.text) + __aeabi_memclr4 0x08000217 Thumb Code 0 memseta.o(.text) + __aeabi_memclr8 0x08000217 Thumb Code 0 memseta.o(.text) + _memset$wrapper 0x0800021b Thumb Code 18 memseta.o(.text) + strncpy 0x0800022d Thumb Code 24 strncpy.o(.text) + strlen 0x08000245 Thumb Code 14 strlen.o(.text) + strcmp 0x08000253 Thumb Code 28 strcmp.o(.text) + strncmp 0x0800026f Thumb Code 30 strncmp.o(.text) + __aeabi_fadd 0x0800028d Thumb Code 164 fadd.o(.text) + __aeabi_fsub 0x08000331 Thumb Code 6 fadd.o(.text) + __aeabi_frsub 0x08000337 Thumb Code 6 fadd.o(.text) + __aeabi_fmul 0x0800033d Thumb Code 100 fmul.o(.text) + __aeabi_fdiv 0x080003a1 Thumb Code 124 fdiv.o(.text) + __ARM_scalbnf 0x0800041d Thumb Code 24 fscalb.o(.text) + scalbnf 0x0800041d Thumb Code 0 fscalb.o(.text) + __aeabi_dadd 0x08000435 Thumb Code 322 dadd.o(.text) + __aeabi_dsub 0x08000577 Thumb Code 6 dadd.o(.text) + __aeabi_drsub 0x0800057d Thumb Code 6 dadd.o(.text) + __aeabi_dmul 0x08000593 Thumb Code 228 dmul.o(.text) + __aeabi_ddiv 0x0800067d Thumb Code 222 ddiv.o(.text) + __aeabi_i2f 0x0800075b Thumb Code 18 fflti.o(.text) + __aeabi_ui2f 0x0800076d Thumb Code 10 ffltui.o(.text) + __aeabi_i2d 0x08000777 Thumb Code 34 dflti.o(.text) + __aeabi_ui2d 0x08000799 Thumb Code 26 dfltui.o(.text) + __aeabi_f2uiz 0x080007b3 Thumb Code 40 ffixui.o(.text) + __aeabi_d2uiz 0x080007db Thumb Code 50 dfixui.o(.text) + __aeabi_f2d 0x0800080d Thumb Code 38 f2d.o(.text) + __aeabi_cdcmpeq 0x08000835 Thumb Code 0 cdcmple.o(.text) + __aeabi_cdcmple 0x08000835 Thumb Code 48 cdcmple.o(.text) + __aeabi_cdrcmple 0x08000865 Thumb Code 48 cdrcmple.o(.text) + __aeabi_d2f 0x08000895 Thumb Code 56 d2f.o(.text) + __aeabi_cfcmpeq 0x080008cd Thumb Code 0 cfcmple.o(.text) + __aeabi_cfcmple 0x080008cd Thumb Code 20 cfcmple.o(.text) + __aeabi_cfrcmple 0x080008e1 Thumb Code 20 cfrcmple.o(.text) + __aeabi_uidiv 0x080008f5 Thumb Code 0 uidiv.o(.text) + __aeabi_uidivmod 0x080008f5 Thumb Code 44 uidiv.o(.text) + __aeabi_uldivmod 0x08000921 Thumb Code 98 uldiv.o(.text) + __aeabi_llsl 0x08000989 Thumb Code 30 llshl.o(.text) + _ll_shift_l 0x08000989 Thumb Code 0 llshl.o(.text) + __aeabi_llsr 0x080009a7 Thumb Code 32 llushr.o(.text) + _ll_ushift_r 0x080009a7 Thumb Code 0 llushr.o(.text) + __aeabi_lasr 0x080009c7 Thumb Code 36 llsshr.o(.text) + _ll_sshift_r 0x080009c7 Thumb Code 0 llsshr.o(.text) + __I$use$fp 0x080009eb Thumb Code 0 iusefp.o(.text) + _float_round 0x080009eb Thumb Code 18 fepilogue.o(.text) + _float_epilogue 0x080009fd Thumb Code 92 fepilogue.o(.text) + _double_round 0x08000a59 Thumb Code 30 depilogue.o(.text) + _double_epilogue 0x08000a77 Thumb Code 156 depilogue.o(.text) + __aeabi_d2ulz 0x08000b13 Thumb Code 48 dfixul.o(.text) + __scatterload 0x08000b45 Thumb Code 28 init.o(.text) + __scatterload_rt2 0x08000b45 Thumb Code 0 init.o(.text) + __decompress 0x08000b69 Thumb Code 0 __dczerorl2.o(.text) + __decompress1 0x08000b69 Thumb Code 86 __dczerorl2.o(.text) + ADC1_2_IRQHandler 0x08000bbf Thumb Code 6 stm32l4xx_it.o(i.ADC1_2_IRQHandler) + AES_CMAC_Final 0x08000bc5 Thumb Code 328 cmac.o(i.AES_CMAC_Final) + AES_CMAC_Init 0x08000d0d Thumb Code 36 cmac.o(i.AES_CMAC_Init) + AES_CMAC_SetKey 0x08000d31 Thumb Code 10 cmac.o(i.AES_CMAC_SetKey) + AES_CMAC_Update 0x08000d3b Thumb Code 180 cmac.o(i.AES_CMAC_Update) + BusFault_Handler 0x08000df5 Thumb Code 2 stm32l4xx_it.o(i.BusFault_Handler) + DBG_ASSERT 0x08000df7 Thumb Code 10 debug.o(i.DBG_ASSERT) + DMA1_Channel1_IRQHandler 0x08000e01 Thumb Code 6 stm32l4xx_it.o(i.DMA1_Channel1_IRQHandler) + DMA1_Channel2_IRQHandler 0x08000e07 Thumb Code 6 stm32l4xx_it.o(i.DMA1_Channel2_IRQHandler) + DMA1_Channel5_IRQHandler 0x08000e0d Thumb Code 10 stm32l4xx_it.o(i.DMA1_Channel5_IRQHandler) + DMA1_Channel6_IRQHandler 0x08000e1d Thumb Code 8 stm32l4xx_it.o(i.DMA1_Channel6_IRQHandler) + DMA1_Channel7_IRQHandler 0x08000e29 Thumb Code 8 stm32l4xx_it.o(i.DMA1_Channel7_IRQHandler) + DMA2_Channel1_IRQHandler 0x08000e35 Thumb Code 8 stm32l4xx_it.o(i.DMA2_Channel1_IRQHandler) + DMA2_Channel2_IRQHandler 0x08000e41 Thumb Code 8 stm32l4xx_it.o(i.DMA2_Channel2_IRQHandler) + DMA2_Channel6_IRQHandler 0x08000e4d Thumb Code 8 stm32l4xx_it.o(i.DMA2_Channel6_IRQHandler) + DMA2_Channel7_IRQHandler 0x08000e59 Thumb Code 8 stm32l4xx_it.o(i.DMA2_Channel7_IRQHandler) + DebugMon_Handler 0x08000e65 Thumb Code 2 stm32l4xx_it.o(i.DebugMon_Handler) + HardFault_Handler 0x08000e67 Thumb Code 2 stm32l4xx_it.o(i.HardFault_Handler) + I2C1_EV_IRQHandler 0x08000e69 Thumb Code 8 stm32l4xx_it.o(i.I2C1_EV_IRQHandler) + LL_ADC_CommonInit 0x08000e75 Thumb Code 80 stm32l4xx_ll_adc.o(i.LL_ADC_CommonInit) + LL_ADC_Init 0x08000ee5 Thumb Code 44 stm32l4xx_ll_adc.o(i.LL_ADC_Init) + LL_ADC_REG_Init 0x08000f11 Thumb Code 90 stm32l4xx_ll_adc.o(i.LL_ADC_REG_Init) + LL_DAC_Init 0x08001079 Thumb Code 104 stm32l4xx_ll_dac.o(i.LL_DAC_Init) + LL_GPIO_Init 0x08001445 Thumb Code 316 stm32l4xx_ll_gpio.o(i.LL_GPIO_Init) + LL_I2C_Init 0x080016c1 Thumb Code 106 stm32l4xx_ll_i2c.o(i.LL_I2C_Init) + LL_IncTick 0x0800172d Thumb Code 10 sys.o(i.LL_IncTick) + LL_Init1msTick 0x0800173d Thumb Code 26 stm32l4xx_ll_utils.o(i.LL_Init1msTick) + LL_RCC_GetUARTClockFreq 0x08001759 Thumb Code 192 stm32l4xx_ll_rcc.o(i.LL_RCC_GetUARTClockFreq) + LL_RCC_GetUSARTClockFreq 0x08001825 Thumb Code 268 stm32l4xx_ll_rcc.o(i.LL_RCC_GetUSARTClockFreq) + LL_SPI_Init 0x080019bd Thumb Code 112 stm32l4xx_ll_spi.o(i.LL_SPI_Init) + LL_SetSystemCoreClock 0x08001a2d Thumb Code 6 stm32l4xx_ll_utils.o(i.LL_SetSystemCoreClock) + LL_TIM_Init 0x08001a39 Thumb Code 160 stm32l4xx_ll_tim.o(i.LL_TIM_Init) + LL_TIM_OC_Init 0x08001bc9 Thumb Code 88 stm32l4xx_ll_tim.o(i.LL_TIM_OC_Init) + LL_USART_Init 0x08001c2d Thumb Code 198 stm32l4xx_ll_usart.o(i.LL_USART_Init) + LL_mDelay 0x08001d0d Thumb Code 32 stm32l4xx_ll_utils.o(i.LL_mDelay) + MX_ADC1_Init 0x08001d2d Thumb Code 730 adc.o(i.MX_ADC1_Init) + MX_ADC2_Init 0x08002055 Thumb Code 348 adc.o(i.MX_ADC2_Init) + MX_DAC1_Init 0x080021d5 Thumb Code 172 dac.o(i.MX_DAC1_Init) + MX_DMA_Init 0x08002299 Thumb Code 252 dma.o(i.MX_DMA_Init) + MX_GPIO_Init 0x08002395 Thumb Code 480 gpio.o(i.MX_GPIO_Init) + MX_I2C1_Init 0x0800258d Thumb Code 374 i2c.o(i.MX_I2C1_Init) + MX_SPI1_Init 0x0800271d Thumb Code 138 spi.o(i.MX_SPI1_Init) + MX_SPI2_Init 0x080027b5 Thumb Code 264 spi.o(i.MX_SPI2_Init) + MX_TIM2_Init 0x080028d1 Thumb Code 194 tim.o(i.MX_TIM2_Init) + MX_TIM3_Init 0x0800299d Thumb Code 190 tim.o(i.MX_TIM3_Init) + MX_TIM4_Init 0x08002a69 Thumb Code 118 tim.o(i.MX_TIM4_Init) + MX_TIM6_Init 0x08002aed Thumb Code 102 tim.o(i.MX_TIM6_Init) + MX_TIM7_Init 0x08002b5d Thumb Code 102 tim.o(i.MX_TIM7_Init) + MX_UART5_Init 0x08002bcd Thumb Code 362 usart.o(i.MX_UART5_Init) + MX_USART1_UART_Init 0x08002d51 Thumb Code 338 usart.o(i.MX_USART1_UART_Init) + MemManage_Handler 0x08002eb9 Thumb Code 2 stm32l4xx_it.o(i.MemManage_Handler) + NMI_Handler 0x08002ebb Thumb Code 2 stm32l4xx_it.o(i.NMI_Handler) + PendSV_Handler 0x080032d1 Thumb Code 2 stm32l4xx_it.o(i.PendSV_Handler) + PeriphCommonClock_Config 0x080032d5 Thumb Code 54 main.o(i.PeriphCommonClock_Config) + SVC_Handler 0x080034d5 Thumb Code 2 stm32l4xx_it.o(i.SVC_Handler) + SysTick_Handler 0x080034d7 Thumb Code 2 stm32l4xx_it.o(i.SysTick_Handler) + SysTick_Init 0x080034d9 Thumb Code 20 delay.o(i.SysTick_Init) + SystemClock_Config 0x080034f1 Thumb Code 134 main.o(i.SystemClock_Config) + SystemInit 0x08003589 Thumb Code 2 system_stm32l4xx.o(i.SystemInit) + TIM4_IRQHandler 0x0800358d Thumb Code 120 stm32l4xx_it.o(i.TIM4_IRQHandler) + TIM6_DAC_IRQHandler 0x08003609 Thumb Code 136 stm32l4xx_it.o(i.TIM6_DAC_IRQHandler) + TIM7_IRQHandler 0x08003699 Thumb Code 128 stm32l4xx_it.o(i.TIM7_IRQHandler) + UART5_IRQHandler 0x0800371d Thumb Code 8 stm32l4xx_it.o(i.UART5_IRQHandler) + USART1_IRQHandler 0x08003729 Thumb Code 8 stm32l4xx_it.o(i.USART1_IRQHandler) + UsageFault_Handler 0x08003735 Thumb Code 2 stm32l4xx_it.o(i.UsageFault_Handler) + __0sprintf 0x08003739 Thumb Code 34 printfa.o(i.__0sprintf) + __1sprintf 0x08003739 Thumb Code 0 printfa.o(i.__0sprintf) + __2sprintf 0x08003739 Thumb Code 0 printfa.o(i.__0sprintf) + __c89sprintf 0x08003739 Thumb Code 0 printfa.o(i.__0sprintf) + sprintf 0x08003739 Thumb Code 0 printfa.o(i.__0sprintf) + __scatterload_copy 0x08003859 Thumb Code 14 handlers.o(i.__scatterload_copy) + __scatterload_null 0x08003867 Thumb Code 2 handlers.o(i.__scatterload_null) + __scatterload_zeroinit 0x08003869 Thumb Code 14 handlers.o(i.__scatterload_zeroinit) + _fdb_continue_ff_addr 0x0800390d Thumb Code 100 fdb_utils.o(i._fdb_continue_ff_addr) + _fdb_flash_erase 0x08003977 Thumb Code 30 fdb_utils.o(i._fdb_flash_erase) + _fdb_flash_read 0x08003995 Thumb Code 30 fdb_utils.o(i._fdb_flash_read) + _fdb_flash_write 0x080039b3 Thumb Code 30 fdb_utils.o(i._fdb_flash_write) + _fdb_get_status 0x080039d1 Thumb Code 42 fdb_utils.o(i._fdb_get_status) + _fdb_init_ex 0x080039fb Thumb Code 134 fdb.o(i._fdb_init_ex) + _fdb_init_finish 0x08003a81 Thumb Code 20 fdb.o(i._fdb_init_finish) + _fdb_read_status 0x08003b29 Thumb Code 38 fdb_utils.o(i._fdb_read_status) + _fdb_set_status 0x08003b4f Thumb Code 46 fdb_utils.o(i._fdb_set_status) + _fdb_write_status 0x08003b7d Thumb Code 54 fdb_utils.o(i._fdb_write_status) + actual_travel_deal 0x08004fcb Thumb Code 26 convert.o(i.actual_travel_deal) + adc_dma_callback 0x08004fe5 Thumb Code 76 adcs.o(i.adc_dma_callback) + adc_env_callback 0x08005039 Thumb Code 154 adcs.o(i.adc_env_callback) + adc_init 0x08005175 Thumb Code 310 adcs.o(i.adc_init) + adc_result_average 0x080052bd Thumb Code 88 adcs.o(i.adc_result_average) + adc_result_median 0x08005319 Thumb Code 218 adcs.o(i.adc_result_median) + aes_encrypt 0x080053fd Thumb Code 86 aes.o(i.aes_encrypt) + aes_set_key 0x08005455 Thumb Code 246 aes.o(i.aes_set_key) + alog_control_module 0x08005641 Thumb Code 122 mode.o(i.alog_control_module) + app_init 0x080056c9 Thumb Code 30 app.o(i.app_init) + app_start 0x08005725 Thumb Code 4 app.o(i.app_start) + at_cmd_parse 0x08005755 Thumb Code 110 at_hc24.o(i.at_cmd_parse) + at_cmd_search 0x080057c9 Thumb Code 62 at_hc24.o(i.at_cmd_search) + at_set_memcmp_cache 0x08005821 Thumb Code 40 at_hc24.o(i.at_set_memcmp_cache) + board_init 0x0800584d Thumb Code 140 board.o(i.board_init) + button_attach 0x08005991 Thumb Code 8 btn.o(i.button_attach) + button_handler 0x08005999 Thumb Code 506 btn.o(i.button_handler) + button_init 0x08005b93 Thumb Code 64 btn.o(i.button_init) + button_start 0x08005bd5 Thumb Code 32 btn.o(i.button_start) + button_stop 0x08005bf9 Thumb Code 26 btn.o(i.button_stop) + button_ticks 0x08005c19 Thumb Code 22 btn.o(i.button_ticks) + calculate_pwm_duty 0x08005c35 Thumb Code 108 pdctrl.o(i.calculate_pwm_duty) + calib_parapos_perent 0x08005cfd Thumb Code 102 board.o(i.calib_parapos_perent) + crc16_compute 0x08005fa5 Thumb Code 54 lib.o(i.crc16_compute) + dead_zone_deal 0x08006259 Thumb Code 36 convert.o(i.dead_zone_deal) + dec_format_hex 0x08006285 Thumb Code 70 lib.o(i.dec_format_hex) + delay_init 0x080063e9 Thumb Code 20 delay.o(i.delay_init) + delay_ms 0x08006401 Thumb Code 54 delay.o(i.delay_ms) + delay_tick 0x08006437 Thumb Code 12 delay.o(i.delay_tick) + delay_us 0x08006445 Thumb Code 52 delay.o(i.delay_us) + driver_dinit 0x08006591 Thumb Code 38 board.o(i.driver_dinit) + driver_init 0x080065c1 Thumb Code 38 board.o(i.driver_init) + eeprom_fm24_disable 0x080065f1 Thumb Code 12 eeprom_fm24.o(i.eeprom_fm24_disable) + eeprom_fm24_enable 0x080066a1 Thumb Code 12 eeprom_fm24.o(i.eeprom_fm24_enable) + eeprom_fm24_init 0x080066b1 Thumb Code 48 eeprom_fm24.o(i.eeprom_fm24_init) + eeprom_fm24_read 0x080066f5 Thumb Code 34 eeprom_fm24.o(i.eeprom_fm24_read) + eeprom_fm24_write 0x0800671d Thumb Code 184 eeprom_fm24.o(i.eeprom_fm24_write) + eeprom_lc02b_init 0x080067e1 Thumb Code 40 eeprom_lc02b.o(i.eeprom_lc02b_init) + eeprom_m95_disable 0x08006811 Thumb Code 12 eeprom_m95.o(i.eeprom_m95_disable) + eeprom_m95_enable 0x08006821 Thumb Code 12 eeprom_m95.o(i.eeprom_m95_enable) + eeprom_m95_init 0x08006831 Thumb Code 322 eeprom_m95.o(i.eeprom_m95_init) + eeprom_m95_read 0x08006995 Thumb Code 156 eeprom_m95.o(i.eeprom_m95_read) + eeprom_m95_write 0x08006a6d Thumb Code 316 eeprom_m95.o(i.eeprom_m95_write) + execute_dac 0x08006bc5 Thumb Code 42 mode_pwmp_hd.o(i.execute_dac) + execute_pid_init 0x08006e4d Thumb Code 58 mode_pwmp_hd.o(i.execute_pid_init) + fal_execution_init 0x08006ec1 Thumb Code 350 fal_execution.o(i.fal_execution_init) + fal_execution_kv_read 0x08007055 Thumb Code 198 fal_execution.o(i.fal_execution_kv_read) + fal_execution_kv_write 0x08007121 Thumb Code 200 fal_execution.o(i.fal_execution_kv_write) + fal_flash_device_find 0x08007275 Thumb Code 38 fal_flash.o(i.fal_flash_device_find) + fal_flash_init 0x080072a1 Thumb Code 42 fal_flash.o(i.fal_flash_init) + fal_init 0x080072d5 Thumb Code 40 fal.o(i.fal_init) + fal_partition_erase 0x08007301 Thumb Code 56 fal_partition.o(i.fal_partition_erase) + fal_partition_find 0x08007339 Thumb Code 46 fal_partition.o(i.fal_partition_find) + fal_partition_init 0x0800736d Thumb Code 36 fal_partition.o(i.fal_partition_init) + fal_partition_read 0x08007399 Thumb Code 62 fal_partition.o(i.fal_partition_read) + fal_partition_write 0x080073d7 Thumb Code 62 fal_partition.o(i.fal_partition_write) + fdb_blob_make 0x08007415 Thumb Code 6 fdb_utils.o(i.fdb_blob_make) + fdb_calc_crc32 0x0800741d Thumb Code 34 fdb_utils.o(i.fdb_calc_crc32) + fdb_kv_get_blob 0x08007445 Thumb Code 56 fdb_kvdb.o(i.fdb_kv_get_blob) + fdb_kv_set_blob 0x0800747d Thumb Code 50 fdb_kvdb.o(i.fdb_kv_set_blob) + fdb_kv_set_default 0x080074af Thumb Code 146 fdb_kvdb.o(i.fdb_kv_set_default) + fdb_kvdb_control 0x08007541 Thumb Code 64 fdb_kvdb.o(i.fdb_kvdb_control) + fdb_kvdb_init 0x08007581 Thumb Code 188 fdb_kvdb.o(i.fdb_kvdb_init) + fdb_tsdb_control 0x08007641 Thumb Code 94 fdb_tsdb.o(i.fdb_tsdb_control) + fdb_tsdb_init 0x080076a1 Thumb Code 262 fdb_tsdb.o(i.fdb_tsdb_init) + flow_init 0x08007915 Thumb Code 20 app_flow.o(i.flow_init) + flow_start 0x0800792d Thumb Code 36 app_flow.o(i.flow_start) + free 0x08007a49 Thumb Code 76 malloc.o(i.free) + get_actual_travel 0x08007b01 Thumb Code 92 board.o(i.get_actual_travel) + get_actual_travel_adc 0x08007b6d Thumb Code 8 board.o(i.get_actual_travel_adc) + get_current 0x08007b75 Thumb Code 50 board.o(i.get_current) + get_current_deal 0x08007bb5 Thumb Code 28 board.o(i.get_current_deal) + get_pid_travel 0x08007d5d Thumb Code 20 convert.o(i.get_pid_travel) + get_pressure 0x08007d79 Thumb Code 118 board.o(i.get_pressure) + get_show_travel 0x08007e75 Thumb Code 18 convert.o(i.get_show_travel) + get_temperature 0x08007e91 Thumb Code 32 board.o(i.get_temperature) + get_timestamp 0x08007f31 Thumb Code 48 board.o(i.get_timestamp) + get_weekday 0x08007f61 Thumb Code 76 lib.o(i.get_weekday) + gpio_create 0x08007fad Thumb Code 54 gpios.o(i.gpio_create) + h24_bluetooth_output_dbg 0x0800800d Thumb Code 4 app_hart.o(i.h24_bluetooth_output_dbg) + h24_bluetooth_work 0x08008011 Thumb Code 226 app_hart.o(i.h24_bluetooth_work) + hart_ble_dinit 0x0800811d Thumb Code 78 app_hart.o(i.hart_ble_dinit) + hart_ble_init 0x0800817d Thumb Code 132 app_hart.o(i.hart_ble_init) + hart_uart_dinit 0x08008271 Thumb Code 84 app_hart.o(i.hart_uart_dinit) + hart_uart_init 0x080082d9 Thumb Code 184 app_hart.o(i.hart_uart_init) + hex_format_dec 0x080083c1 Thumb Code 104 lib.o(i.hex_format_dec) + i2c_create 0x0800842d Thumb Code 52 i2cs.o(i.i2c_create) + i2c_create_dma 0x08008479 Thumb Code 276 i2cs.o(i.i2c_create_dma) + i2c_dma_callback 0x0800859b Thumb Code 46 i2cs.o(i.i2c_dma_callback) + i2c_dma_set_address 0x080085c9 Thumb Code 34 i2cs.o(i.i2c_dma_set_address) + i2c_ev_callback 0x080085eb Thumb Code 242 i2cs.o(i.i2c_ev_callback) + i2psb 0x080086f1 Thumb Code 220 convert.o(i.i2psb) + ip2current 0x0800888d Thumb Code 30 board.o(i.ip2current) + is_manual_test 0x080088b5 Thumb Code 16 mode.o(i.is_manual_test) + key_botton_start 0x08008959 Thumb Code 58 key.o(i.key_botton_start) + key_dinit 0x0800899d Thumb Code 154 key.o(i.key_dinit) + key_init 0x08008a51 Thumb Code 590 key.o(i.key_init) + lcd_dinit 0x08008e41 Thumb Code 2 board.o(i.lcd_dinit) + lcd_init 0x08008e43 Thumb Code 2 board.o(i.lcd_init) + leds_dinit 0x08008e45 Thumb Code 68 leds.o(i.leds_dinit) + leds_init 0x08008e8d Thumb Code 168 leds.o(i.leds_init) + leds_toggle 0x08008f45 Thumb Code 26 leds.o(i.leds_toggle) + loop_current_convert 0x08008f65 Thumb Code 22 board.o(i.loop_current_convert) + lpf_init 0x08008f81 Thumb Code 26 filter.o(i.lpf_init) + lpf_update 0x08008fa1 Thumb Code 60 filter.o(i.lpf_update) + lpf_window_init 0x08008fdd Thumb Code 78 filter.o(i.lpf_window_init) + lpf_window_update 0x0800902b Thumb Code 114 filter.o(i.lpf_window_update) + main 0x0800909d Thumb Code 214 main.o(i.main) + malloc 0x08009181 Thumb Code 92 malloc.o(i.malloc) + mode_dac_dinit 0x08009461 Thumb Code 22 mode_dac.o(i.mode_dac_dinit) + mode_dac_process 0x0800947d Thumb Code 36 mode_dac.o(i.mode_dac_process) + mode_detection 0x080094a5 Thumb Code 124 mode.o(i.mode_detection) + mode_init 0x0800952d Thumb Code 96 mode.o(i.mode_init) + mode_pwm_dinit 0x080095b1 Thumb Code 34 mode_pwm.o(i.mode_pwm_dinit) + mode_pwm_process 0x080095dd Thumb Code 50 mode_pwm.o(i.mode_pwm_process) + mode_pwmp_dinit 0x08009619 Thumb Code 34 mode_pwmp.o(i.mode_pwmp_dinit) + mode_pwmp_hd_dinit 0x08009645 Thumb Code 30 mode_pwmp_hd.o(i.mode_pwmp_hd_dinit) + mode_pwmp_hd_init 0x08009669 Thumb Code 216 mode_pwmp_hd.o(i.mode_pwmp_hd_init) + mode_pwmp_hd_process 0x08009755 Thumb Code 376 mode_pwmp_hd.o(i.mode_pwmp_hd_process) + mode_pwmp_process 0x08009939 Thumb Code 44 mode_pwmp.o(i.mode_pwmp_process) + mstrncmp 0x08009a8d Thumb Code 30 at_hc24.o(i.mstrncmp) + my_mem_free 0x08009aad Thumb Code 80 malloc.o(i.my_mem_free) + my_mem_init 0x08009b05 Thumb Code 50 malloc.o(i.my_mem_init) + my_mem_malloc 0x08009b41 Thumb Code 146 malloc.o(i.my_mem_malloc) + my_mem_perused 0x08009bdd Thumb Code 48 malloc.o(i.my_mem_perused) + myfree 0x08009c15 Thumb Code 58 malloc.o(i.myfree) + mymalloc 0x08009c59 Thumb Code 30 malloc.o(i.mymalloc) + mymemset 0x08009c7d Thumb Code 14 malloc.o(i.mymemset) + ntc_get_temp 0x08009cd1 Thumb Code 114 ntc_3950.o(i.ntc_get_temp) + params_init 0x08009da1 Thumb Code 150 params.o(i.params_init) + params_restart 0x08009e4d Thumb Code 586 params.o(i.params_restart) + part_travel_deal 0x0800a0e9 Thumb Code 54 convert.o(i.part_travel_deal) + pdctrl_init 0x0800a129 Thumb Code 96 pdctrl.o(i.pdctrl_init) + pdctrl_out 0x0800a191 Thumb Code 84 pdctrl.o(i.pdctrl_out) + pdctrl_pwm_set_arr 0x0800a1f5 Thumb Code 44 pdctrl.o(i.pdctrl_pwm_set_arr) + pdctrl_run 0x0800a229 Thumb Code 50 pdctrl.o(i.pdctrl_run) + pdctrl_stop 0x0800a261 Thumb Code 50 pdctrl.o(i.pdctrl_stop) + pid_constructor 0x0800a2a5 Thumb Code 14 pid.o(i.pid_constructor) + pid_hd_constructor 0x0800a2b5 Thumb Code 14 pid_hd.o(i.pid_hd_constructor) + pwm_output_deal 0x0800a335 Thumb Code 16 convert.o(i.pwm_output_deal) + pwm_output_position 0x0800a349 Thumb Code 40 board.o(i.pwm_output_position) + pwmp_adjust 0x0800a379 Thumb Code 270 mode_pwmp_hd.o(i.pwmp_adjust) + pwmp_hd_process_state_set 0x0800b0ad Thumb Code 34 mode_pwmp_hd.o(i.pwmp_hd_process_state_set) + rtc_get_clock_time 0x0800b721 Thumb Code 8 rtc_rx8010.o(i.rtc_get_clock_time) + rtc_init 0x0800b729 Thumb Code 76 rtc_rx8010.o(i.rtc_init) + rtc_set_clock_time 0x0800b8a1 Thumb Code 72 rtc_rx8010.o(i.rtc_set_clock_time) + rtc_weekday_convert 0x0800b953 Thumb Code 66 rtc_rx8010.o(i.rtc_weekday_convert) + scheduler_time_occupancy_get 0x0800baa5 Thumb Code 40 sys.o(i.scheduler_time_occupancy_get) + scheduler_time_start 0x0800bad5 Thumb Code 12 sys.o(i.scheduler_time_start) + scheduler_time_stop 0x0800bae5 Thumb Code 20 sys.o(i.scheduler_time_stop) + set_app_preload_language_flag 0x0800bbfd Thumb Code 12 board.o(i.set_app_preload_language_flag) + set_pwm_calib_current 0x0800bccd Thumb Code 68 board.o(i.set_pwm_calib_current) + small_signal_deal 0x0800bd8d Thumb Code 56 convert.o(i.small_signal_deal) + spi_create 0x0800bdcd Thumb Code 140 spis.o(i.spi_create) + swo_output_deal 0x0800c041 Thumb Code 130 convert.o(i.swo_output_deal) + sys_millis 0x0800c0cd Thumb Code 12 sys.o(i.sys_millis) + sys_millis_reset 0x0800c0dd Thumb Code 8 sys.o(i.sys_millis_reset) + target_travel_deal 0x0800c169 Thumb Code 18 convert.o(i.target_travel_deal) + time2Stamp 0x0800c1b9 Thumb Code 162 lib.o(i.time2Stamp) + travel_statistics 0x0800c269 Thumb Code 150 mode.o(i.travel_statistics) + uart_create 0x0800c369 Thumb Code 132 uarts.o(i.uart_create) + uart_dma_reception_callback 0x0800c3f3 Thumb Code 118 uarts.o(i.uart_dma_reception_callback) + uart_reception_callback 0x0800c469 Thumb Code 310 uarts.o(i.uart_reception_callback) + uart_recv_en 0x0800c5a5 Thumb Code 232 uarts.o(i.uart_recv_en) + uart_send_data 0x0800c691 Thumb Code 202 uarts.o(i.uart_send_data) + AHBPrescTable 0x0800cac8 Data 16 system_stm32l4xx.o(.constdata) + MSIRangeTable 0x0800cad8 Data 48 system_stm32l4xx.o(.constdata) + APBPrescTable 0x0800cb08 Data 8 system_stm32l4xx.o(.constdata) + valve_characteristics_table 0x0800cb1c Data 238 params.o(.constdata) + at_cmd_func 0x0800cc0c Data 60 at_hc24.o(.constdata) + _table 0x0800cc48 Data 740 ntc_3950.o(.constdata) + _days 0x0800cf48 Data 12 lib.o(.constdata) + _month_days 0x0800cf54 Data 24 lib.o(.constdata) + memtblsize 0x0800cf6c Data 8 malloc.o(.constdata) + memblksize 0x0800cf74 Data 8 malloc.o(.constdata) + memsize 0x0800cf7c Data 8 malloc.o(.constdata) + Region$$Table$$Base 0x0800dd08 Number 0 anon$$obj.o(Region$$Table) + Region$$Table$$Limit 0x0800dd28 Number 0 anon$$obj.o(Region$$Table) + app_preload_flag 0x10007ff0 Data 1 board.o(.ARM.__AT_0x10007FF0) + app_preload_language_flag 0x10007ff1 Data 1 board.o(.ARM.__AT_0x10007FF1) + SystemCoreClock 0x20000000 Data 4 system_stm32l4xx.o(.data) + loop_current 0x20000004 Data 4 app.o(.data) + actual_travel 0x20000008 Data 4 app.o(.data) + target_travel 0x2000000c Data 4 app.o(.data) + pid_target 0x20000010 Data 4 app.o(.data) + pid_actual 0x20000014 Data 4 app.o(.data) + show_loop 0x20000018 Data 4 app.o(.data) + show_target 0x2000001c Data 4 app.o(.data) + show_actual 0x20000020 Data 4 app.o(.data) + temperature 0x20000024 Data 4 app.o(.data) + cpu_percent 0x20000028 Data 1 app.o(.data) + driver_icon_enable 0x20000029 Data 8 app.o(.data) + ip_out 0x20000032 Data 2 app.o(.data) + pressure 0x20000034 Data 4 app.o(.data) + pressureA 0x20000038 Data 4 app.o(.data) + pressureB 0x2000003c Data 4 app.o(.data) + mode_default_autoload 0x20000040 Data 4 app.o(.data) + uarts 0x20000048 Data 8 app_hart.o(.data) + scheduler_use_time 0x20000052 Data 2 app_flow.o(.data) + rnd_key_1 0x20000080 Data 8 key.o(.data) + rnd_key_2 0x20000088 Data 8 key.o(.data) + rnd_key_3 0x20000090 Data 8 key.o(.data) + rnd_key_4 0x20000098 Data 8 key.o(.data) + rnd_key_5 0x200000a0 Data 8 key.o(.data) + rnd_key_6 0x200000a8 Data 8 key.o(.data) + rnd_key_auto 0x200000b0 Data 8 key.o(.data) + hc_24_state 0x200000cc Data 1 at_hc24.o(.data) + mode_dac 0x200000d0 Data 4 mode_dac.o(.data) + mode_pwm 0x200000d4 Data 4 mode_pwm.o(.data) + FAL_KV_KEY 0x200000e0 Data 24 fal_execution.o(.data) + mode_pwmp_hd 0x20000148 Data 4 mode_pwmp_hd.o(.data) + mode_pwmp_hd_adjust 0x2000014c Data 4 mode_pwmp_hd.o(.data) + pid_autotune_hd 0x20000150 Data 4 mode_pwmp_hd.o(.data) + rsp 0x20000154 Data 4 mode_pwmp_hd.o(.data) + s_watch 0x20000158 Data 4 mode_pwmp_hd.o(.data) + mode_pwmp 0x2000015c Data 4 mode_pwmp.o(.data) + lcd 0x20000164 Data 4 board.o(.data) + current_m95_number 0x2000016c Data 1 eeprom_m95.o(.data) + eeprom_fm24_i2c 0x20000170 Data 4 eeprom_fm24.o(.data) + scheduler_occupancy_time 0x20000184 Data 4 sys.o(.data) + uwTick 0x20000188 Data 4 sys.o(.data) + scheduler_start_time 0x2000018c Data 4 sys.o(.data) + mallco_dev 0x20000194 Data 28 malloc.o(.data) + flow_tick 0x200001b0 Data 4 flow_core.o(.data) + eeprom_m95_1 0x200001b8 Data 56 fal_eeprom95_port.o(.data) + eeprom_m95_2 0x200001f0 Data 56 fal_eeprom95_port.o(.data) + eeprom_fm24 0x20000228 Data 56 fal_eeprom24_port.o(.data) + out_pos 0x20000270 Data 4 pid_hd.o(.data) + out_pos_watch 0x20000274 Data 4 pid_hd.o(.data) + __microlib_freelist 0x2000027c Data 4 mvars.o(.data) + __microlib_freelist_initialised 0x20000280 Data 4 mvars.o(.data) + mem2base 0x200002a0 Data 2048 malloc.o(.sram2) + uDevice 0x20000aa0 Data 356 app.o(.bss) + uRtData 0x20000c04 Data 33 app.o(.bss) + _pid 0x20000c28 Data 532 app.o(.bss) + calib_param 0x20000e3c Data 56 app.o(.bss) + adc_raw 0x20000e74 Data 20 app.o(.bss) + key_1 0x20000e88 Data 44 key.o(.bss) + key_2 0x20000eb4 Data 44 key.o(.bss) + key_3 0x20000ee0 Data 44 key.o(.bss) + key_4 0x20000f0c Data 44 key.o(.bss) + key_5 0x20000f38 Data 44 key.o(.bss) + key_6 0x20000f64 Data 44 key.o(.bss) + key_auto 0x20000f90 Data 44 key.o(.bss) + mode_params 0x20000fbc Data 512 mode.o(.bss) + show_actual_lpf 0x200011bc Data 12 mode.o(.bss) + eeprom_m95s 0x20001e0c Data 56 eeprom_m95.o(.bss) + adcs 0x20001e58 Data 84 adcs.o(.bss) + mem1base 0x20001ec0 Data 30720 malloc.o(.bss) + mem1mapbase 0x200096c0 Data 1920 malloc.o(.bss) + mem2mapbase 0x20009e40 Data 128 malloc.o(.bss) + __heap_base 0x20009ed0 Data 0 startup_stm32l476xx.o(HEAP) + __heap_limit 0x2000a6d0 Data 0 startup_stm32l476xx.o(HEAP) + __initial_sp 0x2000b6d0 Data 0 startup_stm32l476xx.o(STACK) + + + +============================================================================== + +Memory Map of the image + + Image Entry point : 0x08000189 + + Load Region LR_IROM1 (Base: 0x08000000, Size: 0x0000e7c8, Max: 0x00100000, ABSOLUTE, COMPRESSED[0x0000ddf8]) + + Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x0000dd28, Max: 0x00100000, ABSOLUTE) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x08000000 0x08000000 0x00000188 Data RO 3 RESET startup_stm32l476xx.o + 0x08000188 0x08000188 0x00000000 Code RO 7476 * .ARM.Collect$$$$00000000 mc_w.l(entry.o) + 0x08000188 0x08000188 0x00000004 Code RO 7827 .ARM.Collect$$$$00000001 mc_w.l(entry2.o) + 0x0800018c 0x0800018c 0x00000004 Code RO 7830 .ARM.Collect$$$$00000004 mc_w.l(entry5.o) + 0x08000190 0x08000190 0x00000000 Code RO 7832 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o) + 0x08000190 0x08000190 0x00000000 Code RO 7834 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o) + 0x08000190 0x08000190 0x00000008 Code RO 7835 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o) + 0x08000198 0x08000198 0x00000000 Code RO 7837 .ARM.Collect$$$$0000000D mc_w.l(entry10a.o) + 0x08000198 0x08000198 0x00000000 Code RO 7839 .ARM.Collect$$$$0000000F mc_w.l(entry11a.o) + 0x08000198 0x08000198 0x00000004 Code RO 7828 .ARM.Collect$$$$00002712 mc_w.l(entry2.o) + 0x0800019c 0x0800019c 0x00000024 Code RO 4 .text startup_stm32l476xx.o + 0x080001c0 0x080001c0 0x00000024 Code RO 7479 .text mc_w.l(rand.o) + 0x080001e4 0x080001e4 0x00000024 Code RO 7482 .text mc_w.l(memcpya.o) + 0x08000208 0x08000208 0x00000024 Code RO 7484 .text mc_w.l(memseta.o) + 0x0800022c 0x0800022c 0x00000018 Code RO 7486 .text mc_w.l(strncpy.o) + 0x08000244 0x08000244 0x0000000e Code RO 7488 .text mc_w.l(strlen.o) + 0x08000252 0x08000252 0x0000001c Code RO 7490 .text mc_w.l(strcmp.o) + 0x0800026e 0x0800026e 0x0000001e Code RO 7492 .text mc_w.l(strncmp.o) + 0x0800028c 0x0800028c 0x000000b0 Code RO 7785 .text mf_w.l(fadd.o) + 0x0800033c 0x0800033c 0x00000064 Code RO 7787 .text mf_w.l(fmul.o) + 0x080003a0 0x080003a0 0x0000007c Code RO 7789 .text mf_w.l(fdiv.o) + 0x0800041c 0x0800041c 0x00000018 Code RO 7791 .text mf_w.l(fscalb.o) + 0x08000434 0x08000434 0x0000015e Code RO 7793 .text mf_w.l(dadd.o) + 0x08000592 0x08000592 0x000000ea Code RO 7795 .text mf_w.l(dmul.o) + 0x0800067c 0x0800067c 0x000000de Code RO 7797 .text mf_w.l(ddiv.o) + 0x0800075a 0x0800075a 0x00000012 Code RO 7801 .text mf_w.l(fflti.o) + 0x0800076c 0x0800076c 0x0000000a Code RO 7803 .text mf_w.l(ffltui.o) + 0x08000776 0x08000776 0x00000022 Code RO 7805 .text mf_w.l(dflti.o) + 0x08000798 0x08000798 0x0000001a Code RO 7807 .text mf_w.l(dfltui.o) + 0x080007b2 0x080007b2 0x00000028 Code RO 7809 .text mf_w.l(ffixui.o) + 0x080007da 0x080007da 0x00000032 Code RO 7813 .text mf_w.l(dfixui.o) + 0x0800080c 0x0800080c 0x00000026 Code RO 7815 .text mf_w.l(f2d.o) + 0x08000832 0x08000832 0x00000002 PAD + 0x08000834 0x08000834 0x00000030 Code RO 7817 .text mf_w.l(cdcmple.o) + 0x08000864 0x08000864 0x00000030 Code RO 7819 .text mf_w.l(cdrcmple.o) + 0x08000894 0x08000894 0x00000038 Code RO 7821 .text mf_w.l(d2f.o) + 0x080008cc 0x080008cc 0x00000014 Code RO 7823 .text mf_w.l(cfcmple.o) + 0x080008e0 0x080008e0 0x00000014 Code RO 7825 .text mf_w.l(cfrcmple.o) + 0x080008f4 0x080008f4 0x0000002c Code RO 7844 .text mc_w.l(uidiv.o) + 0x08000920 0x08000920 0x00000068 Code RO 7846 .text mc_w.l(uldiv.o) + 0x08000988 0x08000988 0x0000001e Code RO 7848 .text mc_w.l(llshl.o) + 0x080009a6 0x080009a6 0x00000020 Code RO 7850 .text mc_w.l(llushr.o) + 0x080009c6 0x080009c6 0x00000024 Code RO 7852 .text mc_w.l(llsshr.o) + 0x080009ea 0x080009ea 0x00000000 Code RO 7856 .text mc_w.l(iusefp.o) + 0x080009ea 0x080009ea 0x0000006e Code RO 7857 .text mf_w.l(fepilogue.o) + 0x08000a58 0x08000a58 0x000000ba Code RO 7859 .text mf_w.l(depilogue.o) + 0x08000b12 0x08000b12 0x00000030 Code RO 7861 .text mf_w.l(dfixul.o) + 0x08000b42 0x08000b42 0x00000002 PAD + 0x08000b44 0x08000b44 0x00000024 Code RO 7863 .text mc_w.l(init.o) + 0x08000b68 0x08000b68 0x00000056 Code RO 7875 .text mc_w.l(__dczerorl2.o) + 0x08000bbe 0x08000bbe 0x00000006 Code RO 958 i.ADC1_2_IRQHandler stm32l4xx_it.o + 0x08000bc4 0x08000bc4 0x00000148 Code RO 6205 i.AES_CMAC_Final cmac.o + 0x08000d0c 0x08000d0c 0x00000024 Code RO 6206 i.AES_CMAC_Init cmac.o + 0x08000d30 0x08000d30 0x0000000a Code RO 6207 i.AES_CMAC_SetKey cmac.o + 0x08000d3a 0x08000d3a 0x000000ba Code RO 6208 i.AES_CMAC_Update cmac.o + 0x08000df4 0x08000df4 0x00000002 Code RO 959 i.BusFault_Handler stm32l4xx_it.o + 0x08000df6 0x08000df6 0x0000000a Code RO 5613 i.DBG_ASSERT debug.o + 0x08000e00 0x08000e00 0x00000006 Code RO 960 i.DMA1_Channel1_IRQHandler stm32l4xx_it.o + 0x08000e06 0x08000e06 0x00000006 Code RO 961 i.DMA1_Channel2_IRQHandler stm32l4xx_it.o + 0x08000e0c 0x08000e0c 0x00000010 Code RO 962 i.DMA1_Channel5_IRQHandler stm32l4xx_it.o + 0x08000e1c 0x08000e1c 0x0000000c Code RO 963 i.DMA1_Channel6_IRQHandler stm32l4xx_it.o + 0x08000e28 0x08000e28 0x0000000c Code RO 964 i.DMA1_Channel7_IRQHandler stm32l4xx_it.o + 0x08000e34 0x08000e34 0x0000000c Code RO 965 i.DMA2_Channel1_IRQHandler stm32l4xx_it.o + 0x08000e40 0x08000e40 0x0000000c Code RO 966 i.DMA2_Channel2_IRQHandler stm32l4xx_it.o + 0x08000e4c 0x08000e4c 0x0000000c Code RO 967 i.DMA2_Channel6_IRQHandler stm32l4xx_it.o + 0x08000e58 0x08000e58 0x0000000c Code RO 968 i.DMA2_Channel7_IRQHandler stm32l4xx_it.o + 0x08000e64 0x08000e64 0x00000002 Code RO 969 i.DebugMon_Handler stm32l4xx_it.o + 0x08000e66 0x08000e66 0x00000002 Code RO 970 i.HardFault_Handler stm32l4xx_it.o + 0x08000e68 0x08000e68 0x0000000c Code RO 971 i.I2C1_EV_IRQHandler stm32l4xx_it.o + 0x08000e74 0x08000e74 0x00000060 Code RO 1362 i.LL_ADC_CommonInit stm32l4xx_ll_adc.o + 0x08000ed4 0x08000ed4 0x00000010 Code RO 4954 i.LL_ADC_DMA_GetRegAddr adcs.o + 0x08000ee4 0x08000ee4 0x0000002c Code RO 1367 i.LL_ADC_Init stm32l4xx_ll_adc.o + 0x08000f10 0x08000f10 0x00000060 Code RO 1368 i.LL_ADC_REG_Init stm32l4xx_ll_adc.o + 0x08000f70 0x08000f70 0x00000022 Code RO 443 i.LL_ADC_REG_SetSequencerRanks adc.o + 0x08000f92 0x08000f92 0x0000001e Code RO 444 i.LL_ADC_SetChannelSamplingTime adc.o + 0x08000fb0 0x08000fb0 0x00000020 Code RO 445 i.LL_ADC_SetChannelSingleDiff adc.o + 0x08000fd0 0x08000fd0 0x00000018 Code RO 605 i.LL_AHB1_GRP1_EnableClock dma.o + 0x08000fe8 0x08000fe8 0x00000018 Code RO 377 i.LL_AHB2_GRP1_EnableClock gpio.o + 0x08001000 0x08001000 0x00000018 Code RO 446 i.LL_AHB2_GRP1_EnableClock adc.o + 0x08001018 0x08001018 0x00000018 Code RO 729 i.LL_AHB2_GRP1_EnableClock spi.o + 0x08001030 0x08001030 0x00000018 Code RO 772 i.LL_AHB2_GRP1_EnableClock tim.o + 0x08001048 0x08001048 0x00000018 Code RO 860 i.LL_AHB2_GRP1_EnableClock usart.o + 0x08001060 0x08001060 0x00000018 Code RO 773 i.LL_APB1_GRP1_EnableClock tim.o + 0x08001078 0x08001078 0x00000068 Code RO 1492 i.LL_DAC_Init stm32l4xx_ll_dac.o + 0x080010e0 0x080010e0 0x00000028 Code RO 5428 i.LL_DMA_ConfigAddresses i2cs.o + 0x08001108 0x08001108 0x00000018 Code RO 5429 i.LL_DMA_ConfigTransfer i2cs.o + 0x08001120 0x08001120 0x00000014 Code RO 5302 i.LL_DMA_DisableChannel uarts.o + 0x08001134 0x08001134 0x00000014 Code RO 5430 i.LL_DMA_DisableChannel i2cs.o + 0x08001148 0x08001148 0x00000014 Code RO 4955 i.LL_DMA_EnableChannel adcs.o + 0x0800115c 0x0800115c 0x00000014 Code RO 5303 i.LL_DMA_EnableChannel uarts.o + 0x08001170 0x08001170 0x00000014 Code RO 5431 i.LL_DMA_EnableChannel i2cs.o + 0x08001184 0x08001184 0x00000014 Code RO 5304 i.LL_DMA_EnableIT_TC uarts.o + 0x08001198 0x08001198 0x00000014 Code RO 5432 i.LL_DMA_EnableIT_TC i2cs.o + 0x080011ac 0x080011ac 0x00000014 Code RO 5433 i.LL_DMA_EnableIT_TE i2cs.o + 0x080011c0 0x080011c0 0x00000014 Code RO 5434 i.LL_DMA_GetDataTransferDirection i2cs.o + 0x080011d4 0x080011d4 0x00000014 Code RO 447 i.LL_DMA_SetChannelPriorityLevel adc.o + 0x080011e8 0x080011e8 0x00000014 Code RO 657 i.LL_DMA_SetChannelPriorityLevel i2c.o + 0x080011fc 0x080011fc 0x00000014 Code RO 861 i.LL_DMA_SetChannelPriorityLevel usart.o + 0x08001210 0x08001210 0x00000018 Code RO 4956 i.LL_DMA_SetDataLength adcs.o + 0x08001228 0x08001228 0x00000018 Code RO 5305 i.LL_DMA_SetDataLength uarts.o + 0x08001240 0x08001240 0x00000018 Code RO 5435 i.LL_DMA_SetDataLength i2cs.o + 0x08001258 0x08001258 0x00000018 Code RO 448 i.LL_DMA_SetDataTransferDirection adc.o + 0x08001270 0x08001270 0x00000018 Code RO 658 i.LL_DMA_SetDataTransferDirection i2c.o + 0x08001288 0x08001288 0x00000018 Code RO 862 i.LL_DMA_SetDataTransferDirection usart.o + 0x080012a0 0x080012a0 0x00000014 Code RO 449 i.LL_DMA_SetMemoryIncMode adc.o + 0x080012b4 0x080012b4 0x00000014 Code RO 659 i.LL_DMA_SetMemoryIncMode i2c.o + 0x080012c8 0x080012c8 0x00000014 Code RO 863 i.LL_DMA_SetMemoryIncMode usart.o + 0x080012dc 0x080012dc 0x00000014 Code RO 450 i.LL_DMA_SetMemorySize adc.o + 0x080012f0 0x080012f0 0x00000014 Code RO 660 i.LL_DMA_SetMemorySize i2c.o + 0x08001304 0x08001304 0x00000014 Code RO 864 i.LL_DMA_SetMemorySize usart.o + 0x08001318 0x08001318 0x00000014 Code RO 451 i.LL_DMA_SetMode adc.o + 0x0800132c 0x0800132c 0x00000014 Code RO 661 i.LL_DMA_SetMode i2c.o + 0x08001340 0x08001340 0x00000014 Code RO 865 i.LL_DMA_SetMode usart.o + 0x08001354 0x08001354 0x00000014 Code RO 452 i.LL_DMA_SetPeriphIncMode adc.o + 0x08001368 0x08001368 0x00000014 Code RO 662 i.LL_DMA_SetPeriphIncMode i2c.o + 0x0800137c 0x0800137c 0x00000014 Code RO 866 i.LL_DMA_SetPeriphIncMode usart.o + 0x08001390 0x08001390 0x0000001e Code RO 453 i.LL_DMA_SetPeriphRequest adc.o + 0x080013ae 0x080013ae 0x0000001e Code RO 663 i.LL_DMA_SetPeriphRequest i2c.o + 0x080013cc 0x080013cc 0x0000001e Code RO 867 i.LL_DMA_SetPeriphRequest usart.o + 0x080013ea 0x080013ea 0x0000001e Code RO 5436 i.LL_DMA_SetPeriphRequest i2cs.o + 0x08001408 0x08001408 0x00000014 Code RO 454 i.LL_DMA_SetPeriphSize adc.o + 0x0800141c 0x0800141c 0x00000014 Code RO 664 i.LL_DMA_SetPeriphSize i2c.o + 0x08001430 0x08001430 0x00000014 Code RO 868 i.LL_DMA_SetPeriphSize usart.o + 0x08001444 0x08001444 0x0000013c Code RO 1312 i.LL_GPIO_Init stm32l4xx_ll_gpio.o + 0x08001580 0x08001580 0x0000000e Code RO 2313 i.LL_GPIO_IsInputPinSet app_flow.o + 0x0800158e 0x0800158e 0x0000000e Code RO 2402 i.LL_GPIO_IsInputPinSet key.o + 0x0800159c 0x0800159c 0x00000026 Code RO 2202 i.LL_GPIO_SetPinMode app_hart.o + 0x080015c2 0x080015c2 0x00000026 Code RO 2403 i.LL_GPIO_SetPinMode key.o + 0x080015e8 0x080015e8 0x00000026 Code RO 3096 i.LL_GPIO_SetPinMode pdctrl.o + 0x0800160e 0x0800160e 0x00000026 Code RO 3425 i.LL_GPIO_SetPinMode mode_pwm.o + 0x08001634 0x08001634 0x00000026 Code RO 3929 i.LL_GPIO_SetPinMode mode_pwmp.o + 0x0800165a 0x0800165a 0x00000026 Code RO 4658 i.LL_GPIO_SetPinMode leds.o + 0x08001680 0x08001680 0x0000000c Code RO 5437 i.LL_I2C_DMA_GetRegAddr i2cs.o + 0x0800168c 0x0800168c 0x00000034 Code RO 5438 i.LL_I2C_HandleTransfer i2cs.o + 0x080016c0 0x080016c0 0x0000006a Code RO 1534 i.LL_I2C_Init stm32l4xx_ll_i2c.o + 0x0800172a 0x0800172a 0x00000002 PAD + 0x0800172c 0x0800172c 0x00000010 Code RO 4776 i.LL_IncTick sys.o + 0x0800173c 0x0800173c 0x0000001a Code RO 1181 i.LL_Init1msTick stm32l4xx_ll_utils.o + 0x08001756 0x08001756 0x00000002 PAD + 0x08001758 0x08001758 0x000000cc Code RO 1880 i.LL_RCC_GetUARTClockFreq stm32l4xx_ll_rcc.o + 0x08001824 0x08001824 0x00000114 Code RO 1881 i.LL_RCC_GetUSARTClockFreq stm32l4xx_ll_rcc.o + 0x08001938 0x08001938 0x00000010 Code RO 1883 i.LL_RCC_HSI_IsReady stm32l4xx_ll_rcc.o + 0x08001948 0x08001948 0x00000010 Code RO 1884 i.LL_RCC_LSE_IsReady stm32l4xx_ll_rcc.o + 0x08001958 0x08001958 0x00000010 Code RO 1885 i.LL_RCC_MSI_GetRange stm32l4xx_ll_rcc.o + 0x08001968 0x08001968 0x00000010 Code RO 1886 i.LL_RCC_MSI_GetRangeAfterStandby stm32l4xx_ll_rcc.o + 0x08001978 0x08001978 0x00000010 Code RO 1887 i.LL_RCC_MSI_IsEnabledRangeSelect stm32l4xx_ll_rcc.o + 0x08001988 0x08001988 0x00000010 Code RO 1890 i.LL_RCC_PLL_GetDivider stm32l4xx_ll_rcc.o + 0x08001998 0x08001998 0x00000010 Code RO 1891 i.LL_RCC_PLL_GetMainSource stm32l4xx_ll_rcc.o + 0x080019a8 0x080019a8 0x00000014 Code RO 455 i.LL_RCC_SetADCClockSource adc.o + 0x080019bc 0x080019bc 0x00000070 Code RO 1573 i.LL_SPI_Init stm32l4xx_ll_spi.o + 0x08001a2c 0x08001a2c 0x0000000c Code RO 1187 i.LL_SetSystemCoreClock stm32l4xx_ll_utils.o + 0x08001a38 0x08001a38 0x000000c0 Code RO 1655 i.LL_TIM_Init stm32l4xx_ll_tim.o + 0x08001af8 0x08001af8 0x00000068 Code RO 774 i.LL_TIM_OC_DisableFast tim.o + 0x08001b60 0x08001b60 0x00000068 Code RO 775 i.LL_TIM_OC_EnablePreload tim.o + 0x08001bc8 0x08001bc8 0x00000058 Code RO 1656 i.LL_TIM_OC_Init stm32l4xx_ll_tim.o + 0x08001c20 0x08001c20 0x0000000c Code RO 5306 i.LL_USART_DMA_GetRegAddr uarts.o + 0x08001c2c 0x08001c2c 0x000000e0 Code RO 1812 i.LL_USART_Init stm32l4xx_ll_usart.o + 0x08001d0c 0x08001d0c 0x00000020 Code RO 1188 i.LL_mDelay stm32l4xx_ll_utils.o + 0x08001d2c 0x08001d2c 0x00000328 Code RO 456 i.MX_ADC1_Init adc.o + 0x08002054 0x08002054 0x00000180 Code RO 457 i.MX_ADC2_Init adc.o + 0x080021d4 0x080021d4 0x000000c4 Code RO 571 i.MX_DAC1_Init dac.o + 0x08002298 0x08002298 0x000000fc Code RO 606 i.MX_DMA_Init dma.o + 0x08002394 0x08002394 0x000001f6 Code RO 378 i.MX_GPIO_Init gpio.o + 0x0800258a 0x0800258a 0x00000002 PAD + 0x0800258c 0x0800258c 0x00000190 Code RO 665 i.MX_I2C1_Init i2c.o + 0x0800271c 0x0800271c 0x00000098 Code RO 730 i.MX_SPI1_Init spi.o + 0x080027b4 0x080027b4 0x0000011c Code RO 731 i.MX_SPI2_Init spi.o + 0x080028d0 0x080028d0 0x000000cc Code RO 776 i.MX_TIM2_Init tim.o + 0x0800299c 0x0800299c 0x000000cc Code RO 777 i.MX_TIM3_Init tim.o + 0x08002a68 0x08002a68 0x00000084 Code RO 778 i.MX_TIM4_Init tim.o + 0x08002aec 0x08002aec 0x00000070 Code RO 779 i.MX_TIM6_Init tim.o + 0x08002b5c 0x08002b5c 0x00000070 Code RO 780 i.MX_TIM7_Init tim.o + 0x08002bcc 0x08002bcc 0x00000184 Code RO 869 i.MX_UART5_Init usart.o + 0x08002d50 0x08002d50 0x00000168 Code RO 870 i.MX_USART1_UART_Init usart.o + 0x08002eb8 0x08002eb8 0x00000002 Code RO 972 i.MemManage_Handler stm32l4xx_it.o + 0x08002eba 0x08002eba 0x00000002 Code RO 973 i.NMI_Handler stm32l4xx_it.o + 0x08002ebc 0x08002ebc 0x00000032 Code RO 458 i.NVIC_EncodePriority adc.o + 0x08002eee 0x08002eee 0x00000032 Code RO 607 i.NVIC_EncodePriority dma.o + 0x08002f20 0x08002f20 0x00000032 Code RO 781 i.NVIC_EncodePriority tim.o + 0x08002f52 0x08002f52 0x00000032 Code RO 871 i.NVIC_EncodePriority usart.o + 0x08002f84 0x08002f84 0x00000098 Code RO 1659 i.OC1Config stm32l4xx_ll_tim.o + 0x0800301c 0x0800301c 0x000000a0 Code RO 1660 i.OC2Config stm32l4xx_ll_tim.o + 0x080030bc 0x080030bc 0x0000009c Code RO 1661 i.OC3Config stm32l4xx_ll_tim.o + 0x08003158 0x08003158 0x00000080 Code RO 1662 i.OC4Config stm32l4xx_ll_tim.o + 0x080031d8 0x080031d8 0x0000007c Code RO 1663 i.OC5Config stm32l4xx_ll_tim.o + 0x08003254 0x08003254 0x0000007c Code RO 1664 i.OC6Config stm32l4xx_ll_tim.o + 0x080032d0 0x080032d0 0x00000002 Code RO 974 i.PendSV_Handler stm32l4xx_it.o + 0x080032d2 0x080032d2 0x00000002 PAD + 0x080032d4 0x080032d4 0x00000040 Code RO 14 i.PeriphCommonClock_Config main.o + 0x08003314 0x08003314 0x0000001c Code RO 1893 i.RCC_GetHCLKClockFreq stm32l4xx_ll_rcc.o + 0x08003330 0x08003330 0x0000001c Code RO 1894 i.RCC_GetPCLK1ClockFreq stm32l4xx_ll_rcc.o + 0x0800334c 0x0800334c 0x0000001c Code RO 1895 i.RCC_GetPCLK2ClockFreq stm32l4xx_ll_rcc.o + 0x08003368 0x08003368 0x000000ac Code RO 1896 i.RCC_GetSystemClockFreq stm32l4xx_ll_rcc.o + 0x08003414 0x08003414 0x000000c0 Code RO 1904 i.RCC_PLL_GetFreqDomain_SYS stm32l4xx_ll_rcc.o + 0x080034d4 0x080034d4 0x00000002 Code RO 975 i.SVC_Handler stm32l4xx_it.o + 0x080034d6 0x080034d6 0x00000002 Code RO 976 i.SysTick_Handler stm32l4xx_it.o + 0x080034d8 0x080034d8 0x00000018 Code RO 4719 i.SysTick_Init delay.o + 0x080034f0 0x080034f0 0x00000098 Code RO 15 i.SystemClock_Config main.o + 0x08003588 0x08003588 0x00000002 Code RO 2089 i.SystemInit system_stm32l4xx.o + 0x0800358a 0x0800358a 0x00000002 PAD + 0x0800358c 0x0800358c 0x0000007c Code RO 977 i.TIM4_IRQHandler stm32l4xx_it.o + 0x08003608 0x08003608 0x00000090 Code RO 978 i.TIM6_DAC_IRQHandler stm32l4xx_it.o + 0x08003698 0x08003698 0x00000084 Code RO 979 i.TIM7_IRQHandler stm32l4xx_it.o + 0x0800371c 0x0800371c 0x0000000c Code RO 980 i.UART5_IRQHandler stm32l4xx_it.o + 0x08003728 0x08003728 0x0000000c Code RO 981 i.USART1_IRQHandler stm32l4xx_it.o + 0x08003734 0x08003734 0x00000002 Code RO 982 i.UsageFault_Handler stm32l4xx_it.o + 0x08003736 0x08003736 0x00000002 PAD + 0x08003738 0x08003738 0x00000028 Code RO 7731 i.__0sprintf mc_w.l(printfa.o) + 0x08003760 0x08003760 0x0000001a Code RO 459 i.__NVIC_EnableIRQ adc.o + 0x0800377a 0x0800377a 0x0000001a Code RO 608 i.__NVIC_EnableIRQ dma.o + 0x08003794 0x08003794 0x0000001a Code RO 782 i.__NVIC_EnableIRQ tim.o + 0x080037ae 0x080037ae 0x0000001a Code RO 872 i.__NVIC_EnableIRQ usart.o + 0x080037c8 0x080037c8 0x00000010 Code RO 609 i.__NVIC_GetPriorityGrouping dma.o + 0x080037d8 0x080037d8 0x00000020 Code RO 460 i.__NVIC_SetPriority adc.o + 0x080037f8 0x080037f8 0x00000020 Code RO 610 i.__NVIC_SetPriority dma.o + 0x08003818 0x08003818 0x00000020 Code RO 783 i.__NVIC_SetPriority tim.o + 0x08003838 0x08003838 0x00000020 Code RO 873 i.__NVIC_SetPriority usart.o + 0x08003858 0x08003858 0x0000000e Code RO 7869 i.__scatterload_copy mc_w.l(handlers.o) + 0x08003866 0x08003866 0x00000002 Code RO 7870 i.__scatterload_null mc_w.l(handlers.o) + 0x08003868 0x08003868 0x0000000e Code RO 7871 i.__scatterload_zeroinit mc_w.l(handlers.o) + 0x08003876 0x08003876 0x00000002 PAD + 0x08003878 0x08003878 0x00000094 Code RO 5183 i._dma_enable spis.o + 0x0800390c 0x0800390c 0x0000006a Code RO 6947 i._fdb_continue_ff_addr fdb_utils.o + 0x08003976 0x08003976 0x0000001e Code RO 6948 i._fdb_flash_erase fdb_utils.o + 0x08003994 0x08003994 0x0000001e Code RO 6949 i._fdb_flash_read fdb_utils.o + 0x080039b2 0x080039b2 0x0000001e Code RO 6950 i._fdb_flash_write fdb_utils.o + 0x080039d0 0x080039d0 0x0000002a Code RO 6951 i._fdb_get_status fdb_utils.o + 0x080039fa 0x080039fa 0x00000086 Code RO 6351 i._fdb_init_ex fdb.o + 0x08003a80 0x08003a80 0x00000018 Code RO 6352 i._fdb_init_finish fdb.o + 0x08003a98 0x08003a98 0x00000090 Code RO 6424 i._fdb_kv_load fdb_kvdb.o + 0x08003b28 0x08003b28 0x00000026 Code RO 6952 i._fdb_read_status fdb_utils.o + 0x08003b4e 0x08003b4e 0x0000002e Code RO 6953 i._fdb_set_status fdb_utils.o + 0x08003b7c 0x08003b7c 0x00000036 Code RO 6954 i._fdb_write_status fdb_utils.o + 0x08003bb2 0x08003bb2 0x00000002 PAD + 0x08003bb4 0x08003bb4 0x0000016a Code RO 7736 i._fp_digits mc_w.l(printfa.o) + 0x08003d1e 0x08003d1e 0x00000036 Code RO 5184 i._hardware_enable spis.o + 0x08003d54 0x08003d54 0x00000008 Code RO 5439 i._malloc i2cs.o + 0x08003d5c 0x08003d5c 0x0000000e Code RO 2850 i._memset params.o + 0x08003d6a 0x08003d6a 0x0000000e Code RO 3656 i._memset mode_pwmp_hd.o + 0x08003d78 0x08003d78 0x0000000e Code RO 4957 i._memset adcs.o + 0x08003d86 0x08003d86 0x0000000e Code RO 5661 i._memset lib.o + 0x08003d94 0x08003d94 0x0000000e Code RO 6209 i._memset cmac.o + 0x08003da2 0x08003da2 0x00000010 Code RO 2203 i._mstrlen app_hart.o + 0x08003db2 0x08003db2 0x00000010 Code RO 3259 i._mstrlen at_hc24.o + 0x08003dc2 0x08003dc2 0x00000002 PAD + 0x08003dc4 0x08003dc4 0x00000182 Code RO 7433 i._pid_position pid_hd.o + 0x08003f46 0x08003f46 0x00000002 PAD + 0x08003f48 0x08003f48 0x000006e2 Code RO 7737 i._printf_core mc_w.l(printfa.o) + 0x0800462a 0x0800462a 0x00000024 Code RO 7738 i._printf_post_padding mc_w.l(printfa.o) + 0x0800464e 0x0800464e 0x0000002e Code RO 7739 i._printf_pre_padding mc_w.l(printfa.o) + 0x0800467c 0x0800467c 0x0000001a Code RO 5127 i._read gpios.o + 0x08004696 0x08004696 0x0000014a Code RO 5440 i._read_byte i2cs.o + 0x080047e0 0x080047e0 0x00000024 Code RO 5185 i._read_drdy spis.o + 0x08004804 0x08004804 0x0000016e Code RO 5441 i._read_mem_dma i2cs.o + 0x08004972 0x08004972 0x0000006a Code RO 5186 i._read_regs spis.o + 0x080049dc 0x080049dc 0x0000000e Code RO 5128 i._reset gpios.o + 0x080049ea 0x080049ea 0x0000000e Code RO 5129 i._set gpios.o + 0x080049f8 0x080049f8 0x0000003c Code RO 7434 i._set_ctrl_prm_position pid_hd.o + 0x08004a34 0x08004a34 0x00000006 Code RO 7435 i._set_out_prm_position pid_hd.o + 0x08004a3a 0x08004a3a 0x0000002c Code RO 5187 i._spi_dma_callback spis.o + 0x08004a66 0x08004a66 0x00000002 PAD + 0x08004a68 0x08004a68 0x00000064 Code RO 5188 i._spi_dma_send spis.o + 0x08004acc 0x08004acc 0x0000003a Code RO 5189 i._spi_read_reg spis.o + 0x08004b06 0x08004b06 0x00000056 Code RO 5190 i._spi_write_cmd spis.o + 0x08004b5c 0x08004b5c 0x0000006a Code RO 5191 i._spi_write_data spis.o + 0x08004bc6 0x08004bc6 0x0000003a Code RO 5192 i._spi_write_reg spis.o + 0x08004c00 0x08004c00 0x0000000a Code RO 7741 i._sputc mc_w.l(printfa.o) + 0x08004c0a 0x08004c0a 0x00000072 Code RO 5442 i._start i2cs.o + 0x08004c7c 0x08004c7c 0x0000006c Code RO 5443 i._stop i2cs.o + 0x08004ce8 0x08004ce8 0x0000001a Code RO 5130 i._toggle gpios.o + 0x08004d02 0x08004d02 0x0000008e Code RO 5444 i._wait_ack i2cs.o + 0x08004d90 0x08004d90 0x000000ae Code RO 5445 i._write_byte i2cs.o + 0x08004e3e 0x08004e3e 0x00000002 PAD + 0x08004e40 0x08004e40 0x000000fe Code RO 5446 i._write_mem_dma i2cs.o + 0x08004f3e 0x08004f3e 0x00000066 Code RO 5193 i._write_regs spis.o + 0x08004fa4 0x08004fa4 0x00000026 Code RO 5447 i._write_word i2cs.o + 0x08004fca 0x08004fca 0x0000001a Code RO 2647 i.actual_travel_deal convert.o + 0x08004fe4 0x08004fe4 0x00000054 Code RO 4959 i.adc_dma_callback adcs.o + 0x08005038 0x08005038 0x000000a8 Code RO 4960 i.adc_env_callback adcs.o + 0x080050e0 0x080050e0 0x00000094 Code RO 4961 i.adc_get_channels_count adcs.o + 0x08005174 0x08005174 0x00000148 Code RO 4962 i.adc_init adcs.o + 0x080052bc 0x080052bc 0x0000005c Code RO 4963 i.adc_result_average adcs.o + 0x08005318 0x08005318 0x000000e0 Code RO 4964 i.adc_result_median adcs.o + 0x080053f8 0x080053f8 0x00000004 Code RO 6263 i.add_round_key aes.o + 0x080053fc 0x080053fc 0x00000056 Code RO 6267 i.aes_encrypt aes.o + 0x08005452 0x08005452 0x00000002 PAD + 0x08005454 0x08005454 0x00000102 Code RO 6268 i.aes_set_key aes.o + 0x08005556 0x08005556 0x0000002a Code RO 6425 i.align_write fdb_kvdb.o + 0x08005580 0x08005580 0x0000008c Code RO 6426 i.alloc_kv fdb_kvdb.o + 0x0800560c 0x0800560c 0x00000030 Code RO 6427 i.alloc_kv_cb fdb_kvdb.o + 0x0800563c 0x0800563c 0x00000004 Code RO 2404 i.allow_condition key.o + 0x08005640 0x08005640 0x00000088 Code RO 2903 i.alog_control_module mode.o + 0x080056c8 0x080056c8 0x0000001e Code RO 2126 i.app_init app.o + 0x080056e6 0x080056e6 0x00000002 PAD + 0x080056e8 0x080056e8 0x0000003c Code RO 2127 i.app_preload app.o + 0x08005724 0x08005724 0x00000004 Code RO 2128 i.app_start app.o + 0x08005728 0x08005728 0x0000002c Code RO 3260 i.at_cmd_name at_hc24.o + 0x08005754 0x08005754 0x00000074 Code RO 3261 i.at_cmd_parse at_hc24.o + 0x080057c8 0x080057c8 0x00000044 Code RO 3262 i.at_cmd_search at_hc24.o + 0x0800580c 0x0800580c 0x00000014 Code RO 3263 i.at_cmd_test at_hc24.o + 0x08005820 0x08005820 0x0000002c Code RO 3264 i.at_set_memcmp_cache at_hc24.o + 0x0800584c 0x0800584c 0x000000a8 Code RO 3999 i.board_init board.o + 0x080058f4 0x080058f4 0x00000048 Code RO 2314 i.btn_inspection app_flow.o + 0x0800593c 0x0800593c 0x00000054 Code RO 2315 i.business_inspection app_flow.o + 0x08005990 0x08005990 0x00000008 Code RO 4889 i.button_attach btn.o + 0x08005998 0x08005998 0x000001fa Code RO 4890 i.button_handler btn.o + 0x08005b92 0x08005b92 0x00000040 Code RO 4891 i.button_init btn.o + 0x08005bd2 0x08005bd2 0x00000002 PAD + 0x08005bd4 0x08005bd4 0x00000024 Code RO 4892 i.button_start btn.o + 0x08005bf8 0x08005bf8 0x00000020 Code RO 4893 i.button_stop btn.o + 0x08005c18 0x08005c18 0x0000001c Code RO 4894 i.button_ticks btn.o + 0x08005c34 0x08005c34 0x0000007c Code RO 3097 i.calculate_pwm_duty pdctrl.o + 0x08005cb0 0x08005cb0 0x0000004c Code RO 3098 i.calculate_pwm_freq pdctrl.o + 0x08005cfc 0x08005cfc 0x00000074 Code RO 4000 i.calib_parapos_perent board.o + 0x08005d70 0x08005d70 0x00000020 Code RO 6428 i.check_and_recovery_gc_cb fdb_kvdb.o + 0x08005d90 0x08005d90 0x00000054 Code RO 6429 i.check_and_recovery_kv_cb fdb_kvdb.o + 0x08005de4 0x08005de4 0x00000048 Code RO 7283 i.check_and_update_part_cache fal_partition.o + 0x08005e2c 0x08005e2c 0x0000001c Code RO 6430 i.check_oldest_addr_cb fdb_kvdb.o + 0x08005e48 0x08005e48 0x00000028 Code RO 6431 i.check_sec_hdr_cb fdb_kvdb.o + 0x08005e70 0x08005e70 0x0000005c Code RO 6767 i.check_sec_hdr_cb fdb_tsdb.o + 0x08005ecc 0x08005ecc 0x00000084 Code RO 6269 i.copy_and_key aes.o + 0x08005f50 0x08005f50 0x00000042 Code RO 6270 i.copy_block aes.o + 0x08005f92 0x08005f92 0x00000012 Code RO 6271 i.copy_block_nn aes.o + 0x08005fa4 0x08005fa4 0x00000036 Code RO 5662 i.crc16_compute lib.o + 0x08005fda 0x08005fda 0x00000002 PAD + 0x08005fdc 0x08005fdc 0x0000017c Code RO 6432 i.create_kv_blob fdb_kvdb.o + 0x08006158 0x08006158 0x000000b8 Code RO 2316 i.current_inspection app_flow.o + 0x08006210 0x08006210 0x0000001c Code RO 3099 i.dac_dinit pdctrl.o + 0x0800622c 0x0800622c 0x0000002c Code RO 3100 i.dac_init pdctrl.o + 0x08006258 0x08006258 0x0000002c Code RO 2649 i.dead_zone_deal convert.o + 0x08006284 0x08006284 0x0000004c Code RO 5664 i.dec_format_hex lib.o + 0x080062d0 0x080062d0 0x000000f2 Code RO 6433 i.del_kv fdb_kvdb.o + 0x080063c2 0x080063c2 0x00000024 Code RO 5448 i.delay i2cs.o + 0x080063e6 0x080063e6 0x00000002 PAD + 0x080063e8 0x080063e8 0x00000018 Code RO 4720 i.delay_init delay.o + 0x08006400 0x08006400 0x00000036 Code RO 4721 i.delay_ms delay.o + 0x08006436 0x08006436 0x0000000c Code RO 4722 i.delay_tick delay.o + 0x08006442 0x08006442 0x00000002 PAD + 0x08006444 0x08006444 0x00000038 Code RO 4723 i.delay_us delay.o + 0x0800647c 0x0800647c 0x0000003a Code RO 4253 i.dma_rx_cb eeprom_m95.o + 0x080064b6 0x080064b6 0x0000003e Code RO 4254 i.dma_tx_cb eeprom_m95.o + 0x080064f4 0x080064f4 0x0000009a Code RO 6434 i.do_gc fdb_kvdb.o + 0x0800658e 0x0800658e 0x00000002 PAD + 0x08006590 0x08006590 0x00000030 Code RO 4001 i.driver_dinit board.o + 0x080065c0 0x080065c0 0x00000030 Code RO 4002 i.driver_init board.o + 0x080065f0 0x080065f0 0x00000010 Code RO 4354 i.eeprom_fm24_disable eeprom_fm24.o + 0x08006600 0x08006600 0x00000050 Code RO 4355 i.eeprom_fm24_dma_rx_cb eeprom_fm24.o + 0x08006650 0x08006650 0x00000050 Code RO 4356 i.eeprom_fm24_dma_tx_cb eeprom_fm24.o + 0x080066a0 0x080066a0 0x00000010 Code RO 4357 i.eeprom_fm24_enable eeprom_fm24.o + 0x080066b0 0x080066b0 0x00000044 Code RO 4358 i.eeprom_fm24_init eeprom_fm24.o + 0x080066f4 0x080066f4 0x00000028 Code RO 4359 i.eeprom_fm24_read eeprom_fm24.o + 0x0800671c 0x0800671c 0x000000c2 Code RO 4361 i.eeprom_fm24_write eeprom_fm24.o + 0x080067de 0x080067de 0x00000002 PAD + 0x080067e0 0x080067e0 0x00000030 Code RO 4487 i.eeprom_lc02b_init eeprom_lc02b.o + 0x08006810 0x08006810 0x00000010 Code RO 4255 i.eeprom_m95_disable eeprom_m95.o + 0x08006820 0x08006820 0x00000010 Code RO 4256 i.eeprom_m95_enable eeprom_m95.o + 0x08006830 0x08006830 0x00000164 Code RO 4257 i.eeprom_m95_init eeprom_m95.o + 0x08006994 0x08006994 0x000000a4 Code RO 4258 i.eeprom_m95_read eeprom_m95.o + 0x08006a38 0x08006a38 0x00000034 Code RO 4259 i.eeprom_m95_ready eeprom_m95.o + 0x08006a6c 0x08006a6c 0x0000014e Code RO 4261 i.eeprom_m95_write eeprom_m95.o + 0x08006bba 0x08006bba 0x00000006 Code RO 7085 i.erase fal_eeprom95_port.o + 0x08006bc0 0x08006bc0 0x00000004 Code RO 7147 i.erase fal_eeprom24_port.o + 0x08006bc4 0x08006bc4 0x00000030 Code RO 3657 i.execute_dac mode_pwmp_hd.o + 0x08006bf4 0x08006bf4 0x0000024a Code RO 3658 i.execute_dac_plan1 mode_pwmp_hd.o + 0x08006e3e 0x08006e3e 0x00000004 Code RO 3659 i.execute_dac_plan2 mode_pwmp_hd.o + 0x08006e42 0x08006e42 0x00000004 Code RO 3660 i.execute_dac_plan3 mode_pwmp_hd.o + 0x08006e46 0x08006e46 0x00000004 Code RO 3661 i.execute_dac_plan4 mode_pwmp_hd.o + 0x08006e4a 0x08006e4a 0x00000002 PAD + 0x08006e4c 0x08006e4c 0x00000040 Code RO 3662 i.execute_pid_init mode_pwmp_hd.o + 0x08006e8c 0x08006e8c 0x00000034 Code RO 3504 i.fal_execution_get fal_execution.o + 0x08006ec0 0x08006ec0 0x00000194 Code RO 3505 i.fal_execution_init fal_execution.o + 0x08007054 0x08007054 0x000000cc Code RO 3507 i.fal_execution_kv_read fal_execution.o + 0x08007120 0x08007120 0x000000cc Code RO 3508 i.fal_execution_kv_write fal_execution.o + 0x080071ec 0x080071ec 0x00000070 Code RO 3509 i.fal_execution_set_cmac fal_execution.o + 0x0800725c 0x0800725c 0x00000018 Code RO 3510 i.fal_execution_set_crc fal_execution.o + 0x08007274 0x08007274 0x0000002c Code RO 7239 i.fal_flash_device_find fal_flash.o + 0x080072a0 0x080072a0 0x00000034 Code RO 7240 i.fal_flash_init fal_flash.o + 0x080072d4 0x080072d4 0x0000002c Code RO 7196 i.fal_init fal.o + 0x08007300 0x08007300 0x00000038 Code RO 7285 i.fal_partition_erase fal_partition.o + 0x08007338 0x08007338 0x00000034 Code RO 7287 i.fal_partition_find fal_partition.o + 0x0800736c 0x0800736c 0x0000002c Code RO 7288 i.fal_partition_init fal_partition.o + 0x08007398 0x08007398 0x0000003e Code RO 7289 i.fal_partition_read fal_partition.o + 0x080073d6 0x080073d6 0x0000003e Code RO 7290 i.fal_partition_write fal_partition.o + 0x08007414 0x08007414 0x00000006 Code RO 6955 i.fdb_blob_make fdb_utils.o + 0x0800741a 0x0800741a 0x00000002 PAD + 0x0800741c 0x0800741c 0x00000028 Code RO 6957 i.fdb_calc_crc32 fdb_utils.o + 0x08007444 0x08007444 0x00000038 Code RO 6438 i.fdb_kv_get_blob fdb_kvdb.o + 0x0800747c 0x0800747c 0x00000032 Code RO 6444 i.fdb_kv_set_blob fdb_kvdb.o + 0x080074ae 0x080074ae 0x00000092 Code RO 6445 i.fdb_kv_set_default fdb_kvdb.o + 0x08007540 0x08007540 0x00000040 Code RO 6448 i.fdb_kvdb_control fdb_kvdb.o + 0x08007580 0x08007580 0x000000c0 Code RO 6450 i.fdb_kvdb_init fdb_kvdb.o + 0x08007640 0x08007640 0x0000005e Code RO 6768 i.fdb_tsdb_control fdb_tsdb.o + 0x0800769e 0x0800769e 0x00000002 PAD + 0x080076a0 0x080076a0 0x0000010c Code RO 6770 i.fdb_tsdb_init fdb_tsdb.o + 0x080077ac 0x080077ac 0x0000004e Code RO 6451 i.find_kv fdb_kvdb.o + 0x080077fa 0x080077fa 0x0000003c Code RO 6452 i.find_kv_cb fdb_kvdb.o + 0x08007836 0x08007836 0x00000002 PAD + 0x08007838 0x08007838 0x00000024 Code RO 6453 i.find_kv_no_cache fdb_kvdb.o + 0x0800785c 0x0800785c 0x000000a0 Code RO 6454 i.find_next_kv_addr fdb_kvdb.o + 0x080078fc 0x080078fc 0x00000018 Code RO 7293 i.flash_device_find_by_part fal_partition.o + 0x08007914 0x08007914 0x00000018 Code RO 2317 i.flow_init app_flow.o + 0x0800792c 0x0800792c 0x00000028 Code RO 2318 i.flow_start app_flow.o + 0x08007954 0x08007954 0x00000010 Code RO 6780 i.format_all_cb fdb_tsdb.o + 0x08007964 0x08007964 0x00000090 Code RO 6455 i.format_sector fdb_kvdb.o + 0x080079f4 0x080079f4 0x00000054 Code RO 6781 i.format_sector fdb_tsdb.o + 0x08007a48 0x08007a48 0x00000050 Code RO 7757 i.free mc_w.l(malloc.o) + 0x08007a98 0x08007a98 0x00000010 Code RO 6456 i.gc_check_cb fdb_kvdb.o + 0x08007aa8 0x08007aa8 0x00000006 Code RO 6457 i.gc_collect fdb_kvdb.o + 0x08007aae 0x08007aae 0x00000002 PAD + 0x08007ab0 0x08007ab0 0x00000050 Code RO 6458 i.gc_collect_by_free_size fdb_kvdb.o + 0x08007b00 0x08007b00 0x0000006c Code RO 4003 i.get_actual_travel board.o + 0x08007b6c 0x08007b6c 0x00000008 Code RO 4004 i.get_actual_travel_adc board.o + 0x08007b74 0x08007b74 0x00000040 Code RO 4006 i.get_current board.o + 0x08007bb4 0x08007bb4 0x00000024 Code RO 4007 i.get_current_deal board.o + 0x08007bd8 0x08007bd8 0x0000004a Code RO 6459 i.get_kv fdb_kvdb.o + 0x08007c22 0x08007c22 0x00000094 Code RO 6460 i.get_kv_from_cache fdb_kvdb.o + 0x08007cb6 0x08007cb6 0x00000060 Code RO 6461 i.get_next_kv_addr fdb_kvdb.o + 0x08007d16 0x08007d16 0x00000026 Code RO 6462 i.get_next_sector_addr fdb_kvdb.o + 0x08007d3c 0x08007d3c 0x0000001e Code RO 6784 i.get_next_sector_addr fdb_tsdb.o + 0x08007d5a 0x08007d5a 0x00000002 PAD + 0x08007d5c 0x08007d5c 0x0000001c Code RO 2650 i.get_pid_travel convert.o + 0x08007d78 0x08007d78 0x00000090 Code RO 4009 i.get_pressure board.o + 0x08007e08 0x08007e08 0x00000010 Code RO 3663 i.get_pwmp_control_kd mode_pwmp_hd.o + 0x08007e18 0x08007e18 0x00000010 Code RO 3664 i.get_pwmp_control_ki mode_pwmp_hd.o + 0x08007e28 0x08007e28 0x00000020 Code RO 3665 i.get_pwmp_control_kp mode_pwmp_hd.o + 0x08007e48 0x08007e48 0x0000002a Code RO 6463 i.get_sector_from_cache fdb_kvdb.o + 0x08007e72 0x08007e72 0x00000002 PAD + 0x08007e74 0x08007e74 0x0000001c Code RO 2651 i.get_show_travel convert.o + 0x08007e90 0x08007e90 0x00000028 Code RO 4010 i.get_temperature board.o + 0x08007eb8 0x08007eb8 0x0000005c Code RO 3512 i.get_time fal_execution.o + 0x08007f14 0x08007f14 0x0000001c Code RO 3666 i.get_time_tangent mode_pwmp_hd.o + 0x08007f30 0x08007f30 0x00000030 Code RO 4011 i.get_timestamp board.o + 0x08007f60 0x08007f60 0x0000004c Code RO 5666 i.get_weekday lib.o + 0x08007fac 0x08007fac 0x00000048 Code RO 5131 i.gpio_create gpios.o + 0x08007ff4 0x08007ff4 0x00000018 Code RO 2205 i.h24_bluetooth_output app_hart.o + 0x0800800c 0x0800800c 0x00000004 Code RO 2206 i.h24_bluetooth_output_dbg app_hart.o + 0x08008010 0x08008010 0x0000010c Code RO 2207 i.h24_bluetooth_work app_hart.o + 0x0800811c 0x0800811c 0x00000060 Code RO 2208 i.hart_ble_dinit app_hart.o + 0x0800817c 0x0800817c 0x000000a0 Code RO 2209 i.hart_ble_init app_hart.o + 0x0800821c 0x0800821c 0x00000048 Code RO 2210 i.hart_rx_cb app_hart.o + 0x08008264 0x08008264 0x0000000c Code RO 2211 i.hart_tx_complete_cb app_hart.o + 0x08008270 0x08008270 0x00000068 Code RO 2212 i.hart_uart_dinit app_hart.o + 0x080082d8 0x080082d8 0x000000e8 Code RO 2213 i.hart_uart_init app_hart.o + 0x080083c0 0x080083c0 0x0000006c Code RO 5667 i.hex_format_dec lib.o + 0x0800842c 0x0800842c 0x0000004c Code RO 5449 i.i2c_create i2cs.o + 0x08008478 0x08008478 0x00000122 Code RO 5450 i.i2c_create_dma i2cs.o + 0x0800859a 0x0800859a 0x0000002e Code RO 5451 i.i2c_dma_callback i2cs.o + 0x080085c8 0x080085c8 0x00000022 Code RO 5452 i.i2c_dma_set_address i2cs.o + 0x080085ea 0x080085ea 0x000000f2 Code RO 5453 i.i2c_ev_callback i2cs.o + 0x080086dc 0x080086dc 0x00000012 Code RO 5455 i.i2c_reset i2cs.o + 0x080086ee 0x080086ee 0x00000002 PAD + 0x080086f0 0x080086f0 0x000000e8 Code RO 2652 i.i2psb convert.o + 0x080087d8 0x080087d8 0x00000064 Code RO 2319 i.icon_inspection app_flow.o + 0x0800883c 0x0800883c 0x00000048 Code RO 2320 i.idle_inspection app_flow.o + 0x08008884 0x08008884 0x00000004 Code RO 7086 i.init fal_eeprom95_port.o + 0x08008888 0x08008888 0x00000004 Code RO 7148 i.init fal_eeprom24_port.o + 0x0800888c 0x0800888c 0x00000028 Code RO 4019 i.ip2current board.o + 0x080088b4 0x080088b4 0x00000014 Code RO 2904 i.is_manual_test mode.o + 0x080088c8 0x080088c8 0x00000004 Code RO 2406 i.key_1_double_click_handler key.o + 0x080088cc 0x080088cc 0x00000004 Code RO 2407 i.key_1_long_press_hold_handler key.o + 0x080088d0 0x080088d0 0x00000004 Code RO 2408 i.key_1_press_down_handler key.o + 0x080088d4 0x080088d4 0x00000004 Code RO 2409 i.key_1_up_handler key.o + 0x080088d8 0x080088d8 0x00000020 Code RO 2410 i.key_2_5_press_down key.o + 0x080088f8 0x080088f8 0x00000004 Code RO 2411 i.key_2_double_click_handler key.o + 0x080088fc 0x080088fc 0x00000004 Code RO 2412 i.key_2_long_press_hold_handler key.o + 0x08008900 0x08008900 0x00000006 Code RO 2413 i.key_2_press_down_handler key.o + 0x08008906 0x08008906 0x00000004 Code RO 2414 i.key_2_up_handler key.o + 0x0800890a 0x0800890a 0x00000004 Code RO 2415 i.key_3_double_click_handler key.o + 0x0800890e 0x0800890e 0x00000004 Code RO 2416 i.key_3_long_press_hold_handler key.o + 0x08008912 0x08008912 0x00000004 Code RO 2417 i.key_3_press_down_handler key.o + 0x08008916 0x08008916 0x00000004 Code RO 2418 i.key_3_up_handler key.o + 0x0800891a 0x0800891a 0x00000004 Code RO 2419 i.key_4_double_click_handler key.o + 0x0800891e 0x0800891e 0x00000004 Code RO 2420 i.key_4_long_press_hold_handler key.o + 0x08008922 0x08008922 0x00000004 Code RO 2421 i.key_4_press_down_handler key.o + 0x08008926 0x08008926 0x00000004 Code RO 2422 i.key_4_up_handler key.o + 0x0800892a 0x0800892a 0x00000004 Code RO 2423 i.key_5_double_click_handler key.o + 0x0800892e 0x0800892e 0x00000004 Code RO 2424 i.key_5_long_press_hold_handler key.o + 0x08008932 0x08008932 0x00000004 Code RO 2425 i.key_5_press_down_handler key.o + 0x08008936 0x08008936 0x00000004 Code RO 2426 i.key_5_up_handler key.o + 0x0800893a 0x0800893a 0x00000004 Code RO 2427 i.key_6_double_click_handler key.o + 0x0800893e 0x0800893e 0x00000004 Code RO 2428 i.key_6_long_press_hold_handler key.o + 0x08008942 0x08008942 0x00000004 Code RO 2429 i.key_6_press_down_handler key.o + 0x08008946 0x08008946 0x00000004 Code RO 2430 i.key_6_up_handler key.o + 0x0800894a 0x0800894a 0x00000004 Code RO 2431 i.key_auto_long_press_hold_handler key.o + 0x0800894e 0x0800894e 0x00000004 Code RO 2432 i.key_auto_press_down_handler key.o + 0x08008952 0x08008952 0x00000004 Code RO 2433 i.key_auto_up_handler key.o + 0x08008956 0x08008956 0x00000002 PAD + 0x08008958 0x08008958 0x00000044 Code RO 2434 i.key_botton_start key.o + 0x0800899c 0x0800899c 0x000000b4 Code RO 2435 i.key_dinit key.o + 0x08008a50 0x08008a50 0x000002d8 Code RO 2436 i.key_init key.o + 0x08008d28 0x08008d28 0x000000a6 Code RO 6464 i.kv_auto_update fdb_kvdb.o + 0x08008dce 0x08008dce 0x00000072 Code RO 6465 i.kv_iterator fdb_kvdb.o + 0x08008e40 0x08008e40 0x00000002 Code RO 4021 i.lcd_dinit board.o + 0x08008e42 0x08008e42 0x00000002 Code RO 4022 i.lcd_init board.o + 0x08008e44 0x08008e44 0x00000048 Code RO 4659 i.leds_dinit leds.o + 0x08008e8c 0x08008e8c 0x000000b6 Code RO 4660 i.leds_init leds.o + 0x08008f42 0x08008f42 0x00000002 PAD + 0x08008f44 0x08008f44 0x00000020 Code RO 4664 i.leds_toggle leds.o + 0x08008f64 0x08008f64 0x0000001c Code RO 4023 i.loop_current_convert board.o + 0x08008f80 0x08008f80 0x00000020 Code RO 6009 i.lpf_init filter.o + 0x08008fa0 0x08008fa0 0x0000003c Code RO 6011 i.lpf_update filter.o + 0x08008fdc 0x08008fdc 0x0000004e Code RO 6013 i.lpf_window_init filter.o + 0x0800902a 0x0800902a 0x00000072 Code RO 6015 i.lpf_window_update filter.o + 0x0800909c 0x0800909c 0x000000e4 Code RO 16 i.main main.o + 0x08009180 0x08009180 0x0000006c Code RO 7758 i.malloc mc_w.l(malloc.o) + 0x080091ec 0x080091ec 0x00000014 Code RO 2905 i.manual_test_mode mode.o + 0x08009200 0x08009200 0x00000012 Code RO 4970 i.memcpyL adcs.o + 0x08009212 0x08009212 0x00000012 Code RO 5456 i.memcpyL i2cs.o + 0x08009224 0x08009224 0x00000012 Code RO 6210 i.memcpyL cmac.o + 0x08009236 0x08009236 0x00000002 PAD + 0x08009238 0x08009238 0x0000021c Code RO 6274 i.mix_sub_columns aes.o + 0x08009454 0x08009454 0x0000000c Code RO 2911 i.mode_autoload_change mode.o + 0x08009460 0x08009460 0x0000001c Code RO 3336 i.mode_dac_dinit mode_dac.o + 0x0800947c 0x0800947c 0x00000028 Code RO 3338 i.mode_dac_process mode_dac.o + 0x080094a4 0x080094a4 0x00000088 Code RO 2913 i.mode_detection mode.o + 0x0800952c 0x0800952c 0x00000074 Code RO 2914 i.mode_init mode.o + 0x080095a0 0x080095a0 0x00000010 Code RO 2915 i.mode_params_save_cb mode.o + 0x080095b0 0x080095b0 0x0000002c Code RO 3426 i.mode_pwm_dinit mode_pwm.o + 0x080095dc 0x080095dc 0x0000003c Code RO 3428 i.mode_pwm_process mode_pwm.o + 0x08009618 0x08009618 0x0000002c Code RO 3930 i.mode_pwmp_dinit mode_pwmp.o + 0x08009644 0x08009644 0x00000024 Code RO 3667 i.mode_pwmp_hd_dinit mode_pwmp_hd.o + 0x08009668 0x08009668 0x000000ec Code RO 3668 i.mode_pwmp_hd_init mode_pwmp_hd.o + 0x08009754 0x08009754 0x000001e4 Code RO 3669 i.mode_pwmp_hd_process mode_pwmp_hd.o + 0x08009938 0x08009938 0x00000034 Code RO 3932 i.mode_pwmp_process mode_pwmp.o + 0x0800996c 0x0800996c 0x00000120 Code RO 6466 i.move_kv fdb_kvdb.o + 0x08009a8c 0x08009a8c 0x0000001e Code RO 3265 i.mstrncmp at_hc24.o + 0x08009aaa 0x08009aaa 0x00000002 PAD + 0x08009aac 0x08009aac 0x00000058 Code RO 5793 i.my_mem_free malloc.o + 0x08009b04 0x08009b04 0x0000003c Code RO 5794 i.my_mem_init malloc.o + 0x08009b40 0x08009b40 0x0000009c Code RO 5795 i.my_mem_malloc malloc.o + 0x08009bdc 0x08009bdc 0x00000038 Code RO 5796 i.my_mem_perused malloc.o + 0x08009c14 0x08009c14 0x00000044 Code RO 5797 i.myfree malloc.o + 0x08009c58 0x08009c58 0x00000024 Code RO 5798 i.mymalloc malloc.o + 0x08009c7c 0x08009c7c 0x0000000e Code RO 5800 i.mymemset malloc.o + 0x08009c8a 0x08009c8a 0x0000003e Code RO 6467 i.new_kv fdb_kvdb.o + 0x08009cc8 0x08009cc8 0x00000008 Code RO 6468 i.new_kv_ex fdb_kvdb.o + 0x08009cd0 0x08009cd0 0x00000084 Code RO 4626 i.ntc_get_temp ntc_3950.o + 0x08009d54 0x08009d54 0x0000003e Code RO 4627 i.ntc_lookup ntc_3950.o + 0x08009d92 0x08009d92 0x00000002 PAD + 0x08009d94 0x08009d94 0x0000000c Code RO 2916 i.online_offline_mode_adjust mode.o + 0x08009da0 0x08009da0 0x000000ac Code RO 2851 i.params_init params.o + 0x08009e4c 0x08009e4c 0x0000029a Code RO 2852 i.params_restart params.o + 0x0800a0e6 0x0800a0e6 0x00000002 PAD + 0x0800a0e8 0x0800a0e8 0x00000040 Code RO 2653 i.part_travel_deal convert.o + 0x0800a128 0x0800a128 0x00000068 Code RO 3103 i.pdctrl_init pdctrl.o + 0x0800a190 0x0800a190 0x00000064 Code RO 3104 i.pdctrl_out pdctrl.o + 0x0800a1f4 0x0800a1f4 0x00000034 Code RO 3106 i.pdctrl_pwm_set_arr pdctrl.o + 0x0800a228 0x0800a228 0x00000038 Code RO 3107 i.pdctrl_run pdctrl.o + 0x0800a260 0x0800a260 0x00000038 Code RO 3108 i.pdctrl_stop pdctrl.o + 0x0800a298 0x0800a298 0x0000000c Code RO 3670 i.pid_autotune_way_set mode_pwmp_hd.o + 0x0800a2a4 0x0800a2a4 0x0000000e Code RO 7409 i.pid_constructor pid.o + 0x0800a2b2 0x0800a2b2 0x00000002 PAD + 0x0800a2b4 0x0800a2b4 0x0000001c Code RO 7436 i.pid_hd_constructor pid_hd.o + 0x0800a2d0 0x0800a2d0 0x00000004 Code RO 2321 i.pressure_inspection app_flow.o + 0x0800a2d4 0x0800a2d4 0x00000024 Code RO 3109 i.pwm_dinit pdctrl.o + 0x0800a2f8 0x0800a2f8 0x0000003c Code RO 3110 i.pwm_init pdctrl.o + 0x0800a334 0x0800a334 0x00000014 Code RO 2655 i.pwm_output_deal convert.o + 0x0800a348 0x0800a348 0x00000030 Code RO 4025 i.pwm_output_position board.o + 0x0800a378 0x0800a378 0x00000114 Code RO 3671 i.pwmp_adjust mode_pwmp_hd.o + 0x0800a48c 0x0800a48c 0x00000124 Code RO 3672 i.pwmp_adjust_hd_PID_tuning mode_pwmp_hd.o + 0x0800a5b0 0x0800a5b0 0x000000c8 Code RO 3673 i.pwmp_adjust_hd_accurate_position0 mode_pwmp_hd.o + 0x0800a678 0x0800a678 0x000000f8 Code RO 3674 i.pwmp_adjust_hd_accurate_position100 mode_pwmp_hd.o + 0x0800a770 0x0800a770 0x00000120 Code RO 3675 i.pwmp_adjust_hd_bleeding mode_pwmp_hd.o + 0x0800a890 0x0800a890 0x00000108 Code RO 3676 i.pwmp_adjust_hd_bleeding_position0 mode_pwmp_hd.o + 0x0800a998 0x0800a998 0x000000ac Code RO 3677 i.pwmp_adjust_hd_calculate mode_pwmp_hd.o + 0x0800aa44 0x0800aa44 0x00000010 Code RO 3678 i.pwmp_adjust_hd_fail mode_pwmp_hd.o + 0x0800aa54 0x0800aa54 0x000000b4 Code RO 3679 i.pwmp_adjust_hd_idle mode_pwmp_hd.o + 0x0800ab08 0x0800ab08 0x0000022e Code RO 3680 i.pwmp_adjust_hd_pid_calculate mode_pwmp_hd.o + 0x0800ad36 0x0800ad36 0x00000002 PAD + 0x0800ad38 0x0800ad38 0x00000176 Code RO 3681 i.pwmp_adjust_hd_rough_position0 mode_pwmp_hd.o + 0x0800aeae 0x0800aeae 0x00000002 PAD + 0x0800aeb0 0x0800aeb0 0x000000ac Code RO 3682 i.pwmp_adjust_hd_rough_position100 mode_pwmp_hd.o + 0x0800af5c 0x0800af5c 0x0000003c Code RO 3683 i.pwmp_adjust_hd_save mode_pwmp_hd.o + 0x0800af98 0x0800af98 0x00000030 Code RO 3684 i.pwmp_adjust_hd_stop mode_pwmp_hd.o + 0x0800afc8 0x0800afc8 0x00000060 Code RO 3685 i.pwmp_adjust_hd_valve_position_change mode_pwmp_hd.o + 0x0800b028 0x0800b028 0x00000060 Code RO 3686 i.pwmp_control_update mode_pwmp_hd.o + 0x0800b088 0x0800b088 0x00000024 Code RO 3111 i.pwmp_dinit pdctrl.o + 0x0800b0ac 0x0800b0ac 0x00000028 Code RO 3692 i.pwmp_hd_process_state_set mode_pwmp_hd.o + 0x0800b0d4 0x0800b0d4 0x00000034 Code RO 3112 i.pwmp_init pdctrl.o + 0x0800b108 0x0800b108 0x0000005c Code RO 3693 i.pwmp_public_params_update mode_pwmp_hd.o + 0x0800b164 0x0800b164 0x00000020 Code RO 7149 i.read fal_eeprom24_port.o + 0x0800b184 0x0800b184 0x00000020 Code RO 7087 i.read1 fal_eeprom95_port.o + 0x0800b1a4 0x0800b1a4 0x00000020 Code RO 7088 i.read2 fal_eeprom95_port.o + 0x0800b1c4 0x0800b1c4 0x000000ac Code RO 2438 i.read_button_gpio key.o + 0x0800b270 0x0800b270 0x00000126 Code RO 6470 i.read_kv fdb_kvdb.o + 0x0800b396 0x0800b396 0x00000002 PAD + 0x0800b398 0x0800b398 0x00000160 Code RO 6471 i.read_sector_info fdb_kvdb.o + 0x0800b4f8 0x0800b4f8 0x00000100 Code RO 6787 i.read_sector_info fdb_tsdb.o + 0x0800b5f8 0x0800b5f8 0x0000003a Code RO 4262 i.read_status eeprom_m95.o + 0x0800b632 0x0800b632 0x00000046 Code RO 6788 i.read_tsl fdb_tsdb.o + 0x0800b678 0x0800b678 0x00000020 Code RO 4531 i.rtc_check_vlf rtc_rx8010.o + 0x0800b698 0x0800b698 0x00000046 Code RO 4532 i.rtc_clock_reginit rtc_rx8010.o + 0x0800b6de 0x0800b6de 0x00000002 PAD + 0x0800b6e0 0x0800b6e0 0x00000040 Code RO 4533 i.rtc_dummy_read rtc_rx8010.o + 0x0800b720 0x0800b720 0x00000008 Code RO 4534 i.rtc_get_clock_time rtc_rx8010.o + 0x0800b728 0x0800b728 0x00000054 Code RO 4535 i.rtc_init rtc_rx8010.o + 0x0800b77c 0x0800b77c 0x00000080 Code RO 4536 i.rtc_read_byte rtc_rx8010.o + 0x0800b7fc 0x0800b7fc 0x000000a4 Code RO 4537 i.rtc_read_bytes rtc_rx8010.o + 0x0800b8a0 0x0800b8a0 0x00000048 Code RO 4538 i.rtc_set_clock_time rtc_rx8010.o + 0x0800b8e8 0x0800b8e8 0x00000040 Code RO 4539 i.rtc_soft_reset rtc_rx8010.o + 0x0800b928 0x0800b928 0x0000002a Code RO 4540 i.rtc_wait_vlf_clear rtc_rx8010.o + 0x0800b952 0x0800b952 0x00000042 Code RO 4541 i.rtc_weekday_convert rtc_rx8010.o + 0x0800b994 0x0800b994 0x00000080 Code RO 4543 i.rtc_write_byte rtc_rx8010.o + 0x0800ba14 0x0800ba14 0x00000090 Code RO 4544 i.rtc_write_bytes rtc_rx8010.o + 0x0800baa4 0x0800baa4 0x00000030 Code RO 4777 i.scheduler_time_occupancy_get sys.o + 0x0800bad4 0x0800bad4 0x00000010 Code RO 4778 i.scheduler_time_start sys.o + 0x0800bae4 0x0800bae4 0x00000018 Code RO 4779 i.scheduler_time_stop sys.o + 0x0800bafc 0x0800bafc 0x0000006a Code RO 6472 i.sector_iterator fdb_kvdb.o + 0x0800bb66 0x0800bb66 0x0000006a Code RO 6790 i.sector_iterator fdb_tsdb.o + 0x0800bbd0 0x0800bbd0 0x0000002a Code RO 6473 i.sector_statistics_cb fdb_kvdb.o + 0x0800bbfa 0x0800bbfa 0x00000002 PAD + 0x0800bbfc 0x0800bbfc 0x00000010 Code RO 4028 i.set_app_preload_language_flag board.o + 0x0800bc0c 0x0800bc0c 0x000000b2 Code RO 6474 i.set_kv fdb_kvdb.o + 0x0800bcbe 0x0800bcbe 0x00000002 PAD + 0x0800bcc0 0x0800bcc0 0x0000000c Code RO 2917 i.set_manual_test mode.o + 0x0800bccc 0x0800bccc 0x00000054 Code RO 4033 i.set_pwm_calib_current board.o + 0x0800bd20 0x0800bd20 0x00000004 Code RO 3694 i.set_step_signal mode_pwmp_hd.o + 0x0800bd24 0x0800bd24 0x00000068 Code RO 6275 i.shift_sub_rows aes.o + 0x0800bd8c 0x0800bd8c 0x00000040 Code RO 2656 i.small_signal_deal convert.o + 0x0800bdcc 0x0800bdcc 0x000000bc Code RO 5194 i.spi_create spis.o + 0x0800be88 0x0800be88 0x00000028 Code RO 5195 i.spi_cs_high spis.o + 0x0800beb0 0x0800beb0 0x00000028 Code RO 5196 i.spi_cs_low spis.o + 0x0800bed8 0x0800bed8 0x00000024 Code RO 5197 i.spi_delay spis.o + 0x0800befc 0x0800befc 0x00000144 Code RO 5199 i.spi_read_write_byte spis.o + 0x0800c040 0x0800c040 0x0000008c Code RO 2657 i.swo_output_deal convert.o + 0x0800c0cc 0x0800c0cc 0x00000010 Code RO 4782 i.sys_millis sys.o + 0x0800c0dc 0x0800c0dc 0x0000000c Code RO 4783 i.sys_millis_reset sys.o + 0x0800c0e8 0x0800c0e8 0x00000080 Code RO 2322 i.systom_inspection app_flow.o + 0x0800c168 0x0800c168 0x00000012 Code RO 2658 i.target_travel_deal convert.o + 0x0800c17a 0x0800c17a 0x00000002 PAD + 0x0800c17c 0x0800c17c 0x0000003c Code RO 2323 i.temperature_inspection app_flow.o + 0x0800c1b8 0x0800c1b8 0x000000b0 Code RO 5674 i.time2Stamp lib.o + 0x0800c268 0x0800c268 0x000000c4 Code RO 2918 i.travel_statistics mode.o + 0x0800c32c 0x0800c32c 0x0000003c Code RO 6792 i.tsl_format_all fdb_tsdb.o + 0x0800c368 0x0800c368 0x0000008a Code RO 5307 i.uart_create uarts.o + 0x0800c3f2 0x0800c3f2 0x00000076 Code RO 5308 i.uart_dma_reception_callback uarts.o + 0x0800c468 0x0800c468 0x0000013c Code RO 5310 i.uart_reception_callback uarts.o + 0x0800c5a4 0x0800c5a4 0x000000ec Code RO 5311 i.uart_recv_en uarts.o + 0x0800c690 0x0800c690 0x000000ca Code RO 5312 i.uart_send_data uarts.o + 0x0800c75a 0x0800c75a 0x000000b2 Code RO 6475 i.update_kv_cache fdb_kvdb.o + 0x0800c80c 0x0800c80c 0x0000007c Code RO 6476 i.update_sec_status fdb_kvdb.o + 0x0800c888 0x0800c888 0x0000006e Code RO 6477 i.update_sector_cache fdb_kvdb.o + 0x0800c8f6 0x0800c8f6 0x0000001e Code RO 6478 i.update_sector_empty_addr_cache fdb_kvdb.o + 0x0800c914 0x0800c914 0x00000010 Code RO 6479 i.update_sector_status_store_cache fdb_kvdb.o + 0x0800c924 0x0800c924 0x0000000c Code RO 2919 i.wait_mode_adjust mode.o + 0x0800c930 0x0800c930 0x00000018 Code RO 7150 i.write fal_eeprom24_port.o + 0x0800c948 0x0800c948 0x00000020 Code RO 7089 i.write1 fal_eeprom95_port.o + 0x0800c968 0x0800c968 0x00000020 Code RO 7090 i.write2 fal_eeprom95_port.o + 0x0800c988 0x0800c988 0x0000002e Code RO 4263 i.write_disable eeprom_m95.o + 0x0800c9b6 0x0800c9b6 0x0000002e Code RO 4264 i.write_enable eeprom_m95.o + 0x0800c9e4 0x0800c9e4 0x00000034 Code RO 6480 i.write_kv_hdr fdb_kvdb.o + 0x0800ca18 0x0800ca18 0x00000082 Code RO 6276 i.xor_block aes.o + 0x0800ca9a 0x0800ca9a 0x00000007 Data RO 461 .constdata adc.o + 0x0800caa1 0x0800caa1 0x00000007 Data RO 666 .constdata i2c.o + 0x0800caa8 0x0800caa8 0x00000007 Data RO 732 .constdata spi.o + 0x0800caaf 0x0800caaf 0x00000012 Data RO 784 .constdata tim.o + 0x0800cac1 0x0800cac1 0x00000007 Data RO 874 .constdata usart.o + 0x0800cac8 0x0800cac8 0x00000040 Data RO 2090 .constdata system_stm32l4xx.o + 0x0800cb08 0x0800cb08 0x00000008 Data RO 2091 .constdata system_stm32l4xx.o + 0x0800cb10 0x0800cb10 0x0000000c Data RO 2215 .constdata app_hart.o + 0x0800cb1c 0x0800cb1c 0x000000ee Data RO 2855 .constdata params.o + 0x0800cc0a 0x0800cc0a 0x00000002 PAD + 0x0800cc0c 0x0800cc0c 0x0000003c Data RO 3267 .constdata at_hc24.o + 0x0800cc48 0x0800cc48 0x000002e4 Data RO 4628 .constdata ntc_3950.o + 0x0800cf2c 0x0800cf2c 0x00000007 Data RO 4972 .constdata adcs.o + 0x0800cf33 0x0800cf33 0x00000007 Data RO 5200 .constdata spis.o + 0x0800cf3a 0x0800cf3a 0x00000007 Data RO 5313 .constdata uarts.o + 0x0800cf41 0x0800cf41 0x00000007 Data RO 5457 .constdata i2cs.o + 0x0800cf48 0x0800cf48 0x00000024 Data RO 5678 .constdata lib.o + 0x0800cf6c 0x0800cf6c 0x00000018 Data RO 5805 .constdata malloc.o + 0x0800cf84 0x0800cf84 0x00000800 Data RO 6277 .constdata aes.o + 0x0800d784 0x0800d784 0x00000018 Data RO 6482 .constdata fdb_kvdb.o + 0x0800d79c 0x0800d79c 0x00000400 Data RO 6958 .constdata fdb_utils.o + 0x0800db9c 0x0800db9c 0x0000000c Data RO 7241 .constdata fal_flash.o + 0x0800dba8 0x0800dba8 0x000000c0 Data RO 7295 .constdata fal_partition.o + 0x0800dc68 0x0800dc68 0x00000017 Data RO 2216 .conststring app_hart.o + 0x0800dc7f 0x0800dc7f 0x00000001 PAD + 0x0800dc80 0x0800dc80 0x00000018 Data RO 3268 .conststring at_hc24.o + 0x0800dc98 0x0800dc98 0x00000070 Data RO 3514 .conststring fal_execution.o + 0x0800dd08 0x0800dd08 0x00000020 Data RO 7867 Region$$Table anon$$obj.o + + + Execution Region RW_IRAM2 (Exec base: 0x10000000, Load base: 0x0800ddf8, Size: 0x00000000, Max: 0x00007ff0, ABSOLUTE) + + **** No section assigned to this execution region **** + + + Execution Region RW_RAM1 (Exec base: 0x10007ff0, Load base: 0x0800dd28, Size: 0x00000004, Max: 0x00000010, ABSOLUTE, UNINIT) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x10007ff0 - 0x00000001 Zero RW 4034 .ARM.__AT_0x10007FF0 board.o + 0x10007ff1 - 0x00000001 Zero RW 4035 .ARM.__AT_0x10007FF1 board.o + + + Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x0800dd28, Size: 0x0000b6d0, Max: 0x00018000, ABSOLUTE, COMPRESSED[0x000000d0]) + + Exec Addr Load Addr Size Type Attr Idx E Section Name Object + + 0x20000000 COMPRESSED 0x00000004 Data RW 2092 .data system_stm32l4xx.o + 0x20000004 COMPRESSED 0x00000004 Data RW 2134 .data app.o + 0x20000008 COMPRESSED 0x00000004 Data RW 2135 .data app.o + 0x2000000c COMPRESSED 0x00000004 Data RW 2136 .data app.o + 0x20000010 COMPRESSED 0x00000004 Data RW 2137 .data app.o + 0x20000014 COMPRESSED 0x00000004 Data RW 2138 .data app.o + 0x20000018 COMPRESSED 0x00000004 Data RW 2139 .data app.o + 0x2000001c COMPRESSED 0x00000004 Data RW 2140 .data app.o + 0x20000020 COMPRESSED 0x00000004 Data RW 2141 .data app.o + 0x20000024 COMPRESSED 0x00000004 Data RW 2144 .data app.o + 0x20000028 COMPRESSED 0x00000001 Data RW 2145 .data app.o + 0x20000029 COMPRESSED 0x00000008 Data RW 2147 .data app.o + 0x20000031 COMPRESSED 0x00000001 PAD + 0x20000032 COMPRESSED 0x00000002 Data RW 2148 .data app.o + 0x20000034 COMPRESSED 0x00000004 Data RW 2149 .data app.o + 0x20000038 COMPRESSED 0x00000004 Data RW 2150 .data app.o + 0x2000003c COMPRESSED 0x00000004 Data RW 2151 .data app.o + 0x20000040 COMPRESSED 0x00000004 Data RW 2153 .data app.o + 0x20000044 COMPRESSED 0x0000000c Data RW 2217 .data app_hart.o + 0x20000050 COMPRESSED 0x00000024 Data RW 2324 .data app_flow.o + 0x20000074 COMPRESSED 0x00000004 PAD + 0x20000078 COMPRESSED 0x00000040 Data RW 2440 .data key.o + 0x200000b8 COMPRESSED 0x00000004 Data RW 2660 .data convert.o + 0x200000bc COMPRESSED 0x0000000c Data RW 2921 .data mode.o + 0x200000c8 COMPRESSED 0x00000004 Data RW 3114 .data pdctrl.o + 0x200000cc COMPRESSED 0x00000001 Data RW 3269 .data at_hc24.o + 0x200000cd COMPRESSED 0x00000003 PAD + 0x200000d0 COMPRESSED 0x00000004 Data RW 3339 .data mode_dac.o + 0x200000d4 COMPRESSED 0x00000004 Data RW 3429 .data mode_pwm.o + 0x200000d8 COMPRESSED 0x00000060 Data RW 3515 .data fal_execution.o + 0x20000138 COMPRESSED 0x00000024 Data RW 3695 .data mode_pwmp_hd.o + 0x2000015c COMPRESSED 0x00000004 Data RW 3933 .data mode_pwmp.o + 0x20000160 COMPRESSED 0x0000000c Data RW 4037 .data board.o + 0x2000016c COMPRESSED 0x00000001 Data RW 4266 .data eeprom_m95.o + 0x2000016d COMPRESSED 0x00000003 PAD + 0x20000170 COMPRESSED 0x00000004 Data RW 4362 .data eeprom_fm24.o + 0x20000174 COMPRESSED 0x00000004 Data RW 4491 .data eeprom_lc02b.o + 0x20000178 COMPRESSED 0x00000004 Data RW 4545 .data rtc_rx8010.o + 0x2000017c COMPRESSED 0x00000008 Data RW 4724 .data delay.o + 0x20000184 COMPRESSED 0x0000000c Data RW 4790 .data sys.o + 0x20000190 COMPRESSED 0x00000004 Data RW 4896 .data btn.o + 0x20000194 COMPRESSED 0x0000001c Data RW 5806 .data malloc.o + 0x200001b0 COMPRESSED 0x00000004 Data RW 5872 .data flow_core.o + 0x200001b4 COMPRESSED 0x00000001 Data RW 6353 .data fdb.o + 0x200001b5 COMPRESSED 0x00000003 PAD + 0x200001b8 COMPRESSED 0x00000070 Data RW 7091 .data fal_eeprom95_port.o + 0x20000228 COMPRESSED 0x00000038 Data RW 7151 .data fal_eeprom24_port.o + 0x20000260 COMPRESSED 0x00000001 Data RW 7198 .data fal.o + 0x20000261 COMPRESSED 0x00000001 Data RW 7242 .data fal_flash.o + 0x20000262 COMPRESSED 0x00000002 PAD + 0x20000264 COMPRESSED 0x0000000c Data RW 7296 .data fal_partition.o + 0x20000270 COMPRESSED 0x00000008 Data RW 7437 .data pid_hd.o + 0x20000278 COMPRESSED 0x00000004 Data RW 7480 .data mc_w.l(rand.o) + 0x2000027c COMPRESSED 0x00000004 Data RW 7854 .data mc_w.l(mvars.o) + 0x20000280 COMPRESSED 0x00000004 Data RW 7855 .data mc_w.l(mvars.o) + 0x20000284 COMPRESSED 0x0000001c PAD + 0x200002a0 COMPRESSED 0x00000800 Data RW 5807 .sram2 malloc.o + 0x20000aa0 - 0x00000164 Zero RW 2129 .bss app.o + 0x20000c04 - 0x00000021 Zero RW 2130 .bss app.o + 0x20000c25 COMPRESSED 0x00000003 PAD + 0x20000c28 - 0x00000214 Zero RW 2131 .bss app.o + 0x20000e3c - 0x00000038 Zero RW 2132 .bss app.o + 0x20000e74 - 0x00000014 Zero RW 2133 .bss app.o + 0x20000e88 - 0x00000134 Zero RW 2439 .bss key.o + 0x20000fbc - 0x0000020c Zero RW 2920 .bss mode.o + 0x200011c8 - 0x0000001c Zero RW 3113 .bss pdctrl.o + 0x200011e4 - 0x00000040 Zero RW 3266 .bss at_hc24.o + 0x20001224 - 0x00000bdc Zero RW 3513 .bss fal_execution.o + 0x20001e00 - 0x0000000c Zero RW 4036 .bss board.o + 0x20001e0c - 0x00000038 Zero RW 4265 .bss eeprom_m95.o + 0x20001e44 - 0x00000014 Zero RW 4665 .bss leds.o + 0x20001e58 - 0x00000054 Zero RW 4971 .bss adcs.o + 0x20001eac COMPRESSED 0x00000014 PAD + 0x20001ec0 - 0x00007800 Zero RW 5802 .bss malloc.o + 0x200096c0 - 0x00000780 Zero RW 5803 .bss malloc.o + 0x20009e40 - 0x00000080 Zero RW 5804 .bss malloc.o + 0x20009ec0 - 0x0000000c Zero RW 7294 .bss fal_partition.o + 0x20009ecc COMPRESSED 0x00000004 PAD + 0x20009ed0 - 0x00000800 Zero RW 2 HEAP startup_stm32l476xx.o + 0x2000a6d0 - 0x00001000 Zero RW 1 STACK startup_stm32l476xx.o + + +============================================================================== + +Image component sizes + + + Code (inc. data) RO Data RW Data ZI Data Debug Object Name + + 1614 158 7 0 0 142857 adc.o + 1136 66 7 0 84 84697 adcs.o + 1338 14 2048 0 0 14140 aes.o + 94 22 0 63 997 43927 app.o + 782 96 0 36 0 11122 app_flow.o + 1026 150 35 12 0 37809 app_hart.o + 338 32 84 1 64 7810 at_hc24.o + 1048 178 0 12 14 52911 board.o + 674 22 0 4 0 5627 btn.o + 592 0 0 0 0 6813 cmac.o + 664 70 0 4 0 15860 convert.o + 196 24 0 0 0 48062 dac.o + 0 0 0 0 0 1332 dacs.o + 10 0 0 0 0 3185 debug.o + 170 12 0 8 0 37690 delay.o + 400 12 0 0 0 8890 dma.o + 494 38 0 4 0 43411 eeprom_fm24.o + 48 8 0 4 0 708 eeprom_lc02b.o + 1208 62 0 1 56 33389 eeprom_m95.o + 44 4 0 1 0 787 fal.o + 64 8 0 56 0 3098 fal_eeprom24_port.o + 138 24 0 112 0 5728 fal_eeprom95_port.o + 1092 96 112 96 3036 31342 fal_execution.o + 96 16 12 1 0 4653 fal_flash.o + 372 30 192 12 12 8907 fal_partition.o + 158 4 0 1 0 8106 fdb.o + 4940 90 24 0 0 45240 fdb_kvdb.o + 1076 32 0 0 0 15539 fdb_tsdb.o + 422 6 1024 0 0 15448 fdb_utils.o + 284 6 0 0 0 4514 filter.o + 0 0 0 4 0 244 flow_core.o + 526 22 0 0 0 14423 gpio.o + 152 18 0 0 0 9046 gpios.o + 574 54 7 0 0 43963 i2c.o + 2576 96 7 0 0 47837 i2cs.o + 1346 198 0 64 308 27210 key.o + 324 24 0 0 20 2715 leds.o + 504 24 36 0 0 6861 lib.o + 444 42 0 0 0 788858 main.o + 478 52 24 2076 32768 6557 malloc.o + 688 130 0 12 524 48632 mode.o + 68 10 0 4 0 4551 mode_dac.o + 142 20 0 4 0 3371 mode_pwm.o + 134 18 0 4 0 3394 mode_pwmp.o + 5060 392 0 36 0 34234 mode_pwmp_hd.o + 194 18 740 0 0 2252 ntc_3950.o + 852 96 238 0 0 5401 params.o + 862 118 0 4 28 61959 pdctrl.o + 14 0 0 0 0 974 pid.o + 480 38 0 8 0 4418 pid_hd.o + 1066 40 0 4 0 9047 rtc_rx8010.o + 460 40 7 0 0 16314 spi.o + 1526 56 7 0 0 37733 spis.o + 36 8 392 0 6144 800 startup_stm32l476xx.o + 560 58 0 0 0 49539 stm32l4xx_it.o + 236 22 0 0 0 70032 stm32l4xx_ll_adc.o + 104 0 0 0 0 15838 stm32l4xx_ll_dac.o + 316 0 0 0 0 7683 stm32l4xx_ll_gpio.o + 106 0 0 0 0 14826 stm32l4xx_ll_i2c.o + 1040 122 0 0 0 34781 stm32l4xx_ll_rcc.o + 112 0 0 0 0 11434 stm32l4xx_ll_spi.o + 1124 180 0 0 0 48271 stm32l4xx_ll_tim.o + 224 26 0 0 0 21868 stm32l4xx_ll_usart.o + 70 6 0 0 0 7057 stm32l4xx_ll_utils.o + 132 30 0 12 0 3699 sys.o + 2 0 72 4 0 1293 system_stm32l4xx.o + 1128 78 18 0 0 42691 tim.o + 1106 34 7 0 0 45654 uarts.o + 1054 82 7 0 0 52594 usart.o + + ---------------------------------------------------------------------- + 46420 3432 5142 2680 44084 2351656 Object Totals + 0 0 32 0 0 0 (incl. Generated) + 82 0 3 16 29 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name + + 86 0 0 0 0 0 __dczerorl2.o + 0 0 0 0 0 0 entry.o + 0 0 0 0 0 0 entry10a.o + 0 0 0 0 0 0 entry11a.o + 8 4 0 0 0 0 entry2.o + 4 0 0 0 0 0 entry5.o + 0 0 0 0 0 0 entry7b.o + 0 0 0 0 0 0 entry8b.o + 8 4 0 0 0 0 entry9a.o + 30 0 0 0 0 0 handlers.o + 36 8 0 0 0 68 init.o + 0 0 0 0 0 0 iusefp.o + 30 0 0 0 0 68 llshl.o + 36 0 0 0 0 68 llsshr.o + 32 0 0 0 0 68 llushr.o + 188 20 0 0 0 160 malloc.o + 36 0 0 0 0 68 memcpya.o + 36 0 0 0 0 108 memseta.o + 0 0 0 8 0 0 mvars.o + 2256 86 0 0 0 512 printfa.o + 36 10 0 4 0 136 rand.o + 28 0 0 0 0 76 strcmp.o + 14 0 0 0 0 68 strlen.o + 30 0 0 0 0 80 strncmp.o + 24 0 0 0 0 76 strncpy.o + 44 0 0 0 0 80 uidiv.o + 104 0 0 0 0 92 uldiv.o + 48 0 0 0 0 68 cdcmple.o + 48 0 0 0 0 68 cdrcmple.o + 20 0 0 0 0 68 cfcmple.o + 20 0 0 0 0 68 cfrcmple.o + 56 0 0 0 0 88 d2f.o + 350 0 0 0 0 148 dadd.o + 222 0 0 0 0 100 ddiv.o + 186 0 0 0 0 176 depilogue.o + 50 0 0 0 0 76 dfixui.o + 48 0 0 0 0 68 dfixul.o + 34 0 0 0 0 76 dflti.o + 26 0 0 0 0 76 dfltui.o + 234 0 0 0 0 96 dmul.o + 38 0 0 0 0 68 f2d.o + 176 0 0 0 0 140 fadd.o + 124 0 0 0 0 88 fdiv.o + 110 0 0 0 0 168 fepilogue.o + 40 0 0 0 0 68 ffixui.o + 18 0 0 0 0 68 fflti.o + 10 0 0 0 0 68 ffltui.o + 100 0 0 0 0 76 fmul.o + 24 0 0 0 0 68 fscalb.o + + ---------------------------------------------------------------------- + 5054 132 0 40 0 3716 Library Totals + 6 0 0 28 0 0 (incl. Padding) + + ---------------------------------------------------------------------- + + Code (inc. data) RO Data RW Data ZI Data Debug Library Name + + 3066 132 0 12 0 1728 mc_w.l + 1982 0 0 0 0 1988 mf_w.l + + ---------------------------------------------------------------------- + 5054 132 0 40 0 3716 Library Totals + + ---------------------------------------------------------------------- + +============================================================================== + + + Code (inc. data) RO Data RW Data ZI Data Debug + + 51474 3564 5142 2720 44084 2325132 Grand Totals + 51474 3564 5142 208 44084 2325132 ELF Image Totals (compressed) + 51474 3564 5142 208 0 0 ROM Totals + +============================================================================== + + Total RO Size (Code + RO Data) 56616 ( 55.29kB) + Total RW Size (RW Data + ZI Data) 46804 ( 45.71kB) + Total ROM Size (Code + RO Data + RW Data) 56824 ( 55.49kB) + +============================================================================== + diff --git a/MDK-ARM/controller-v2/controller-v2.sct b/MDK-ARM/controller-v2/controller-v2.sct new file mode 100644 index 0000000..b315e1f --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2.sct @@ -0,0 +1,21 @@ +; ************************************************************* +; *** Scatter-Loading Description File generated by uVision *** +; ************************************************************* + +LR_IROM1 0x08000000 0x00100000 { ; load region size_region + ER_IROM1 0x08000000 0x00100000 { ; load address = execution address + *.o (RESET, +First) + *(InRoot$$Sections) + .ANY (+RO) + } + RW_RAM1 0x10007FF0 UNINIT 0x00000010 { ; RW data + .ANY (+RW +ZI) + } + RW_IRAM1 0x20000000 0x00018000 { + .ANY (+RW +ZI) + } + RW_IRAM2 0x10000000 0x00007FF0 { + .ANY (+RW +ZI) + } +} + diff --git a/MDK-ARM/controller-v2/controller-v2_controller-v2.dep b/MDK-ARM/controller-v2/controller-v2_controller-v2.dep new file mode 100644 index 0000000..4cbdee8 --- /dev/null +++ b/MDK-ARM/controller-v2/controller-v2_controller-v2.dep @@ -0,0 +1,3602 @@ +Dependencies for Project 'controller-v2', Target 'controller-v2': (DO NOT MODIFY !) +F (startup_stm32l476xx.s)(0x65AE067D)(--cpu Cortex-M4 -g --apcs=interwork --pd "__MICROLIB SETA 1" -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" --pd "__UVISION_VERSION SETA 525" --pd "_RTE_ SETA 1" --pd "STM32L476xx SETA 1" --list startup_stm32l476xx.lst --xref -o controller-v2\startup_stm32l476xx.o --depend controller-v2\startup_stm32l476xx.d) +F (../Core/Src/main.c)(0x65B1FC13)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\main.o --depend controller-v2\main.d) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/adc.h)(0x65AE067E) +I (../Core/Inc/dac.h)(0x65A53100) +I (../Core/Inc/dma.h)(0x65A53100) +I (../Core/Inc/i2c.h)(0x65A531B4) +I (../Core/Inc/spi.h)(0x65A53100) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../Core/Inc/usart.h)(0x65A53100) +I (../Core/Inc/gpio.h)(0x65A53100) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/app.h)(0x65A5359E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +F (../Core/Src/gpio.c)(0x65A531AE)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\gpio.o --depend controller-v2\gpio.d) +I (../Core/Inc/gpio.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/adc.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\adc.o --depend controller-v2\adc.d) +I (../Core/Inc/adc.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (../Core/Src/dac.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\dac.o --depend controller-v2\dac.d) +I (../Core/Inc/dac.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/dma.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\dma.o --depend controller-v2\dma.d) +I (../Core/Inc/dma.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/i2c.c)(0x65A531B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\i2c.o --depend controller-v2\i2c.d) +I (../Core/Inc/i2c.h)(0x65A531B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/spi.c)(0x65A531B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\spi.o --depend controller-v2\spi.d) +I (../Core/Inc/spi.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (../Core/Src/tim.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\tim.o --depend controller-v2\tim.d) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/usart.c)(0x65A531B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\usart.o --depend controller-v2\usart.d) +I (../Core/Inc/usart.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (../Core/Src/stm32l4xx_it.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_it.o --depend controller-v2\stm32l4xx_it.d) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/stm32l4xx_it.h)(0x65AE067E) +I (../User/lib/flow/flow.h)(0x65A53100) +I (../User/lib/flow/flow_def.h)(0x65A53100) +I (../User/lib/flow/flow_core.h)(0x65A53100) +I (../User/lib/flow/flow_sem.h)(0x65A53100) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/app.h)(0x65A5359E) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_utils.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_utils.o --depend controller-v2\stm32l4xx_ll_utils.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_exti.o --depend controller-v2\stm32l4xx_ll_exti.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_gpio.o --depend controller-v2\stm32l4xx_ll_gpio.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_adc.o --depend controller-v2\stm32l4xx_ll_adc.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_dma.o --depend controller-v2\stm32l4xx_ll_dma.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_dac.o --depend controller-v2\stm32l4xx_ll_dac.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_i2c.o --depend controller-v2\stm32l4xx_ll_i2c.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_spi.o --depend controller-v2\stm32l4xx_ll_spi.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_pwr.o --depend controller-v2\stm32l4xx_ll_pwr.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_tim.o --depend controller-v2\stm32l4xx_ll_tim.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usart.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_usart.o --depend controller-v2\stm32l4xx_ll_usart.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +F (../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c)(0x6552155C)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\stm32l4xx_ll_rcc.o --depend controller-v2\stm32l4xx_ll_rcc.d) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (../Core/Src/system_stm32l4xx.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\system_stm32l4xx.o --depend controller-v2\system_stm32l4xx.d) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (..\User\app.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\app.o --depend controller-v2\app.d) +I (..\User\app.h)(0x65A5359E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +F (..\User\app_hart.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\app_hart.o --depend controller-v2\app_hart.d) +I (..\User\app.h)(0x65A5359E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +I (../User/application/inc/at_hc24.h)(0x65A53100) +F (..\User\app_flow.c)(0x65B1CA8E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\app_flow.o --depend controller-v2\app_flow.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +I (..\User\app.h)(0x65A5359E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +I (../User/lib/flow/flow.h)(0x65A53100) +I (../User/lib/flow/flow_def.h)(0x65A53100) +I (../User/lib/flow/flow_core.h)(0x65A53100) +I (../User/lib/flow/flow_sem.h)(0x65A53100) +I (../User/application/inc/at_hc24.h)(0x65A53100) +F (..\User\application\src\key.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\key.o --depend controller-v2\key.d) +I (..\User\application\src\../inc/key.h)(0x65A53100) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdlib.h)(0x569DEA3A) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\application\src\convert.c)(0x65A536E0)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\convert.o --depend controller-v2\convert.d) +I (..\User\application\src\../inc/convert.h)(0x65A536CC) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +F (..\User\application\src\params.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\params.o --depend controller-v2\params.d) +I (..\User\application\src\../inc/params.h)(0x65A53100) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +F (..\User\application\src\mode.c)(0x65B3214E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\mode.o --depend controller-v2\mode.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +I (../User/app.h)(0x65A5359E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +F (..\User\application\src\pdctrl.c)(0x65B20E1E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\pdctrl.o --depend controller-v2\pdctrl.d) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +F (..\User\application\src\at_hc24.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\at_hc24.o --depend controller-v2\at_hc24.d) +I (../User/application/inc/at_hc24.h)(0x65A53100) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (..\User\application\src\mode_dac.c)(0x65A53468)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\mode_dac.o --depend controller-v2\mode_dac.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdlib.h)(0x569DEA3A) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +I (../User/application/inc/at_hc24.h)(0x65A53100) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +F (..\User\application\src\mode_pwm.c)(0x65A53494)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\mode_pwm.o --depend controller-v2\mode_pwm.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/application/inc/at_hc24.h)(0x65A53100) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/application/inc/convert.h)(0x65A536CC) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\application\src\fal_execution.c)(0x65A533DE)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_execution.o --depend controller-v2\fal_execution.d) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/lib/inc/cmac.h)(0x658BC7B4) +I (../User/lib/inc/aes.h)(0x658BC7B4) +F (..\User\application\src\mode_pwmp_hd.c)(0x65B31E60)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\mode_pwmp_hd.o --depend controller-v2\mode_pwmp_hd.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/board/inc/board.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/application/inc/at_hc24.h)(0x65A53100) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdlib.h)(0x569DEA3A) +I (../User/app.h)(0x65A5359E) +I (../User/application/inc/fal_execution.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/application/inc/key.h)(0x65A53100) +I (../User/system/inc/btn.h)(0x658BC7B4) +I (../User/application/inc/convert.h)(0x65A536CC) +F (..\User\application\src\mode_pwmp.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\mode_pwmp.o --depend controller-v2\mode_pwmp.d) +I (..\User\application\src\../inc/mode_pwmp.h)(0x65B1C763) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +F (..\User\board\src\board.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\board.o --depend controller-v2\board.d) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\board\src\eeprom_m95.c)(0x65AE067D)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\eeprom_m95.o --depend controller-v2\eeprom_m95.d) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +F (..\User\board\src\eeprom_fm24.c)(0x65AE067D)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\eeprom_fm24.o --depend controller-v2\eeprom_fm24.d) +I (../User/entity.h)(0x65B30DDC) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/board.h)(0x65B1C763) +I (../Core/Inc/tim.h)(0x65AE067E) +I (../User/lib/lcd/lcds.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUI_ConfDefaults.h)(0x65AE067D) +I (../User/lib/lcd/gui/Config/GUIConf.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIType.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/LCD.h)(0x65AE067D) +I (../User/lib/lcd/gui/Core/GUIVersion.h)(0x65AE067D) +I (../User/lib/menu/menu.h)(0x65AE067E) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\board\src\eeprom_lc02b.c)(0x65AE067D)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\eeprom_lc02b.o --depend controller-v2\eeprom_lc02b.d) +I (../User/board/inc/eeprom_lc02b.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\board\src\rtc_rx8010.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\rtc_rx8010.o --depend controller-v2\rtc_rx8010.d) +I (../User/board/inc/rtc_rx8010.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\board\src\ntc_3950.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\ntc_3950.o --depend controller-v2\ntc_3950.d) +I (../User/board/inc/ntc_3950.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (..\User\board\src\leds.c)(0x65AE067D)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\leds.o --depend controller-v2\leds.d) +I (../User/board/inc/leds.h)(0x658BC7B4) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +F (..\User\system\src\delay.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\delay.o --depend controller-v2\delay.d) +I (../User/system/inc/delay.h)(0x658BC7B4) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (..\User\system\src\sys.c)(0x659F8C0E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\sys.o --depend controller-v2\sys.d) +I (../User/system/inc/sys.h)(0x65AE067E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (..\User\system\src\btn.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\btn.o --depend controller-v2\btn.d) +I (..\User\system\src\../inc/btn.h)(0x658BC7B4) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (..\User\system\bsp\adcs.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\adcs.o --depend controller-v2\adcs.d) +I (..\User\system\bsp\adcs.h)(0x65AE067E) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/system/inc/sys.h)(0x65AE067E) +F (..\User\system\bsp\dacs.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\dacs.o --depend controller-v2\dacs.d) +I (..\User\system\bsp\dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +F (..\User\system\bsp\gpios.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\gpios.o --depend controller-v2\gpios.d) +I (..\User\system\bsp\gpios.h)(0x658BC7B4) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../Core/Inc/gpio.h)(0x65A53100) +F (..\User\system\bsp\spis.c)(0x65A52E54)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\spis.o --depend controller-v2\spis.d) +I (..\User\system\bsp\spis.h)(0x65A52E54) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (..\User\system\bsp\gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +F (..\User\system\bsp\uarts.c)(0x659CBE46)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\uarts.o --depend controller-v2\uarts.d) +I (..\User\system\bsp\uarts.h)(0x659F8C0E) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +F (..\User\system\bsp\eeprom.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\eeprom.o --depend controller-v2\eeprom.d) +I (..\User\system\bsp\eeprom.h)(0x658BC7B4) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +F (..\User\system\bsp\i2cs.c)(0x65A52B4A)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\i2cs.o --depend controller-v2\i2cs.d) +I (..\User\system\bsp\i2cs.h)(0x65A5293C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (..\User\system\bsp\gpios.h)(0x658BC7B4) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +F (..\User\system\bsp\pwms.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\pwms.o --depend controller-v2\pwms.d) +F (..\User\lib\src\debug.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\debug.o --depend controller-v2\debug.d) +I (..\User\lib\src\../inc/debug.h)(0x658BC7B4) +I (..\User\lib\src\../inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (..\User\lib\src\../inc/data_type_def.h)(0x65AE067D) +I (..\User\lib\src\../inc/malloc.h)(0x65B1FBF1) +I (..\User\lib\src\../inc/data_analysis.h)(0x658BC7B4) +I (..\User\lib\src\../inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (..\User\lib\src\../inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (..\User\lib\src\../inc/clist.h)(0x658BC7B4) +F (..\User\lib\src\lib.c)(0x659F41D2)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\lib.o --depend controller-v2\lib.d) +I (..\User\lib\src\../inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (..\User\lib\src\../inc/data_type_def.h)(0x65AE067D) +I (..\User\lib\src\../inc/malloc.h)(0x65B1FBF1) +I (..\User\lib\src\../inc/data_analysis.h)(0x658BC7B4) +I (..\User\lib\src\../inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (..\User\lib\src\../inc/debug.h)(0x658BC7B4) +I (..\User\lib\src\../inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (..\User\lib\src\../inc/clist.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +F (..\User\lib\src\malloc.c)(0x65AE067E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\malloc.o --depend controller-v2\malloc.d) +I (..\User\lib\src\../inc/data_type_def.h)(0x65AE067D) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (..\User\lib\src\../inc/malloc.h)(0x65B1FBF1) +F (..\User\lib\flow\flow_core.c)(0x65A53100)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\flow_core.o --depend controller-v2\flow_core.d) +I (..\User\lib\flow\flow.h)(0x65A53100) +I (..\User\lib\flow\flow_def.h)(0x65A53100) +I (..\User\lib\flow\flow_core.h)(0x65A53100) +I (..\User\lib\flow\flow_sem.h)(0x65A53100) +F (..\User\lib\src\sqqueue.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\sqqueue.o --depend controller-v2\sqqueue.d) +I (..\User\lib\src\../inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (..\User\lib\src\../inc/data_type_def.h)(0x65AE067D) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (..\User\lib\src\../inc/osel_arch.h)(0x65AE067D) +I (..\User\lib\src\../inc/lib.h)(0x658BC7B4) +I (..\User\lib\src\../inc/malloc.h)(0x65B1FBF1) +I (..\User\lib\src\../inc/data_analysis.h)(0x658BC7B4) +I (..\User\lib\src\../inc/debug.h)(0x658BC7B4) +I (..\User\lib\src\../inc/clist.h)(0x658BC7B4) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (..\User\lib\src\filter.c)(0x65AE1672)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\filter.o --depend controller-v2\filter.d) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +F (..\User\lib\src\clist.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\clist.o --depend controller-v2\clist.d) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +F (..\User\lib\src\cmac.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\cmac.o --depend controller-v2\cmac.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/aes.h)(0x658BC7B4) +I (../User/lib/inc/cmac.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +F (..\User\lib\src\aes.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\aes.o --depend controller-v2\aes.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdlib.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/aes.h)(0x658BC7B4) +F (..\User\lib\flashdb\fdb.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fdb.o --depend controller-v2\fdb.d) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_low_lvl.h)(0x659B4F96) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\inttypes.h)(0x569DEA3A) +F (..\User\lib\flashdb\fdb_kvdb.c)(0x659F41D2)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fdb_kvdb.o --depend controller-v2\fdb_kvdb.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\inttypes.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_low_lvl.h)(0x659B4F96) +F (..\User\lib\flashdb\fdb_tsdb.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fdb_tsdb.o --depend controller-v2\fdb_tsdb.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\inttypes.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_low_lvl.h)(0x659B4F96) +F (..\User\lib\flashdb\fdb_utils.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fdb_utils.o --depend controller-v2\fdb_utils.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_low_lvl.h)(0x659B4F96) +F (..\User\lib\flashdb\fdb_file.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fdb_file.o --depend controller-v2\fdb_file.d) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/flashdb.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stddef.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\time.h)(0x569DEA3A) +I (../User/lib/flashdb/fdb_cfg.h)(0x659F41D2) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (../User/lib/flashdb/fdb_def.h)(0x659F41D2) +I (../User/lib/flashdb/fdb_low_lvl.h)(0x659B4F96) +F (..\User\lib\flashdb\fal_eeprom95_port.c)(0x659F41D2)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_eeprom95_port.o --depend controller-v2\fal_eeprom95_port.d) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +F (..\User\lib\flashdb\fal_eeprom24_port.c)(0x659F8C0E)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_eeprom24_port.o --depend controller-v2\fal_eeprom24_port.d) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +F (..\User\lib\flashdb\fal\fal.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal.o --depend controller-v2\fal.d) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +F (..\User\lib\flashdb\fal\fal_flash.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_flash.o --depend controller-v2\fal_flash.d) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +F (..\User\lib\flashdb\fal\fal_partition.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_partition.o --depend controller-v2\fal_partition.d) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\string.h)(0x569DEA3A) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdlib.h)(0x569DEA3A) +F (..\User\lib\flashdb\fal\fal_rtt.c)(0x658BC7B4)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\fal_rtt.o --depend controller-v2\fal_rtt.d) +I (../User/lib/flashdb/fal/fal.h)(0x658BC7B4) +I (../User/lib/flashdb/fal/fal_cfg.h)(0x65AE067D) +I (../User/board/inc/eeprom_m95.h)(0x65AE067D) +I (../Core/Inc/main.h)(0x65AE067E) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h)(0x6552155C) +I (../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h)(0x6552155C) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/entity.h)(0x65B30DDC) +I (../User/system/bsp/adcs.h)(0x65AE067E) +I (../User/application/inc/params.h)(0x65A53100) +I (../User/application/inc/pdctrl.h)(0x65B1C763) +I (../User/system/bsp/bsp.h)(0x65AE067E) +I (../User/system/bsp/gpios.h)(0x658BC7B4) +I (../User/system/bsp/dacs.h)(0x658BC7B4) +I (../Core/Inc/dac.h)(0x65A53100) +I (../User/system/bsp/tims.h)(0x65AE067E) +I (../User/system/bsp/pwms.h)(0x658BC7B4) +I (../User/system/bsp/uarts.h)(0x659F8C0E) +I (../User/system/bsp/eeprom.h)(0x658BC7B4) +I (../User/system/bsp/spis.h)(0x65A52E54) +I (../User/system/bsp/i2cs.h)(0x65A5293C) +I (../User/system/bsp/iwdgs.h)(0x658BC7B4) +I (../User/application/inc/mode.h)(0x65B30B0D) +I (../User/application/inc/mode_dac.h)(0x65A53446) +I (../User/lib/inc/filter.h)(0x65AE0E80) +I (../User/application/inc/mode_pwm.h)(0x65A5371A) +I (../User/application/inc/mode_pwmp.h)(0x65B1C763) +I (../User/application/inc/mode_pwmp_hd.h)(0x65B32137) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (../User/board/inc/eeprom_fm24.h)(0x659FBE7E) +I (../User/lib/flashdb/fal/fal_def.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdio.h)(0x569DEA3A) +F (..\User\lib\control\src\pid.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\pid.o --depend controller-v2\pid.d) +I (../User/lib/control/inc/pid.h)(0x65B1C763) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (../User/lib/control/inc/pid_auto_tune.h)(0x65AE067D) +I (../User/lib/control/custom/pid_c.h)(0x65AE067D) +I (../User/lib/control/custom/pid_g.h)(0x65B1C763) +I (../User/lib/control/custom/pid_x.h)(0x65AE067D) +I (../User/lib/control/custom/pid_zh.h)(0x65AE067D) +I (../User/lib/control/custom/pid_hd.h)(0x65B1C763) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +F (..\User\lib\control\custom\pid_hd.c)(0x65B1C763)(--c99 --gnu -c --cpu Cortex-M4 -D__MICROLIB -g -O1 --apcs=interwork --split_sections -I ../Core/Inc -I ../Drivers/STM32L4xx_HAL_Driver/Inc -I ../Drivers/CMSIS/Device/ST/STM32L4xx/Include -I ../Drivers/CMSIS/Include -I ../User -I ../User/system/bsp -I ../User/board/inc -I ../User/lib/inc -I ../User/system/inc -I ../User/lib/font -I ../User/application/inc -I ../User/application/menus -I ../User/hart/inc -I ../User/lib/flow -I ../User/lib/control/inc -I ../User/lib/control/custom -I ../User/lib/lcd -I ../User/lib/lcd/gui/Config -I ../User/lib/lcd/gui/Core -I ../User/lib/menu -I ../User/lib/unity -I ../User/lib/flashdb -I ../User/lib/flashdb/fal -I ../Tests -I ../Middlewares/ST/ARM/DSP/Inc -I ..\User\lib\control\inc -I ..\User\lib\control\custom --locale=english --diag_suppress=9 -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\Drivers\CMSIS\Device\ST\STM32L4xx\Include" -D__UVISION_VERSION="525" -D_RTE_ -DSTM32L476xx -DV4 -DSTM32 -DSLAVE -DUSE_FULL_LL_DRIVER -DSTM32L476xx -D__FPU_PRESENT="1U" -D__FPU_USED="0U" -D__CC_ARM -DARM_MATH_CM4 -DHSE_VALUE="8000000" -DHSE_STARTUP_TIMEOUT="100" -DLSE_STARTUP_TIMEOUT="5000" -DLSE_VALUE="32768" -DMSI_VALUE="16000000" -DEXTERNALSAI1_CLOCK_VALUE="2097000" -DEXTERNALSAI2_CLOCK_VALUE="2097000" -DHSI_VALUE="16000000" -DLSI_VALUE="32000" -DVDD_VALUE="3300" -DPREFETCH_ENABLE="0" -DINSTRUCTION_CACHE_ENABLE="1" -DDATA_CACHE_ENABLE="1" -o controller-v2\pid_hd.o --depend controller-v2\pid_hd.d) +I (..\User\lib\control\custom\pid_hd.h)(0x65B1C763) +I (../User/lib/inc/lib.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdint.h)(0x569DEA3A) +I (../User/lib/inc/data_type_def.h)(0x65AE067D) +I (../User/lib/inc/malloc.h)(0x65B1FBF1) +I (../User/lib/inc/data_analysis.h)(0x658BC7B4) +I (../User/lib/inc/osel_arch.h)(0x65AE067D) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h)(0x6552155A) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h)(0x6552155A) +I (../Drivers/CMSIS/Include/core_cm4.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_version.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_compiler.h)(0x6552155C) +I (../Drivers/CMSIS/Include/cmsis_armcc.h)(0x6552155C) +I (../Drivers/CMSIS/Include/mpu_armv7.h)(0x6552155C) +I (../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h)(0x6552155A) +I (../User/lib/inc/debug.h)(0x658BC7B4) +I (../User/lib/inc/sqqueue.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\stdbool.h)(0x569DEA3A) +I (../User/lib/inc/clist.h)(0x658BC7B4) +I (D:\work\Work app\Keil5\ARM\ARMCC\include\math.h)(0x569DEA3A) +F (../Middlewares/ST/ARM/DSP/Lib/arm_cortexM4l_math.lib)(0x655DB028)() diff --git a/MDK-ARM/controller-v2/convert.d b/MDK-ARM/controller-v2/convert.d new file mode 100644 index 0000000..1fef8b4 --- /dev/null +++ b/MDK-ARM/controller-v2/convert.d @@ -0,0 +1,85 @@ +controller-v2\convert.o: ..\User\application\src\convert.c +controller-v2\convert.o: ..\User\application\src\../inc/convert.h +controller-v2\convert.o: ../User/lib/inc/lib.h +controller-v2\convert.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\convert.o: ../User/lib/inc/data_type_def.h +controller-v2\convert.o: ../User/lib/inc/malloc.h +controller-v2\convert.o: ../User/lib/inc/data_analysis.h +controller-v2\convert.o: ../User/lib/inc/osel_arch.h +controller-v2\convert.o: ../User/lib/inc/lib.h +controller-v2\convert.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\convert.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\convert.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\convert.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\convert.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\convert.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\convert.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\convert.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\convert.o: ../User/lib/inc/debug.h +controller-v2\convert.o: ../User/lib/inc/sqqueue.h +controller-v2\convert.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\convert.o: ../User/lib/inc/clist.h +controller-v2\convert.o: ../Core/Inc/main.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\convert.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\convert.o: ../User/entity.h +controller-v2\convert.o: ../User/system/bsp/adcs.h +controller-v2\convert.o: ../User/application/inc/params.h +controller-v2\convert.o: ../User/entity.h +controller-v2\convert.o: ../User/application/inc/pdctrl.h +controller-v2\convert.o: ../User/system/bsp/bsp.h +controller-v2\convert.o: ../User/system/bsp/gpios.h +controller-v2\convert.o: ../User/system/bsp/dacs.h +controller-v2\convert.o: ../Core/Inc/dac.h +controller-v2\convert.o: ../User/system/bsp/tims.h +controller-v2\convert.o: ../User/system/bsp/pwms.h +controller-v2\convert.o: ../User/system/bsp/uarts.h +controller-v2\convert.o: ../User/system/bsp/eeprom.h +controller-v2\convert.o: ../User/system/bsp/spis.h +controller-v2\convert.o: ../User/system/bsp/i2cs.h +controller-v2\convert.o: ../User/system/bsp/iwdgs.h +controller-v2\convert.o: ../User/application/inc/mode.h +controller-v2\convert.o: ../User/application/inc/mode_dac.h +controller-v2\convert.o: ../User/lib/inc/filter.h +controller-v2\convert.o: ../User/application/inc/mode_pwm.h +controller-v2\convert.o: ../User/application/inc/mode_pwmp.h +controller-v2\convert.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\convert.o: ../User/lib/control/inc/pid.h +controller-v2\convert.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\convert.o: ../User/lib/control/custom/pid_c.h +controller-v2\convert.o: ../User/lib/control/custom/pid_g.h +controller-v2\convert.o: ../User/lib/control/custom/pid_x.h +controller-v2\convert.o: ../User/lib/control/custom/pid_zh.h +controller-v2\convert.o: ../User/lib/control/custom/pid_zh.h +controller-v2\convert.o: ../User/lib/control/custom/pid_hd.h +controller-v2\convert.o: ../User/board/inc/board.h +controller-v2\convert.o: ../Core/Inc/tim.h +controller-v2\convert.o: ../User/lib/lcd/lcds.h +controller-v2\convert.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\convert.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\convert.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\convert.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\convert.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\convert.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\convert.o: ../User/lib/menu/menu.h +controller-v2\convert.o: ../User/board/inc/rtc_rx8010.h +controller-v2\convert.o: ../User/board/inc/eeprom_m95.h +controller-v2\convert.o: ../User/board/inc/eeprom_fm24.h +controller-v2\convert.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\convert.o: ../User/board/inc/ntc_3950.h +controller-v2\convert.o: ../User/board/inc/leds.h +controller-v2\convert.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h diff --git a/MDK-ARM/controller-v2/convert.o b/MDK-ARM/controller-v2/convert.o new file mode 100644 index 0000000..5fb53ab Binary files /dev/null and b/MDK-ARM/controller-v2/convert.o differ diff --git a/MDK-ARM/controller-v2/dac.d b/MDK-ARM/controller-v2/dac.d new file mode 100644 index 0000000..0c021bf --- /dev/null +++ b/MDK-ARM/controller-v2/dac.d @@ -0,0 +1,38 @@ +controller-v2\dac.o: ../Core/Src/dac.c +controller-v2\dac.o: ../Core/Inc/dac.h +controller-v2\dac.o: ../Core/Inc/main.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\dac.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\dac.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\dac.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\dac.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\dac.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\dac.o: ../User/lib/inc/lib.h +controller-v2\dac.o: ../User/lib/inc/data_type_def.h +controller-v2\dac.o: ../User/lib/inc/malloc.h +controller-v2\dac.o: ../User/lib/inc/data_analysis.h +controller-v2\dac.o: ../User/lib/inc/osel_arch.h +controller-v2\dac.o: ../User/lib/inc/lib.h +controller-v2\dac.o: ../User/lib/inc/debug.h +controller-v2\dac.o: ../User/lib/inc/sqqueue.h +controller-v2\dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\dac.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/dac.o b/MDK-ARM/controller-v2/dac.o new file mode 100644 index 0000000..5376213 Binary files /dev/null and b/MDK-ARM/controller-v2/dac.o differ diff --git a/MDK-ARM/controller-v2/dacs.d b/MDK-ARM/controller-v2/dacs.d new file mode 100644 index 0000000..cb0f098 --- /dev/null +++ b/MDK-ARM/controller-v2/dacs.d @@ -0,0 +1,39 @@ +controller-v2\dacs.o: ..\User\system\bsp\dacs.c +controller-v2\dacs.o: ..\User\system\bsp\dacs.h +controller-v2\dacs.o: ../Core/Inc/dac.h +controller-v2\dacs.o: ../Core/Inc/main.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\dacs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\dacs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\dacs.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\dacs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\dacs.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\dacs.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\dacs.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\dacs.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\dacs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\dacs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\dacs.o: ../User/lib/inc/lib.h +controller-v2\dacs.o: ../User/lib/inc/data_type_def.h +controller-v2\dacs.o: ../User/lib/inc/malloc.h +controller-v2\dacs.o: ../User/lib/inc/data_analysis.h +controller-v2\dacs.o: ../User/lib/inc/osel_arch.h +controller-v2\dacs.o: ../User/lib/inc/lib.h +controller-v2\dacs.o: ../User/lib/inc/debug.h +controller-v2\dacs.o: ../User/lib/inc/sqqueue.h +controller-v2\dacs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\dacs.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/dacs.o b/MDK-ARM/controller-v2/dacs.o new file mode 100644 index 0000000..2b962e0 Binary files /dev/null and b/MDK-ARM/controller-v2/dacs.o differ diff --git a/MDK-ARM/controller-v2/debug.d b/MDK-ARM/controller-v2/debug.d new file mode 100644 index 0000000..2c5a2ec --- /dev/null +++ b/MDK-ARM/controller-v2/debug.d @@ -0,0 +1,21 @@ +controller-v2\debug.o: ..\User\lib\src\debug.c +controller-v2\debug.o: ..\User\lib\src\../inc/debug.h +controller-v2\debug.o: ..\User\lib\src\../inc/lib.h +controller-v2\debug.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\debug.o: ..\User\lib\src\../inc/data_type_def.h +controller-v2\debug.o: ..\User\lib\src\../inc/malloc.h +controller-v2\debug.o: ..\User\lib\src\../inc/data_analysis.h +controller-v2\debug.o: ..\User\lib\src\../inc/osel_arch.h +controller-v2\debug.o: ..\User\lib\src\../inc/lib.h +controller-v2\debug.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\debug.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\debug.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\debug.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\debug.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\debug.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\debug.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\debug.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\debug.o: ..\User\lib\src\../inc/debug.h +controller-v2\debug.o: ..\User\lib\src\../inc/sqqueue.h +controller-v2\debug.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\debug.o: ..\User\lib\src\../inc/clist.h diff --git a/MDK-ARM/controller-v2/debug.o b/MDK-ARM/controller-v2/debug.o new file mode 100644 index 0000000..06a13c0 Binary files /dev/null and b/MDK-ARM/controller-v2/debug.o differ diff --git a/MDK-ARM/controller-v2/delay.d b/MDK-ARM/controller-v2/delay.d new file mode 100644 index 0000000..10bd484 --- /dev/null +++ b/MDK-ARM/controller-v2/delay.d @@ -0,0 +1,39 @@ +controller-v2\delay.o: ..\User\system\src\delay.c +controller-v2\delay.o: ../User/system/inc/delay.h +controller-v2\delay.o: ../User/system/inc/sys.h +controller-v2\delay.o: ../Core/Inc/main.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\delay.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\delay.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\delay.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\delay.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\delay.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\delay.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\delay.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\delay.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\delay.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\delay.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\delay.o: ../User/lib/inc/lib.h +controller-v2\delay.o: ../User/lib/inc/data_type_def.h +controller-v2\delay.o: ../User/lib/inc/malloc.h +controller-v2\delay.o: ../User/lib/inc/data_analysis.h +controller-v2\delay.o: ../User/lib/inc/osel_arch.h +controller-v2\delay.o: ../User/lib/inc/lib.h +controller-v2\delay.o: ../User/lib/inc/debug.h +controller-v2\delay.o: ../User/lib/inc/sqqueue.h +controller-v2\delay.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\delay.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/delay.o b/MDK-ARM/controller-v2/delay.o new file mode 100644 index 0000000..5acea51 Binary files /dev/null and b/MDK-ARM/controller-v2/delay.o differ diff --git a/MDK-ARM/controller-v2/dma.d b/MDK-ARM/controller-v2/dma.d new file mode 100644 index 0000000..5b11f89 --- /dev/null +++ b/MDK-ARM/controller-v2/dma.d @@ -0,0 +1,38 @@ +controller-v2\dma.o: ../Core/Src/dma.c +controller-v2\dma.o: ../Core/Inc/dma.h +controller-v2\dma.o: ../Core/Inc/main.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\dma.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\dma.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\dma.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\dma.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\dma.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\dma.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\dma.o: ../User/lib/inc/lib.h +controller-v2\dma.o: ../User/lib/inc/data_type_def.h +controller-v2\dma.o: ../User/lib/inc/malloc.h +controller-v2\dma.o: ../User/lib/inc/data_analysis.h +controller-v2\dma.o: ../User/lib/inc/osel_arch.h +controller-v2\dma.o: ../User/lib/inc/lib.h +controller-v2\dma.o: ../User/lib/inc/debug.h +controller-v2\dma.o: ../User/lib/inc/sqqueue.h +controller-v2\dma.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\dma.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/dma.o b/MDK-ARM/controller-v2/dma.o new file mode 100644 index 0000000..482aaab Binary files /dev/null and b/MDK-ARM/controller-v2/dma.o differ diff --git a/MDK-ARM/controller-v2/eeprom.d b/MDK-ARM/controller-v2/eeprom.d new file mode 100644 index 0000000..a1ed639 --- /dev/null +++ b/MDK-ARM/controller-v2/eeprom.d @@ -0,0 +1,38 @@ +controller-v2\eeprom.o: ..\User\system\bsp\eeprom.c +controller-v2\eeprom.o: ..\User\system\bsp\eeprom.h +controller-v2\eeprom.o: ../User/lib/inc/lib.h +controller-v2\eeprom.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\eeprom.o: ../User/lib/inc/data_type_def.h +controller-v2\eeprom.o: ../User/lib/inc/malloc.h +controller-v2\eeprom.o: ../User/lib/inc/data_analysis.h +controller-v2\eeprom.o: ../User/lib/inc/osel_arch.h +controller-v2\eeprom.o: ../User/lib/inc/lib.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\eeprom.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\eeprom.o: ../User/lib/inc/debug.h +controller-v2\eeprom.o: ../User/lib/inc/sqqueue.h +controller-v2\eeprom.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\eeprom.o: ../User/lib/inc/clist.h +controller-v2\eeprom.o: ../Core/Inc/main.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\eeprom.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h diff --git a/MDK-ARM/controller-v2/eeprom.o b/MDK-ARM/controller-v2/eeprom.o new file mode 100644 index 0000000..4897581 Binary files /dev/null and b/MDK-ARM/controller-v2/eeprom.o differ diff --git a/MDK-ARM/controller-v2/eeprom_fm24.d b/MDK-ARM/controller-v2/eeprom_fm24.d new file mode 100644 index 0000000..c77a381 --- /dev/null +++ b/MDK-ARM/controller-v2/eeprom_fm24.d @@ -0,0 +1,85 @@ +controller-v2\eeprom_fm24.o: ..\User\board\src\eeprom_fm24.c +controller-v2\eeprom_fm24.o: ../User/entity.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/lib.h +controller-v2\eeprom_fm24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/data_type_def.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/malloc.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/data_analysis.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/osel_arch.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/lib.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\eeprom_fm24.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/debug.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/sqqueue.h +controller-v2\eeprom_fm24.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/clist.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/adcs.h +controller-v2\eeprom_fm24.o: ../Core/Inc/main.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\eeprom_fm24.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\eeprom_fm24.o: ../User/application/inc/params.h +controller-v2\eeprom_fm24.o: ../User/entity.h +controller-v2\eeprom_fm24.o: ../User/application/inc/pdctrl.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/bsp.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/gpios.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/dacs.h +controller-v2\eeprom_fm24.o: ../Core/Inc/dac.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/tims.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/pwms.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/uarts.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/eeprom.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/spis.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/i2cs.h +controller-v2\eeprom_fm24.o: ../User/system/bsp/iwdgs.h +controller-v2\eeprom_fm24.o: ../User/application/inc/mode.h +controller-v2\eeprom_fm24.o: ../User/application/inc/mode_dac.h +controller-v2\eeprom_fm24.o: ../User/lib/inc/filter.h +controller-v2\eeprom_fm24.o: ../User/application/inc/mode_pwm.h +controller-v2\eeprom_fm24.o: ../User/application/inc/mode_pwmp.h +controller-v2\eeprom_fm24.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\eeprom_fm24.o: ../User/lib/control/inc/pid.h +controller-v2\eeprom_fm24.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_c.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_g.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_x.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_fm24.o: ../User/lib/control/custom/pid_hd.h +controller-v2\eeprom_fm24.o: ../User/board/inc/board.h +controller-v2\eeprom_fm24.o: ../Core/Inc/tim.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/lcds.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\eeprom_fm24.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\eeprom_fm24.o: ../User/lib/menu/menu.h +controller-v2\eeprom_fm24.o: ../User/board/inc/rtc_rx8010.h +controller-v2\eeprom_fm24.o: ../User/board/inc/eeprom_m95.h +controller-v2\eeprom_fm24.o: ../User/board/inc/eeprom_fm24.h +controller-v2\eeprom_fm24.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\eeprom_fm24.o: ../User/board/inc/ntc_3950.h +controller-v2\eeprom_fm24.o: ../User/board/inc/leds.h +controller-v2\eeprom_fm24.o: ../User/system/inc/delay.h +controller-v2\eeprom_fm24.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/eeprom_fm24.o b/MDK-ARM/controller-v2/eeprom_fm24.o new file mode 100644 index 0000000..9ce4f3d Binary files /dev/null and b/MDK-ARM/controller-v2/eeprom_fm24.o differ diff --git a/MDK-ARM/controller-v2/eeprom_lc02b.d b/MDK-ARM/controller-v2/eeprom_lc02b.d new file mode 100644 index 0000000..169bbb4 --- /dev/null +++ b/MDK-ARM/controller-v2/eeprom_lc02b.d @@ -0,0 +1,70 @@ +controller-v2\eeprom_lc02b.o: ..\User\board\src\eeprom_lc02b.c +controller-v2\eeprom_lc02b.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\eeprom_lc02b.o: ../Core/Inc/main.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\eeprom_lc02b.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\eeprom_lc02b.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\eeprom_lc02b.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/lib.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/data_type_def.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/malloc.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/data_analysis.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/osel_arch.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/lib.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/debug.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/sqqueue.h +controller-v2\eeprom_lc02b.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/clist.h +controller-v2\eeprom_lc02b.o: ../User/entity.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/adcs.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/params.h +controller-v2\eeprom_lc02b.o: ../User/entity.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/pdctrl.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/bsp.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/gpios.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/dacs.h +controller-v2\eeprom_lc02b.o: ../Core/Inc/dac.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/tims.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/pwms.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/uarts.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/eeprom.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/spis.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/i2cs.h +controller-v2\eeprom_lc02b.o: ../User/system/bsp/iwdgs.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/mode.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/mode_dac.h +controller-v2\eeprom_lc02b.o: ../User/lib/inc/filter.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/mode_pwm.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/mode_pwmp.h +controller-v2\eeprom_lc02b.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/inc/pid.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_c.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_g.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_x.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_lc02b.o: ../User/lib/control/custom/pid_hd.h +controller-v2\eeprom_lc02b.o: ../User/system/inc/delay.h +controller-v2\eeprom_lc02b.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/eeprom_lc02b.o b/MDK-ARM/controller-v2/eeprom_lc02b.o new file mode 100644 index 0000000..04b0062 Binary files /dev/null and b/MDK-ARM/controller-v2/eeprom_lc02b.o differ diff --git a/MDK-ARM/controller-v2/eeprom_m95.d b/MDK-ARM/controller-v2/eeprom_m95.d new file mode 100644 index 0000000..7c7417c --- /dev/null +++ b/MDK-ARM/controller-v2/eeprom_m95.d @@ -0,0 +1,85 @@ +controller-v2\eeprom_m95.o: ..\User\board\src\eeprom_m95.c +controller-v2\eeprom_m95.o: ../User/board/inc/eeprom_m95.h +controller-v2\eeprom_m95.o: ../Core/Inc/main.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\eeprom_m95.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\eeprom_m95.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\eeprom_m95.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\eeprom_m95.o: ../User/lib/inc/lib.h +controller-v2\eeprom_m95.o: ../User/lib/inc/data_type_def.h +controller-v2\eeprom_m95.o: ../User/lib/inc/malloc.h +controller-v2\eeprom_m95.o: ../User/lib/inc/data_analysis.h +controller-v2\eeprom_m95.o: ../User/lib/inc/osel_arch.h +controller-v2\eeprom_m95.o: ../User/lib/inc/lib.h +controller-v2\eeprom_m95.o: ../User/lib/inc/debug.h +controller-v2\eeprom_m95.o: ../User/lib/inc/sqqueue.h +controller-v2\eeprom_m95.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\eeprom_m95.o: ../User/lib/inc/clist.h +controller-v2\eeprom_m95.o: ../User/entity.h +controller-v2\eeprom_m95.o: ../User/system/bsp/adcs.h +controller-v2\eeprom_m95.o: ../User/application/inc/params.h +controller-v2\eeprom_m95.o: ../User/entity.h +controller-v2\eeprom_m95.o: ../User/application/inc/pdctrl.h +controller-v2\eeprom_m95.o: ../User/system/bsp/bsp.h +controller-v2\eeprom_m95.o: ../User/system/bsp/gpios.h +controller-v2\eeprom_m95.o: ../User/system/bsp/dacs.h +controller-v2\eeprom_m95.o: ../Core/Inc/dac.h +controller-v2\eeprom_m95.o: ../User/system/bsp/tims.h +controller-v2\eeprom_m95.o: ../User/system/bsp/pwms.h +controller-v2\eeprom_m95.o: ../User/system/bsp/uarts.h +controller-v2\eeprom_m95.o: ../User/system/bsp/eeprom.h +controller-v2\eeprom_m95.o: ../User/system/bsp/spis.h +controller-v2\eeprom_m95.o: ../User/system/bsp/i2cs.h +controller-v2\eeprom_m95.o: ../User/system/bsp/iwdgs.h +controller-v2\eeprom_m95.o: ../User/application/inc/mode.h +controller-v2\eeprom_m95.o: ../User/application/inc/mode_dac.h +controller-v2\eeprom_m95.o: ../User/lib/inc/filter.h +controller-v2\eeprom_m95.o: ../User/application/inc/mode_pwm.h +controller-v2\eeprom_m95.o: ../User/application/inc/mode_pwmp.h +controller-v2\eeprom_m95.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\eeprom_m95.o: ../User/lib/control/inc/pid.h +controller-v2\eeprom_m95.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_c.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_g.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_x.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_zh.h +controller-v2\eeprom_m95.o: ../User/lib/control/custom/pid_hd.h +controller-v2\eeprom_m95.o: ../User/system/inc/delay.h +controller-v2\eeprom_m95.o: ../User/system/inc/sys.h +controller-v2\eeprom_m95.o: ../User/board/inc/board.h +controller-v2\eeprom_m95.o: ../Core/Inc/tim.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/lcds.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\eeprom_m95.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\eeprom_m95.o: ../User/lib/menu/menu.h +controller-v2\eeprom_m95.o: ../User/board/inc/rtc_rx8010.h +controller-v2\eeprom_m95.o: ../User/board/inc/eeprom_fm24.h +controller-v2\eeprom_m95.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\eeprom_m95.o: ../User/board/inc/ntc_3950.h +controller-v2\eeprom_m95.o: ../User/board/inc/leds.h diff --git a/MDK-ARM/controller-v2/eeprom_m95.o b/MDK-ARM/controller-v2/eeprom_m95.o new file mode 100644 index 0000000..b39abc4 Binary files /dev/null and b/MDK-ARM/controller-v2/eeprom_m95.o differ diff --git a/MDK-ARM/controller-v2/fal.d b/MDK-ARM/controller-v2/fal.d new file mode 100644 index 0000000..4689440 --- /dev/null +++ b/MDK-ARM/controller-v2/fal.d @@ -0,0 +1,73 @@ +controller-v2\fal.o: ..\User\lib\flashdb\fal\fal.c +controller-v2\fal.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal.o: ../Core/Inc/main.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal.o: ../User/lib/inc/lib.h +controller-v2\fal.o: ../User/lib/inc/data_type_def.h +controller-v2\fal.o: ../User/lib/inc/malloc.h +controller-v2\fal.o: ../User/lib/inc/data_analysis.h +controller-v2\fal.o: ../User/lib/inc/osel_arch.h +controller-v2\fal.o: ../User/lib/inc/lib.h +controller-v2\fal.o: ../User/lib/inc/debug.h +controller-v2\fal.o: ../User/lib/inc/sqqueue.h +controller-v2\fal.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal.o: ../User/lib/inc/clist.h +controller-v2\fal.o: ../User/entity.h +controller-v2\fal.o: ../User/system/bsp/adcs.h +controller-v2\fal.o: ../User/application/inc/params.h +controller-v2\fal.o: ../User/entity.h +controller-v2\fal.o: ../User/application/inc/pdctrl.h +controller-v2\fal.o: ../User/system/bsp/bsp.h +controller-v2\fal.o: ../User/system/bsp/gpios.h +controller-v2\fal.o: ../User/system/bsp/dacs.h +controller-v2\fal.o: ../Core/Inc/dac.h +controller-v2\fal.o: ../User/system/bsp/tims.h +controller-v2\fal.o: ../User/system/bsp/pwms.h +controller-v2\fal.o: ../User/system/bsp/uarts.h +controller-v2\fal.o: ../User/system/bsp/eeprom.h +controller-v2\fal.o: ../User/system/bsp/spis.h +controller-v2\fal.o: ../User/system/bsp/i2cs.h +controller-v2\fal.o: ../User/system/bsp/iwdgs.h +controller-v2\fal.o: ../User/application/inc/mode.h +controller-v2\fal.o: ../User/application/inc/mode_dac.h +controller-v2\fal.o: ../User/lib/inc/filter.h +controller-v2\fal.o: ../User/application/inc/mode_pwm.h +controller-v2\fal.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal.o: ../User/lib/control/inc/pid.h +controller-v2\fal.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h diff --git a/MDK-ARM/controller-v2/fal.o b/MDK-ARM/controller-v2/fal.o new file mode 100644 index 0000000..3a0a464 Binary files /dev/null and b/MDK-ARM/controller-v2/fal.o differ diff --git a/MDK-ARM/controller-v2/fal_eeprom24_port.d b/MDK-ARM/controller-v2/fal_eeprom24_port.d new file mode 100644 index 0000000..726ed75 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_eeprom24_port.d @@ -0,0 +1,74 @@ +controller-v2\fal_eeprom24_port.o: ..\User\lib\flashdb\fal_eeprom24_port.c +controller-v2\fal_eeprom24_port.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_eeprom24_port.o: ../Core/Inc/main.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_eeprom24_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_eeprom24_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_eeprom24_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/lib.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/malloc.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/lib.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/debug.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_eeprom24_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/clist.h +controller-v2\fal_eeprom24_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fal_eeprom24_port.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_eeprom24_port.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_eeprom24_port.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_eeprom24_port.o: ../User/entity.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/adcs.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/params.h +controller-v2\fal_eeprom24_port.o: ../User/entity.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/pdctrl.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/bsp.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/gpios.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/dacs.h +controller-v2\fal_eeprom24_port.o: ../Core/Inc/dac.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/tims.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/pwms.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/uarts.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/eeprom.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/spis.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/i2cs.h +controller-v2\fal_eeprom24_port.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/mode.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/mode_dac.h +controller-v2\fal_eeprom24_port.o: ../User/lib/inc/filter.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_eeprom24_port.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/inc/pid.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_eeprom24_port.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_eeprom24_port.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_eeprom24_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h diff --git a/MDK-ARM/controller-v2/fal_eeprom24_port.o b/MDK-ARM/controller-v2/fal_eeprom24_port.o new file mode 100644 index 0000000..765a1a2 Binary files /dev/null and b/MDK-ARM/controller-v2/fal_eeprom24_port.o differ diff --git a/MDK-ARM/controller-v2/fal_eeprom95_port.d b/MDK-ARM/controller-v2/fal_eeprom95_port.d new file mode 100644 index 0000000..9f8cfe2 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_eeprom95_port.d @@ -0,0 +1,74 @@ +controller-v2\fal_eeprom95_port.o: ..\User\lib\flashdb\fal_eeprom95_port.c +controller-v2\fal_eeprom95_port.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_eeprom95_port.o: ../Core/Inc/main.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_eeprom95_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_eeprom95_port.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_eeprom95_port.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/lib.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/malloc.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/lib.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/debug.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_eeprom95_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/clist.h +controller-v2\fal_eeprom95_port.o: ../User/entity.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/adcs.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/params.h +controller-v2\fal_eeprom95_port.o: ../User/entity.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/pdctrl.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/bsp.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/gpios.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/dacs.h +controller-v2\fal_eeprom95_port.o: ../Core/Inc/dac.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/tims.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/pwms.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/uarts.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/eeprom.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/spis.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/i2cs.h +controller-v2\fal_eeprom95_port.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/mode.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/mode_dac.h +controller-v2\fal_eeprom95_port.o: ../User/lib/inc/filter.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_eeprom95_port.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/inc/pid.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_eeprom95_port.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_eeprom95_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fal_eeprom95_port.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_eeprom95_port.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_eeprom95_port.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_eeprom95_port.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_eeprom95_port.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h diff --git a/MDK-ARM/controller-v2/fal_eeprom95_port.o b/MDK-ARM/controller-v2/fal_eeprom95_port.o new file mode 100644 index 0000000..98bd9c2 Binary files /dev/null and b/MDK-ARM/controller-v2/fal_eeprom95_port.o differ diff --git a/MDK-ARM/controller-v2/fal_execution.d b/MDK-ARM/controller-v2/fal_execution.d new file mode 100644 index 0000000..8da2f78 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_execution.d @@ -0,0 +1,97 @@ +controller-v2\fal_execution.o: ..\User\application\src\fal_execution.c +controller-v2\fal_execution.o: ../User/application/inc/fal_execution.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fal_execution.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_execution.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_execution.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_execution.o: ../Core/Inc/main.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_execution.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_execution.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_execution.o: ../User/lib/inc/lib.h +controller-v2\fal_execution.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_execution.o: ../User/lib/inc/malloc.h +controller-v2\fal_execution.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_execution.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_execution.o: ../User/lib/inc/lib.h +controller-v2\fal_execution.o: ../User/lib/inc/debug.h +controller-v2\fal_execution.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_execution.o: ../User/lib/inc/clist.h +controller-v2\fal_execution.o: ../User/entity.h +controller-v2\fal_execution.o: ../User/system/bsp/adcs.h +controller-v2\fal_execution.o: ../User/application/inc/params.h +controller-v2\fal_execution.o: ../User/entity.h +controller-v2\fal_execution.o: ../User/application/inc/pdctrl.h +controller-v2\fal_execution.o: ../User/system/bsp/bsp.h +controller-v2\fal_execution.o: ../User/system/bsp/gpios.h +controller-v2\fal_execution.o: ../User/system/bsp/dacs.h +controller-v2\fal_execution.o: ../Core/Inc/dac.h +controller-v2\fal_execution.o: ../User/system/bsp/tims.h +controller-v2\fal_execution.o: ../User/system/bsp/pwms.h +controller-v2\fal_execution.o: ../User/system/bsp/uarts.h +controller-v2\fal_execution.o: ../User/system/bsp/eeprom.h +controller-v2\fal_execution.o: ../User/system/bsp/spis.h +controller-v2\fal_execution.o: ../User/system/bsp/i2cs.h +controller-v2\fal_execution.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_execution.o: ../User/application/inc/mode.h +controller-v2\fal_execution.o: ../User/application/inc/mode_dac.h +controller-v2\fal_execution.o: ../User/lib/inc/filter.h +controller-v2\fal_execution.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_execution.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_execution.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_execution.o: ../User/lib/control/inc/pid.h +controller-v2\fal_execution.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_execution.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_execution.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_execution.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fal_execution.o: ../User/lib/flashdb/flashdb.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fal_execution.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fal_execution.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fal_execution.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fal_execution.o: ../User/board/inc/board.h +controller-v2\fal_execution.o: ../Core/Inc/tim.h +controller-v2\fal_execution.o: ../User/lib/lcd/lcds.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\fal_execution.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\fal_execution.o: ../User/lib/menu/menu.h +controller-v2\fal_execution.o: ../User/board/inc/rtc_rx8010.h +controller-v2\fal_execution.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\fal_execution.o: ../User/board/inc/ntc_3950.h +controller-v2\fal_execution.o: ../User/board/inc/leds.h +controller-v2\fal_execution.o: ../User/system/inc/sys.h +controller-v2\fal_execution.o: ../User/lib/inc/cmac.h +controller-v2\fal_execution.o: ../User/lib/inc/aes.h diff --git a/MDK-ARM/controller-v2/fal_execution.o b/MDK-ARM/controller-v2/fal_execution.o new file mode 100644 index 0000000..a590e81 Binary files /dev/null and b/MDK-ARM/controller-v2/fal_execution.o differ diff --git a/MDK-ARM/controller-v2/fal_flash.d b/MDK-ARM/controller-v2/fal_flash.d new file mode 100644 index 0000000..da455b4 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_flash.d @@ -0,0 +1,74 @@ +controller-v2\fal_flash.o: ..\User\lib\flashdb\fal\fal_flash.c +controller-v2\fal_flash.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_flash.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_flash.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_flash.o: ../Core/Inc/main.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_flash.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_flash.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_flash.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_flash.o: ../User/lib/inc/lib.h +controller-v2\fal_flash.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_flash.o: ../User/lib/inc/malloc.h +controller-v2\fal_flash.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_flash.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_flash.o: ../User/lib/inc/lib.h +controller-v2\fal_flash.o: ../User/lib/inc/debug.h +controller-v2\fal_flash.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_flash.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_flash.o: ../User/lib/inc/clist.h +controller-v2\fal_flash.o: ../User/entity.h +controller-v2\fal_flash.o: ../User/system/bsp/adcs.h +controller-v2\fal_flash.o: ../User/application/inc/params.h +controller-v2\fal_flash.o: ../User/entity.h +controller-v2\fal_flash.o: ../User/application/inc/pdctrl.h +controller-v2\fal_flash.o: ../User/system/bsp/bsp.h +controller-v2\fal_flash.o: ../User/system/bsp/gpios.h +controller-v2\fal_flash.o: ../User/system/bsp/dacs.h +controller-v2\fal_flash.o: ../Core/Inc/dac.h +controller-v2\fal_flash.o: ../User/system/bsp/tims.h +controller-v2\fal_flash.o: ../User/system/bsp/pwms.h +controller-v2\fal_flash.o: ../User/system/bsp/uarts.h +controller-v2\fal_flash.o: ../User/system/bsp/eeprom.h +controller-v2\fal_flash.o: ../User/system/bsp/spis.h +controller-v2\fal_flash.o: ../User/system/bsp/i2cs.h +controller-v2\fal_flash.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_flash.o: ../User/application/inc/mode.h +controller-v2\fal_flash.o: ../User/application/inc/mode_dac.h +controller-v2\fal_flash.o: ../User/lib/inc/filter.h +controller-v2\fal_flash.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_flash.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_flash.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_flash.o: ../User/lib/control/inc/pid.h +controller-v2\fal_flash.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_flash.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_flash.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_flash.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_flash.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fal_flash.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h diff --git a/MDK-ARM/controller-v2/fal_flash.o b/MDK-ARM/controller-v2/fal_flash.o new file mode 100644 index 0000000..3a89cf0 Binary files /dev/null and b/MDK-ARM/controller-v2/fal_flash.o differ diff --git a/MDK-ARM/controller-v2/fal_partition.d b/MDK-ARM/controller-v2/fal_partition.d new file mode 100644 index 0000000..bb88066 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_partition.d @@ -0,0 +1,75 @@ +controller-v2\fal_partition.o: ..\User\lib\flashdb\fal\fal_partition.c +controller-v2\fal_partition.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_partition.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_partition.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_partition.o: ../Core/Inc/main.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_partition.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_partition.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_partition.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_partition.o: ../User/lib/inc/lib.h +controller-v2\fal_partition.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_partition.o: ../User/lib/inc/malloc.h +controller-v2\fal_partition.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_partition.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_partition.o: ../User/lib/inc/lib.h +controller-v2\fal_partition.o: ../User/lib/inc/debug.h +controller-v2\fal_partition.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_partition.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_partition.o: ../User/lib/inc/clist.h +controller-v2\fal_partition.o: ../User/entity.h +controller-v2\fal_partition.o: ../User/system/bsp/adcs.h +controller-v2\fal_partition.o: ../User/application/inc/params.h +controller-v2\fal_partition.o: ../User/entity.h +controller-v2\fal_partition.o: ../User/application/inc/pdctrl.h +controller-v2\fal_partition.o: ../User/system/bsp/bsp.h +controller-v2\fal_partition.o: ../User/system/bsp/gpios.h +controller-v2\fal_partition.o: ../User/system/bsp/dacs.h +controller-v2\fal_partition.o: ../Core/Inc/dac.h +controller-v2\fal_partition.o: ../User/system/bsp/tims.h +controller-v2\fal_partition.o: ../User/system/bsp/pwms.h +controller-v2\fal_partition.o: ../User/system/bsp/uarts.h +controller-v2\fal_partition.o: ../User/system/bsp/eeprom.h +controller-v2\fal_partition.o: ../User/system/bsp/spis.h +controller-v2\fal_partition.o: ../User/system/bsp/i2cs.h +controller-v2\fal_partition.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_partition.o: ../User/application/inc/mode.h +controller-v2\fal_partition.o: ../User/application/inc/mode_dac.h +controller-v2\fal_partition.o: ../User/lib/inc/filter.h +controller-v2\fal_partition.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_partition.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_partition.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_partition.o: ../User/lib/control/inc/pid.h +controller-v2\fal_partition.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_partition.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_partition.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_partition.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_partition.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fal_partition.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fal_partition.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h diff --git a/MDK-ARM/controller-v2/fal_partition.o b/MDK-ARM/controller-v2/fal_partition.o new file mode 100644 index 0000000..0821359 Binary files /dev/null and b/MDK-ARM/controller-v2/fal_partition.o differ diff --git a/MDK-ARM/controller-v2/fal_rtt.d b/MDK-ARM/controller-v2/fal_rtt.d new file mode 100644 index 0000000..9f899c2 --- /dev/null +++ b/MDK-ARM/controller-v2/fal_rtt.d @@ -0,0 +1,73 @@ +controller-v2\fal_rtt.o: ..\User\lib\flashdb\fal\fal_rtt.c +controller-v2\fal_rtt.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fal_rtt.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fal_rtt.o: ../User/board/inc/eeprom_m95.h +controller-v2\fal_rtt.o: ../Core/Inc/main.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fal_rtt.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fal_rtt.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fal_rtt.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fal_rtt.o: ../User/lib/inc/lib.h +controller-v2\fal_rtt.o: ../User/lib/inc/data_type_def.h +controller-v2\fal_rtt.o: ../User/lib/inc/malloc.h +controller-v2\fal_rtt.o: ../User/lib/inc/data_analysis.h +controller-v2\fal_rtt.o: ../User/lib/inc/osel_arch.h +controller-v2\fal_rtt.o: ../User/lib/inc/lib.h +controller-v2\fal_rtt.o: ../User/lib/inc/debug.h +controller-v2\fal_rtt.o: ../User/lib/inc/sqqueue.h +controller-v2\fal_rtt.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fal_rtt.o: ../User/lib/inc/clist.h +controller-v2\fal_rtt.o: ../User/entity.h +controller-v2\fal_rtt.o: ../User/system/bsp/adcs.h +controller-v2\fal_rtt.o: ../User/application/inc/params.h +controller-v2\fal_rtt.o: ../User/entity.h +controller-v2\fal_rtt.o: ../User/application/inc/pdctrl.h +controller-v2\fal_rtt.o: ../User/system/bsp/bsp.h +controller-v2\fal_rtt.o: ../User/system/bsp/gpios.h +controller-v2\fal_rtt.o: ../User/system/bsp/dacs.h +controller-v2\fal_rtt.o: ../Core/Inc/dac.h +controller-v2\fal_rtt.o: ../User/system/bsp/tims.h +controller-v2\fal_rtt.o: ../User/system/bsp/pwms.h +controller-v2\fal_rtt.o: ../User/system/bsp/uarts.h +controller-v2\fal_rtt.o: ../User/system/bsp/eeprom.h +controller-v2\fal_rtt.o: ../User/system/bsp/spis.h +controller-v2\fal_rtt.o: ../User/system/bsp/i2cs.h +controller-v2\fal_rtt.o: ../User/system/bsp/iwdgs.h +controller-v2\fal_rtt.o: ../User/application/inc/mode.h +controller-v2\fal_rtt.o: ../User/application/inc/mode_dac.h +controller-v2\fal_rtt.o: ../User/lib/inc/filter.h +controller-v2\fal_rtt.o: ../User/application/inc/mode_pwm.h +controller-v2\fal_rtt.o: ../User/application/inc/mode_pwmp.h +controller-v2\fal_rtt.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fal_rtt.o: ../User/lib/control/inc/pid.h +controller-v2\fal_rtt.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_c.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_g.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_x.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fal_rtt.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fal_rtt.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fal_rtt.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fal_rtt.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h diff --git a/MDK-ARM/controller-v2/fal_rtt.o b/MDK-ARM/controller-v2/fal_rtt.o new file mode 100644 index 0000000..d05f15d Binary files /dev/null and b/MDK-ARM/controller-v2/fal_rtt.o differ diff --git a/MDK-ARM/controller-v2/fdb.d b/MDK-ARM/controller-v2/fdb.d new file mode 100644 index 0000000..ec958e9 --- /dev/null +++ b/MDK-ARM/controller-v2/fdb.d @@ -0,0 +1,81 @@ +controller-v2\fdb.o: ..\User\lib\flashdb\fdb.c +controller-v2\fdb.o: ../User/lib/flashdb/flashdb.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fdb.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fdb.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fdb.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fdb.o: ../User/board/inc/eeprom_m95.h +controller-v2\fdb.o: ../Core/Inc/main.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fdb.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fdb.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fdb.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fdb.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fdb.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fdb.o: ../User/lib/inc/lib.h +controller-v2\fdb.o: ../User/lib/inc/data_type_def.h +controller-v2\fdb.o: ../User/lib/inc/malloc.h +controller-v2\fdb.o: ../User/lib/inc/data_analysis.h +controller-v2\fdb.o: ../User/lib/inc/osel_arch.h +controller-v2\fdb.o: ../User/lib/inc/lib.h +controller-v2\fdb.o: ../User/lib/inc/debug.h +controller-v2\fdb.o: ../User/lib/inc/sqqueue.h +controller-v2\fdb.o: ../User/lib/inc/clist.h +controller-v2\fdb.o: ../User/entity.h +controller-v2\fdb.o: ../User/system/bsp/adcs.h +controller-v2\fdb.o: ../User/application/inc/params.h +controller-v2\fdb.o: ../User/entity.h +controller-v2\fdb.o: ../User/application/inc/pdctrl.h +controller-v2\fdb.o: ../User/system/bsp/bsp.h +controller-v2\fdb.o: ../User/system/bsp/gpios.h +controller-v2\fdb.o: ../User/system/bsp/dacs.h +controller-v2\fdb.o: ../Core/Inc/dac.h +controller-v2\fdb.o: ../User/system/bsp/tims.h +controller-v2\fdb.o: ../User/system/bsp/pwms.h +controller-v2\fdb.o: ../User/system/bsp/uarts.h +controller-v2\fdb.o: ../User/system/bsp/eeprom.h +controller-v2\fdb.o: ../User/system/bsp/spis.h +controller-v2\fdb.o: ../User/system/bsp/i2cs.h +controller-v2\fdb.o: ../User/system/bsp/iwdgs.h +controller-v2\fdb.o: ../User/application/inc/mode.h +controller-v2\fdb.o: ../User/application/inc/mode_dac.h +controller-v2\fdb.o: ../User/lib/inc/filter.h +controller-v2\fdb.o: ../User/application/inc/mode_pwm.h +controller-v2\fdb.o: ../User/application/inc/mode_pwmp.h +controller-v2\fdb.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fdb.o: ../User/lib/control/inc/pid.h +controller-v2\fdb.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_c.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_g.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_x.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fdb.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fdb.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fdb.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fdb.o: ../User/lib/flashdb/fdb_low_lvl.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\inttypes.h diff --git a/MDK-ARM/controller-v2/fdb.o b/MDK-ARM/controller-v2/fdb.o new file mode 100644 index 0000000..49b1565 Binary files /dev/null and b/MDK-ARM/controller-v2/fdb.o differ diff --git a/MDK-ARM/controller-v2/fdb_file.d b/MDK-ARM/controller-v2/fdb_file.d new file mode 100644 index 0000000..a2a6a53 --- /dev/null +++ b/MDK-ARM/controller-v2/fdb_file.d @@ -0,0 +1,80 @@ +controller-v2\fdb_file.o: ..\User\lib\flashdb\fdb_file.c +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fdb_file.o: ../User/lib/flashdb/flashdb.h +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fdb_file.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fdb_file.o: ../User/board/inc/eeprom_m95.h +controller-v2\fdb_file.o: ../Core/Inc/main.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fdb_file.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fdb_file.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fdb_file.o: ../User/lib/inc/lib.h +controller-v2\fdb_file.o: ../User/lib/inc/data_type_def.h +controller-v2\fdb_file.o: ../User/lib/inc/malloc.h +controller-v2\fdb_file.o: ../User/lib/inc/data_analysis.h +controller-v2\fdb_file.o: ../User/lib/inc/osel_arch.h +controller-v2\fdb_file.o: ../User/lib/inc/lib.h +controller-v2\fdb_file.o: ../User/lib/inc/debug.h +controller-v2\fdb_file.o: ../User/lib/inc/sqqueue.h +controller-v2\fdb_file.o: ../User/lib/inc/clist.h +controller-v2\fdb_file.o: ../User/entity.h +controller-v2\fdb_file.o: ../User/system/bsp/adcs.h +controller-v2\fdb_file.o: ../User/application/inc/params.h +controller-v2\fdb_file.o: ../User/entity.h +controller-v2\fdb_file.o: ../User/application/inc/pdctrl.h +controller-v2\fdb_file.o: ../User/system/bsp/bsp.h +controller-v2\fdb_file.o: ../User/system/bsp/gpios.h +controller-v2\fdb_file.o: ../User/system/bsp/dacs.h +controller-v2\fdb_file.o: ../Core/Inc/dac.h +controller-v2\fdb_file.o: ../User/system/bsp/tims.h +controller-v2\fdb_file.o: ../User/system/bsp/pwms.h +controller-v2\fdb_file.o: ../User/system/bsp/uarts.h +controller-v2\fdb_file.o: ../User/system/bsp/eeprom.h +controller-v2\fdb_file.o: ../User/system/bsp/spis.h +controller-v2\fdb_file.o: ../User/system/bsp/i2cs.h +controller-v2\fdb_file.o: ../User/system/bsp/iwdgs.h +controller-v2\fdb_file.o: ../User/application/inc/mode.h +controller-v2\fdb_file.o: ../User/application/inc/mode_dac.h +controller-v2\fdb_file.o: ../User/lib/inc/filter.h +controller-v2\fdb_file.o: ../User/application/inc/mode_pwm.h +controller-v2\fdb_file.o: ../User/application/inc/mode_pwmp.h +controller-v2\fdb_file.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fdb_file.o: ../User/lib/control/inc/pid.h +controller-v2\fdb_file.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_c.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_g.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_x.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_file.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fdb_file.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fdb_file.o: ../User/lib/flashdb/fdb_low_lvl.h diff --git a/MDK-ARM/controller-v2/fdb_file.o b/MDK-ARM/controller-v2/fdb_file.o new file mode 100644 index 0000000..029fa91 Binary files /dev/null and b/MDK-ARM/controller-v2/fdb_file.o differ diff --git a/MDK-ARM/controller-v2/fdb_kvdb.d b/MDK-ARM/controller-v2/fdb_kvdb.d new file mode 100644 index 0000000..832538f --- /dev/null +++ b/MDK-ARM/controller-v2/fdb_kvdb.d @@ -0,0 +1,81 @@ +controller-v2\fdb_kvdb.o: ..\User\lib\flashdb\fdb_kvdb.c +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\inttypes.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/flashdb.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fdb_kvdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fdb_kvdb.o: ../User/board/inc/eeprom_m95.h +controller-v2\fdb_kvdb.o: ../Core/Inc/main.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fdb_kvdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fdb_kvdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/lib.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/data_type_def.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/malloc.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/data_analysis.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/osel_arch.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/lib.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/debug.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/sqqueue.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/clist.h +controller-v2\fdb_kvdb.o: ../User/entity.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/adcs.h +controller-v2\fdb_kvdb.o: ../User/application/inc/params.h +controller-v2\fdb_kvdb.o: ../User/entity.h +controller-v2\fdb_kvdb.o: ../User/application/inc/pdctrl.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/bsp.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/gpios.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/dacs.h +controller-v2\fdb_kvdb.o: ../Core/Inc/dac.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/tims.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/pwms.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/uarts.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/eeprom.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/spis.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/i2cs.h +controller-v2\fdb_kvdb.o: ../User/system/bsp/iwdgs.h +controller-v2\fdb_kvdb.o: ../User/application/inc/mode.h +controller-v2\fdb_kvdb.o: ../User/application/inc/mode_dac.h +controller-v2\fdb_kvdb.o: ../User/lib/inc/filter.h +controller-v2\fdb_kvdb.o: ../User/application/inc/mode_pwm.h +controller-v2\fdb_kvdb.o: ../User/application/inc/mode_pwmp.h +controller-v2\fdb_kvdb.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fdb_kvdb.o: ../User/lib/control/inc/pid.h +controller-v2\fdb_kvdb.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_c.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_g.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_x.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_kvdb.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fdb_kvdb.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fdb_kvdb.o: ../User/lib/flashdb/fdb_low_lvl.h diff --git a/MDK-ARM/controller-v2/fdb_kvdb.o b/MDK-ARM/controller-v2/fdb_kvdb.o new file mode 100644 index 0000000..2874dee Binary files /dev/null and b/MDK-ARM/controller-v2/fdb_kvdb.o differ diff --git a/MDK-ARM/controller-v2/fdb_tsdb.d b/MDK-ARM/controller-v2/fdb_tsdb.d new file mode 100644 index 0000000..dd0dffb --- /dev/null +++ b/MDK-ARM/controller-v2/fdb_tsdb.d @@ -0,0 +1,81 @@ +controller-v2\fdb_tsdb.o: ..\User\lib\flashdb\fdb_tsdb.c +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\inttypes.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/flashdb.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fdb_tsdb.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fdb_tsdb.o: ../User/board/inc/eeprom_m95.h +controller-v2\fdb_tsdb.o: ../Core/Inc/main.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fdb_tsdb.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fdb_tsdb.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/lib.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/data_type_def.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/malloc.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/data_analysis.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/osel_arch.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/lib.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/debug.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/sqqueue.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/clist.h +controller-v2\fdb_tsdb.o: ../User/entity.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/adcs.h +controller-v2\fdb_tsdb.o: ../User/application/inc/params.h +controller-v2\fdb_tsdb.o: ../User/entity.h +controller-v2\fdb_tsdb.o: ../User/application/inc/pdctrl.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/bsp.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/gpios.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/dacs.h +controller-v2\fdb_tsdb.o: ../Core/Inc/dac.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/tims.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/pwms.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/uarts.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/eeprom.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/spis.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/i2cs.h +controller-v2\fdb_tsdb.o: ../User/system/bsp/iwdgs.h +controller-v2\fdb_tsdb.o: ../User/application/inc/mode.h +controller-v2\fdb_tsdb.o: ../User/application/inc/mode_dac.h +controller-v2\fdb_tsdb.o: ../User/lib/inc/filter.h +controller-v2\fdb_tsdb.o: ../User/application/inc/mode_pwm.h +controller-v2\fdb_tsdb.o: ../User/application/inc/mode_pwmp.h +controller-v2\fdb_tsdb.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fdb_tsdb.o: ../User/lib/control/inc/pid.h +controller-v2\fdb_tsdb.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_c.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_g.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_x.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_tsdb.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fdb_tsdb.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fdb_tsdb.o: ../User/lib/flashdb/fdb_low_lvl.h diff --git a/MDK-ARM/controller-v2/fdb_tsdb.o b/MDK-ARM/controller-v2/fdb_tsdb.o new file mode 100644 index 0000000..969998b Binary files /dev/null and b/MDK-ARM/controller-v2/fdb_tsdb.o differ diff --git a/MDK-ARM/controller-v2/fdb_utils.d b/MDK-ARM/controller-v2/fdb_utils.d new file mode 100644 index 0000000..9badc33 --- /dev/null +++ b/MDK-ARM/controller-v2/fdb_utils.d @@ -0,0 +1,80 @@ +controller-v2\fdb_utils.o: ..\User\lib\flashdb\fdb_utils.c +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/flashdb.h +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\fdb_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fal/fal.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\fdb_utils.o: ../User/board/inc/eeprom_m95.h +controller-v2\fdb_utils.o: ../Core/Inc/main.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\fdb_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\fdb_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\fdb_utils.o: ../User/lib/inc/lib.h +controller-v2\fdb_utils.o: ../User/lib/inc/data_type_def.h +controller-v2\fdb_utils.o: ../User/lib/inc/malloc.h +controller-v2\fdb_utils.o: ../User/lib/inc/data_analysis.h +controller-v2\fdb_utils.o: ../User/lib/inc/osel_arch.h +controller-v2\fdb_utils.o: ../User/lib/inc/lib.h +controller-v2\fdb_utils.o: ../User/lib/inc/debug.h +controller-v2\fdb_utils.o: ../User/lib/inc/sqqueue.h +controller-v2\fdb_utils.o: ../User/lib/inc/clist.h +controller-v2\fdb_utils.o: ../User/entity.h +controller-v2\fdb_utils.o: ../User/system/bsp/adcs.h +controller-v2\fdb_utils.o: ../User/application/inc/params.h +controller-v2\fdb_utils.o: ../User/entity.h +controller-v2\fdb_utils.o: ../User/application/inc/pdctrl.h +controller-v2\fdb_utils.o: ../User/system/bsp/bsp.h +controller-v2\fdb_utils.o: ../User/system/bsp/gpios.h +controller-v2\fdb_utils.o: ../User/system/bsp/dacs.h +controller-v2\fdb_utils.o: ../Core/Inc/dac.h +controller-v2\fdb_utils.o: ../User/system/bsp/tims.h +controller-v2\fdb_utils.o: ../User/system/bsp/pwms.h +controller-v2\fdb_utils.o: ../User/system/bsp/uarts.h +controller-v2\fdb_utils.o: ../User/system/bsp/eeprom.h +controller-v2\fdb_utils.o: ../User/system/bsp/spis.h +controller-v2\fdb_utils.o: ../User/system/bsp/i2cs.h +controller-v2\fdb_utils.o: ../User/system/bsp/iwdgs.h +controller-v2\fdb_utils.o: ../User/application/inc/mode.h +controller-v2\fdb_utils.o: ../User/application/inc/mode_dac.h +controller-v2\fdb_utils.o: ../User/lib/inc/filter.h +controller-v2\fdb_utils.o: ../User/application/inc/mode_pwm.h +controller-v2\fdb_utils.o: ../User/application/inc/mode_pwmp.h +controller-v2\fdb_utils.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\fdb_utils.o: ../User/lib/control/inc/pid.h +controller-v2\fdb_utils.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_c.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_g.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_x.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_zh.h +controller-v2\fdb_utils.o: ../User/lib/control/custom/pid_hd.h +controller-v2\fdb_utils.o: ../User/board/inc/eeprom_fm24.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fdb_def.h +controller-v2\fdb_utils.o: ../User/lib/flashdb/fdb_low_lvl.h diff --git a/MDK-ARM/controller-v2/fdb_utils.o b/MDK-ARM/controller-v2/fdb_utils.o new file mode 100644 index 0000000..6683845 Binary files /dev/null and b/MDK-ARM/controller-v2/fdb_utils.o differ diff --git a/MDK-ARM/controller-v2/filter.d b/MDK-ARM/controller-v2/filter.d new file mode 100644 index 0000000..2819569 --- /dev/null +++ b/MDK-ARM/controller-v2/filter.d @@ -0,0 +1,22 @@ +controller-v2\filter.o: ..\User\lib\src\filter.c +controller-v2\filter.o: ../User/lib/inc/filter.h +controller-v2\filter.o: ../User/lib/inc/lib.h +controller-v2\filter.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\filter.o: ../User/lib/inc/data_type_def.h +controller-v2\filter.o: ../User/lib/inc/malloc.h +controller-v2\filter.o: ../User/lib/inc/data_analysis.h +controller-v2\filter.o: ../User/lib/inc/osel_arch.h +controller-v2\filter.o: ../User/lib/inc/lib.h +controller-v2\filter.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\filter.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\filter.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\filter.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\filter.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\filter.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\filter.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\filter.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\filter.o: ../User/lib/inc/debug.h +controller-v2\filter.o: ../User/lib/inc/sqqueue.h +controller-v2\filter.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\filter.o: ../User/lib/inc/clist.h +controller-v2\filter.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h diff --git a/MDK-ARM/controller-v2/filter.o b/MDK-ARM/controller-v2/filter.o new file mode 100644 index 0000000..6b54042 Binary files /dev/null and b/MDK-ARM/controller-v2/filter.o differ diff --git a/MDK-ARM/controller-v2/flow_core.d b/MDK-ARM/controller-v2/flow_core.d new file mode 100644 index 0000000..fb45af8 --- /dev/null +++ b/MDK-ARM/controller-v2/flow_core.d @@ -0,0 +1,5 @@ +controller-v2\flow_core.o: ..\User\lib\flow\flow_core.c +controller-v2\flow_core.o: ..\User\lib\flow\flow.h +controller-v2\flow_core.o: ..\User\lib\flow\flow_def.h +controller-v2\flow_core.o: ..\User\lib\flow\flow_core.h +controller-v2\flow_core.o: ..\User\lib\flow\flow_sem.h diff --git a/MDK-ARM/controller-v2/flow_core.o b/MDK-ARM/controller-v2/flow_core.o new file mode 100644 index 0000000..46eb97b Binary files /dev/null and b/MDK-ARM/controller-v2/flow_core.o differ diff --git a/MDK-ARM/controller-v2/gpio.d b/MDK-ARM/controller-v2/gpio.d new file mode 100644 index 0000000..beab0f4 --- /dev/null +++ b/MDK-ARM/controller-v2/gpio.d @@ -0,0 +1,38 @@ +controller-v2\gpio.o: ../Core/Src/gpio.c +controller-v2\gpio.o: ../Core/Inc/gpio.h +controller-v2\gpio.o: ../Core/Inc/main.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\gpio.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\gpio.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\gpio.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\gpio.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\gpio.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\gpio.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\gpio.o: ../User/lib/inc/lib.h +controller-v2\gpio.o: ../User/lib/inc/data_type_def.h +controller-v2\gpio.o: ../User/lib/inc/malloc.h +controller-v2\gpio.o: ../User/lib/inc/data_analysis.h +controller-v2\gpio.o: ../User/lib/inc/osel_arch.h +controller-v2\gpio.o: ../User/lib/inc/lib.h +controller-v2\gpio.o: ../User/lib/inc/debug.h +controller-v2\gpio.o: ../User/lib/inc/sqqueue.h +controller-v2\gpio.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\gpio.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/gpio.o b/MDK-ARM/controller-v2/gpio.o new file mode 100644 index 0000000..bd831c5 Binary files /dev/null and b/MDK-ARM/controller-v2/gpio.o differ diff --git a/MDK-ARM/controller-v2/gpios.d b/MDK-ARM/controller-v2/gpios.d new file mode 100644 index 0000000..e421335 --- /dev/null +++ b/MDK-ARM/controller-v2/gpios.d @@ -0,0 +1,39 @@ +controller-v2\gpios.o: ..\User\system\bsp\gpios.c +controller-v2\gpios.o: ..\User\system\bsp\gpios.h +controller-v2\gpios.o: ../User/lib/inc/lib.h +controller-v2\gpios.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\gpios.o: ../User/lib/inc/data_type_def.h +controller-v2\gpios.o: ../User/lib/inc/malloc.h +controller-v2\gpios.o: ../User/lib/inc/data_analysis.h +controller-v2\gpios.o: ../User/lib/inc/osel_arch.h +controller-v2\gpios.o: ../User/lib/inc/lib.h +controller-v2\gpios.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\gpios.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\gpios.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\gpios.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\gpios.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\gpios.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\gpios.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\gpios.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\gpios.o: ../User/lib/inc/debug.h +controller-v2\gpios.o: ../User/lib/inc/sqqueue.h +controller-v2\gpios.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\gpios.o: ../User/lib/inc/clist.h +controller-v2\gpios.o: ../Core/Inc/main.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\gpios.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\gpios.o: ../Core/Inc/gpio.h diff --git a/MDK-ARM/controller-v2/gpios.o b/MDK-ARM/controller-v2/gpios.o new file mode 100644 index 0000000..440a9dd Binary files /dev/null and b/MDK-ARM/controller-v2/gpios.o differ diff --git a/MDK-ARM/controller-v2/i2c.d b/MDK-ARM/controller-v2/i2c.d new file mode 100644 index 0000000..fd3236c --- /dev/null +++ b/MDK-ARM/controller-v2/i2c.d @@ -0,0 +1,38 @@ +controller-v2\i2c.o: ../Core/Src/i2c.c +controller-v2\i2c.o: ../Core/Inc/i2c.h +controller-v2\i2c.o: ../Core/Inc/main.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\i2c.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\i2c.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\i2c.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\i2c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\i2c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\i2c.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\i2c.o: ../User/lib/inc/lib.h +controller-v2\i2c.o: ../User/lib/inc/data_type_def.h +controller-v2\i2c.o: ../User/lib/inc/malloc.h +controller-v2\i2c.o: ../User/lib/inc/data_analysis.h +controller-v2\i2c.o: ../User/lib/inc/osel_arch.h +controller-v2\i2c.o: ../User/lib/inc/lib.h +controller-v2\i2c.o: ../User/lib/inc/debug.h +controller-v2\i2c.o: ../User/lib/inc/sqqueue.h +controller-v2\i2c.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\i2c.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/i2c.o b/MDK-ARM/controller-v2/i2c.o new file mode 100644 index 0000000..58b9089 Binary files /dev/null and b/MDK-ARM/controller-v2/i2c.o differ diff --git a/MDK-ARM/controller-v2/i2cs.d b/MDK-ARM/controller-v2/i2cs.d new file mode 100644 index 0000000..8716b73 --- /dev/null +++ b/MDK-ARM/controller-v2/i2cs.d @@ -0,0 +1,39 @@ +controller-v2\i2cs.o: ..\User\system\bsp\i2cs.c +controller-v2\i2cs.o: ..\User\system\bsp\i2cs.h +controller-v2\i2cs.o: ../User/lib/inc/lib.h +controller-v2\i2cs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\i2cs.o: ../User/lib/inc/data_type_def.h +controller-v2\i2cs.o: ../User/lib/inc/malloc.h +controller-v2\i2cs.o: ../User/lib/inc/data_analysis.h +controller-v2\i2cs.o: ../User/lib/inc/osel_arch.h +controller-v2\i2cs.o: ../User/lib/inc/lib.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\i2cs.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\i2cs.o: ../User/lib/inc/debug.h +controller-v2\i2cs.o: ../User/lib/inc/sqqueue.h +controller-v2\i2cs.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\i2cs.o: ../User/lib/inc/clist.h +controller-v2\i2cs.o: ..\User\system\bsp\gpios.h +controller-v2\i2cs.o: ../Core/Inc/main.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\i2cs.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h diff --git a/MDK-ARM/controller-v2/i2cs.o b/MDK-ARM/controller-v2/i2cs.o new file mode 100644 index 0000000..9aec840 Binary files /dev/null and b/MDK-ARM/controller-v2/i2cs.o differ diff --git a/MDK-ARM/controller-v2/key.d b/MDK-ARM/controller-v2/key.d new file mode 100644 index 0000000..8cc4b2a --- /dev/null +++ b/MDK-ARM/controller-v2/key.d @@ -0,0 +1,53 @@ +controller-v2\key.o: ..\User\application\src\key.c +controller-v2\key.o: ..\User\application\src\../inc/key.h +controller-v2\key.o: ../User/lib/inc/lib.h +controller-v2\key.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\key.o: ../User/lib/inc/data_type_def.h +controller-v2\key.o: ../User/lib/inc/malloc.h +controller-v2\key.o: ../User/lib/inc/data_analysis.h +controller-v2\key.o: ../User/lib/inc/osel_arch.h +controller-v2\key.o: ../User/lib/inc/lib.h +controller-v2\key.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\key.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\key.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\key.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\key.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\key.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\key.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\key.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\key.o: ../User/lib/inc/debug.h +controller-v2\key.o: ../User/lib/inc/sqqueue.h +controller-v2\key.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\key.o: ../User/lib/inc/clist.h +controller-v2\key.o: ../User/system/inc/btn.h +controller-v2\key.o: ../User/system/bsp/bsp.h +controller-v2\key.o: ../User/system/bsp/gpios.h +controller-v2\key.o: ../Core/Inc/main.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\key.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\key.o: ../User/system/bsp/adcs.h +controller-v2\key.o: ../User/system/bsp/dacs.h +controller-v2\key.o: ../Core/Inc/dac.h +controller-v2\key.o: ../User/system/bsp/tims.h +controller-v2\key.o: ../User/system/bsp/pwms.h +controller-v2\key.o: ../User/system/bsp/uarts.h +controller-v2\key.o: ../User/system/bsp/eeprom.h +controller-v2\key.o: ../User/system/bsp/spis.h +controller-v2\key.o: ../User/system/bsp/i2cs.h +controller-v2\key.o: ../User/system/bsp/iwdgs.h +controller-v2\key.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h +controller-v2\key.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/key.o b/MDK-ARM/controller-v2/key.o new file mode 100644 index 0000000..12b74a4 Binary files /dev/null and b/MDK-ARM/controller-v2/key.o differ diff --git a/MDK-ARM/controller-v2/leds.d b/MDK-ARM/controller-v2/leds.d new file mode 100644 index 0000000..6d0815b --- /dev/null +++ b/MDK-ARM/controller-v2/leds.d @@ -0,0 +1,39 @@ +controller-v2\leds.o: ..\User\board\src\leds.c +controller-v2\leds.o: ../User/board/inc/leds.h +controller-v2\leds.o: ../User/lib/inc/lib.h +controller-v2\leds.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\leds.o: ../User/lib/inc/data_type_def.h +controller-v2\leds.o: ../User/lib/inc/malloc.h +controller-v2\leds.o: ../User/lib/inc/data_analysis.h +controller-v2\leds.o: ../User/lib/inc/osel_arch.h +controller-v2\leds.o: ../User/lib/inc/lib.h +controller-v2\leds.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\leds.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\leds.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\leds.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\leds.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\leds.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\leds.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\leds.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\leds.o: ../User/lib/inc/debug.h +controller-v2\leds.o: ../User/lib/inc/sqqueue.h +controller-v2\leds.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\leds.o: ../User/lib/inc/clist.h +controller-v2\leds.o: ../User/system/bsp/gpios.h +controller-v2\leds.o: ../Core/Inc/main.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\leds.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h diff --git a/MDK-ARM/controller-v2/leds.o b/MDK-ARM/controller-v2/leds.o new file mode 100644 index 0000000..e23a0b8 Binary files /dev/null and b/MDK-ARM/controller-v2/leds.o differ diff --git a/MDK-ARM/controller-v2/lib.d b/MDK-ARM/controller-v2/lib.d new file mode 100644 index 0000000..ffee720 --- /dev/null +++ b/MDK-ARM/controller-v2/lib.d @@ -0,0 +1,22 @@ +controller-v2\lib.o: ..\User\lib\src\lib.c +controller-v2\lib.o: ..\User\lib\src\../inc/lib.h +controller-v2\lib.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\lib.o: ..\User\lib\src\../inc/data_type_def.h +controller-v2\lib.o: ..\User\lib\src\../inc/malloc.h +controller-v2\lib.o: ..\User\lib\src\../inc/data_analysis.h +controller-v2\lib.o: ..\User\lib\src\../inc/osel_arch.h +controller-v2\lib.o: ..\User\lib\src\../inc/lib.h +controller-v2\lib.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\lib.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\lib.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\lib.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\lib.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\lib.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\lib.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\lib.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\lib.o: ..\User\lib\src\../inc/debug.h +controller-v2\lib.o: ..\User\lib\src\../inc/sqqueue.h +controller-v2\lib.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\lib.o: ..\User\lib\src\../inc/clist.h +controller-v2\lib.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\lib.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h diff --git a/MDK-ARM/controller-v2/lib.o b/MDK-ARM/controller-v2/lib.o new file mode 100644 index 0000000..536c990 Binary files /dev/null and b/MDK-ARM/controller-v2/lib.o differ diff --git a/MDK-ARM/controller-v2/main.d b/MDK-ARM/controller-v2/main.d new file mode 100644 index 0000000..eb86061 --- /dev/null +++ b/MDK-ARM/controller-v2/main.d @@ -0,0 +1,106 @@ +controller-v2\main.o: ../Core/Src/main.c +controller-v2\main.o: ../Core/Inc/main.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\main.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\main.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\main.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\main.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\main.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\main.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\main.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\main.o: ../User/lib/inc/lib.h +controller-v2\main.o: ../User/lib/inc/data_type_def.h +controller-v2\main.o: ../User/lib/inc/malloc.h +controller-v2\main.o: ../User/lib/inc/data_analysis.h +controller-v2\main.o: ../User/lib/inc/osel_arch.h +controller-v2\main.o: ../User/lib/inc/lib.h +controller-v2\main.o: ../User/lib/inc/debug.h +controller-v2\main.o: ../User/lib/inc/sqqueue.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\main.o: ../User/lib/inc/clist.h +controller-v2\main.o: ../Core/Inc/adc.h +controller-v2\main.o: ../Core/Inc/dac.h +controller-v2\main.o: ../Core/Inc/dma.h +controller-v2\main.o: ../Core/Inc/i2c.h +controller-v2\main.o: ../Core/Inc/spi.h +controller-v2\main.o: ../Core/Inc/tim.h +controller-v2\main.o: ../Core/Inc/usart.h +controller-v2\main.o: ../Core/Inc/gpio.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\main.o: ../User/system/bsp/bsp.h +controller-v2\main.o: ../User/system/bsp/gpios.h +controller-v2\main.o: ../User/system/bsp/adcs.h +controller-v2\main.o: ../User/system/bsp/dacs.h +controller-v2\main.o: ../User/system/bsp/tims.h +controller-v2\main.o: ../User/system/bsp/pwms.h +controller-v2\main.o: ../User/system/bsp/uarts.h +controller-v2\main.o: ../User/system/bsp/eeprom.h +controller-v2\main.o: ../User/system/bsp/spis.h +controller-v2\main.o: ../User/system/bsp/i2cs.h +controller-v2\main.o: ../User/system/bsp/iwdgs.h +controller-v2\main.o: ../User/system/inc/delay.h +controller-v2\main.o: ../User/system/inc/sys.h +controller-v2\main.o: ../User/board/inc/board.h +controller-v2\main.o: ../User/lib/lcd/lcds.h +controller-v2\main.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\main.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\main.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\main.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\main.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\main.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\main.o: ../User/lib/menu/menu.h +controller-v2\main.o: ../User/board/inc/rtc_rx8010.h +controller-v2\main.o: ../User/board/inc/eeprom_m95.h +controller-v2\main.o: ../User/entity.h +controller-v2\main.o: ../User/application/inc/params.h +controller-v2\main.o: ../User/entity.h +controller-v2\main.o: ../User/application/inc/pdctrl.h +controller-v2\main.o: ../User/application/inc/mode.h +controller-v2\main.o: ../User/application/inc/mode_dac.h +controller-v2\main.o: ../User/lib/inc/filter.h +controller-v2\main.o: ../User/application/inc/mode_pwm.h +controller-v2\main.o: ../User/application/inc/mode_pwmp.h +controller-v2\main.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\main.o: ../User/lib/control/inc/pid.h +controller-v2\main.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\main.o: ../User/lib/control/custom/pid_c.h +controller-v2\main.o: ../User/lib/control/custom/pid_g.h +controller-v2\main.o: ../User/lib/control/custom/pid_x.h +controller-v2\main.o: ../User/lib/control/custom/pid_zh.h +controller-v2\main.o: ../User/lib/control/custom/pid_zh.h +controller-v2\main.o: ../User/lib/control/custom/pid_hd.h +controller-v2\main.o: ../User/board/inc/eeprom_fm24.h +controller-v2\main.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\main.o: ../User/board/inc/ntc_3950.h +controller-v2\main.o: ../User/board/inc/leds.h +controller-v2\main.o: ../User/app.h +controller-v2\main.o: ../User/application/inc/fal_execution.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\main.o: ../User/lib/flashdb/fal/fal.h +controller-v2\main.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\main.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\main.o: ../User/lib/flashdb/flashdb.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\main.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\main.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\main.o: ../User/lib/flashdb/fdb_def.h +controller-v2\main.o: ../User/application/inc/key.h +controller-v2\main.o: ../User/system/inc/btn.h +controller-v2\main.o: ../User/application/inc/convert.h diff --git a/MDK-ARM/controller-v2/main.o b/MDK-ARM/controller-v2/main.o new file mode 100644 index 0000000..4711221 Binary files /dev/null and b/MDK-ARM/controller-v2/main.o differ diff --git a/MDK-ARM/controller-v2/malloc.d b/MDK-ARM/controller-v2/malloc.d new file mode 100644 index 0000000..ea793e9 --- /dev/null +++ b/MDK-ARM/controller-v2/malloc.d @@ -0,0 +1,4 @@ +controller-v2\malloc.o: ..\User\lib\src\malloc.c +controller-v2\malloc.o: ..\User\lib\src\../inc/data_type_def.h +controller-v2\malloc.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\malloc.o: ..\User\lib\src\../inc/malloc.h diff --git a/MDK-ARM/controller-v2/malloc.o b/MDK-ARM/controller-v2/malloc.o new file mode 100644 index 0000000..ff194d4 Binary files /dev/null and b/MDK-ARM/controller-v2/malloc.o differ diff --git a/MDK-ARM/controller-v2/mode.d b/MDK-ARM/controller-v2/mode.d new file mode 100644 index 0000000..ab3077a --- /dev/null +++ b/MDK-ARM/controller-v2/mode.d @@ -0,0 +1,101 @@ +controller-v2\mode.o: ..\User\application\src\mode.c +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h +controller-v2\mode.o: ../User/app.h +controller-v2\mode.o: ../Core/Inc/main.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\mode.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\mode.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\mode.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\mode.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\mode.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\mode.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\mode.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\mode.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\mode.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\mode.o: ../User/lib/inc/lib.h +controller-v2\mode.o: ../User/lib/inc/data_type_def.h +controller-v2\mode.o: ../User/lib/inc/malloc.h +controller-v2\mode.o: ../User/lib/inc/data_analysis.h +controller-v2\mode.o: ../User/lib/inc/osel_arch.h +controller-v2\mode.o: ../User/lib/inc/lib.h +controller-v2\mode.o: ../User/lib/inc/debug.h +controller-v2\mode.o: ../User/lib/inc/sqqueue.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\mode.o: ../User/lib/inc/clist.h +controller-v2\mode.o: ../User/board/inc/board.h +controller-v2\mode.o: ../User/system/bsp/bsp.h +controller-v2\mode.o: ../User/system/bsp/gpios.h +controller-v2\mode.o: ../User/system/bsp/adcs.h +controller-v2\mode.o: ../User/system/bsp/dacs.h +controller-v2\mode.o: ../Core/Inc/dac.h +controller-v2\mode.o: ../User/system/bsp/tims.h +controller-v2\mode.o: ../User/system/bsp/pwms.h +controller-v2\mode.o: ../User/system/bsp/uarts.h +controller-v2\mode.o: ../User/system/bsp/eeprom.h +controller-v2\mode.o: ../User/system/bsp/spis.h +controller-v2\mode.o: ../User/system/bsp/i2cs.h +controller-v2\mode.o: ../User/system/bsp/iwdgs.h +controller-v2\mode.o: ../Core/Inc/tim.h +controller-v2\mode.o: ../User/lib/lcd/lcds.h +controller-v2\mode.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\mode.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\mode.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\mode.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\mode.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\mode.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\mode.o: ../User/lib/menu/menu.h +controller-v2\mode.o: ../User/board/inc/rtc_rx8010.h +controller-v2\mode.o: ../User/board/inc/eeprom_m95.h +controller-v2\mode.o: ../User/entity.h +controller-v2\mode.o: ../User/application/inc/params.h +controller-v2\mode.o: ../User/entity.h +controller-v2\mode.o: ../User/application/inc/pdctrl.h +controller-v2\mode.o: ../User/application/inc/mode.h +controller-v2\mode.o: ../User/application/inc/mode_dac.h +controller-v2\mode.o: ../User/lib/inc/filter.h +controller-v2\mode.o: ../User/application/inc/mode_pwm.h +controller-v2\mode.o: ../User/application/inc/mode_pwmp.h +controller-v2\mode.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\mode.o: ../User/lib/control/inc/pid.h +controller-v2\mode.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\mode.o: ../User/lib/control/custom/pid_c.h +controller-v2\mode.o: ../User/lib/control/custom/pid_g.h +controller-v2\mode.o: ../User/lib/control/custom/pid_x.h +controller-v2\mode.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode.o: ../User/lib/control/custom/pid_hd.h +controller-v2\mode.o: ../User/board/inc/eeprom_fm24.h +controller-v2\mode.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\mode.o: ../User/board/inc/ntc_3950.h +controller-v2\mode.o: ../User/board/inc/leds.h +controller-v2\mode.o: ../User/system/inc/delay.h +controller-v2\mode.o: ../User/system/inc/sys.h +controller-v2\mode.o: ../User/application/inc/fal_execution.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\mode.o: ../User/lib/flashdb/fal/fal.h +controller-v2\mode.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\mode.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\mode.o: ../User/lib/flashdb/flashdb.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\mode.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\mode.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\mode.o: ../User/lib/flashdb/fdb_def.h +controller-v2\mode.o: ../User/application/inc/key.h +controller-v2\mode.o: ../User/system/inc/btn.h +controller-v2\mode.o: ../User/application/inc/convert.h diff --git a/MDK-ARM/controller-v2/mode.o b/MDK-ARM/controller-v2/mode.o new file mode 100644 index 0000000..881392d Binary files /dev/null and b/MDK-ARM/controller-v2/mode.o differ diff --git a/MDK-ARM/controller-v2/mode_dac.d b/MDK-ARM/controller-v2/mode_dac.d new file mode 100644 index 0000000..3d57e51 --- /dev/null +++ b/MDK-ARM/controller-v2/mode_dac.d @@ -0,0 +1,89 @@ +controller-v2\mode_dac.o: ..\User\application\src\mode_dac.c +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h +controller-v2\mode_dac.o: ../User/application/inc/mode_dac.h +controller-v2\mode_dac.o: ../User/lib/inc/lib.h +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\mode_dac.o: ../User/lib/inc/data_type_def.h +controller-v2\mode_dac.o: ../User/lib/inc/malloc.h +controller-v2\mode_dac.o: ../User/lib/inc/data_analysis.h +controller-v2\mode_dac.o: ../User/lib/inc/osel_arch.h +controller-v2\mode_dac.o: ../User/lib/inc/lib.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\mode_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\mode_dac.o: ../User/lib/inc/debug.h +controller-v2\mode_dac.o: ../User/lib/inc/sqqueue.h +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\mode_dac.o: ../User/lib/inc/clist.h +controller-v2\mode_dac.o: ../User/lib/inc/filter.h +controller-v2\mode_dac.o: ../User/application/inc/mode.h +controller-v2\mode_dac.o: ../User/application/inc/mode_pwm.h +controller-v2\mode_dac.o: ../User/application/inc/mode_pwmp.h +controller-v2\mode_dac.o: ../Core/Inc/main.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\mode_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\mode_dac.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\mode_dac.o: ../User/entity.h +controller-v2\mode_dac.o: ../User/system/bsp/adcs.h +controller-v2\mode_dac.o: ../User/application/inc/params.h +controller-v2\mode_dac.o: ../User/entity.h +controller-v2\mode_dac.o: ../User/application/inc/pdctrl.h +controller-v2\mode_dac.o: ../User/system/bsp/bsp.h +controller-v2\mode_dac.o: ../User/system/bsp/gpios.h +controller-v2\mode_dac.o: ../User/system/bsp/dacs.h +controller-v2\mode_dac.o: ../Core/Inc/dac.h +controller-v2\mode_dac.o: ../User/system/bsp/tims.h +controller-v2\mode_dac.o: ../User/system/bsp/pwms.h +controller-v2\mode_dac.o: ../User/system/bsp/uarts.h +controller-v2\mode_dac.o: ../User/system/bsp/eeprom.h +controller-v2\mode_dac.o: ../User/system/bsp/spis.h +controller-v2\mode_dac.o: ../User/system/bsp/i2cs.h +controller-v2\mode_dac.o: ../User/system/bsp/iwdgs.h +controller-v2\mode_dac.o: ../User/lib/control/inc/pid.h +controller-v2\mode_dac.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_c.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_g.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_x.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_dac.o: ../User/lib/control/custom/pid_hd.h +controller-v2\mode_dac.o: ../User/board/inc/board.h +controller-v2\mode_dac.o: ../Core/Inc/tim.h +controller-v2\mode_dac.o: ../User/lib/lcd/lcds.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\mode_dac.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\mode_dac.o: ../User/lib/menu/menu.h +controller-v2\mode_dac.o: ../User/board/inc/rtc_rx8010.h +controller-v2\mode_dac.o: ../User/board/inc/eeprom_m95.h +controller-v2\mode_dac.o: ../User/board/inc/eeprom_fm24.h +controller-v2\mode_dac.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\mode_dac.o: ../User/board/inc/ntc_3950.h +controller-v2\mode_dac.o: ../User/board/inc/leds.h +controller-v2\mode_dac.o: ../User/application/inc/convert.h +controller-v2\mode_dac.o: ../User/application/inc/at_hc24.h +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\mode_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h diff --git a/MDK-ARM/controller-v2/mode_dac.o b/MDK-ARM/controller-v2/mode_dac.o new file mode 100644 index 0000000..db4f281 Binary files /dev/null and b/MDK-ARM/controller-v2/mode_dac.o differ diff --git a/MDK-ARM/controller-v2/mode_pwm.d b/MDK-ARM/controller-v2/mode_pwm.d new file mode 100644 index 0000000..fa1cbe8 --- /dev/null +++ b/MDK-ARM/controller-v2/mode_pwm.d @@ -0,0 +1,89 @@ +controller-v2\mode_pwm.o: ..\User\application\src\mode_pwm.c +controller-v2\mode_pwm.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h +controller-v2\mode_pwm.o: ../User/application/inc/mode_pwm.h +controller-v2\mode_pwm.o: ../User/lib/inc/lib.h +controller-v2\mode_pwm.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\mode_pwm.o: ../User/lib/inc/data_type_def.h +controller-v2\mode_pwm.o: ../User/lib/inc/malloc.h +controller-v2\mode_pwm.o: ../User/lib/inc/data_analysis.h +controller-v2\mode_pwm.o: ../User/lib/inc/osel_arch.h +controller-v2\mode_pwm.o: ../User/lib/inc/lib.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\mode_pwm.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\mode_pwm.o: ../User/lib/inc/debug.h +controller-v2\mode_pwm.o: ../User/lib/inc/sqqueue.h +controller-v2\mode_pwm.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\mode_pwm.o: ../User/lib/inc/clist.h +controller-v2\mode_pwm.o: ../User/lib/inc/filter.h +controller-v2\mode_pwm.o: ../User/application/inc/pdctrl.h +controller-v2\mode_pwm.o: ../User/system/bsp/bsp.h +controller-v2\mode_pwm.o: ../User/system/bsp/gpios.h +controller-v2\mode_pwm.o: ../Core/Inc/main.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\mode_pwm.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\mode_pwm.o: ../User/system/bsp/adcs.h +controller-v2\mode_pwm.o: ../User/system/bsp/dacs.h +controller-v2\mode_pwm.o: ../Core/Inc/dac.h +controller-v2\mode_pwm.o: ../User/system/bsp/tims.h +controller-v2\mode_pwm.o: ../User/system/bsp/pwms.h +controller-v2\mode_pwm.o: ../User/system/bsp/uarts.h +controller-v2\mode_pwm.o: ../User/system/bsp/eeprom.h +controller-v2\mode_pwm.o: ../User/system/bsp/spis.h +controller-v2\mode_pwm.o: ../User/system/bsp/i2cs.h +controller-v2\mode_pwm.o: ../User/system/bsp/iwdgs.h +controller-v2\mode_pwm.o: ../User/board/inc/board.h +controller-v2\mode_pwm.o: ../Core/Inc/tim.h +controller-v2\mode_pwm.o: ../User/lib/lcd/lcds.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\mode_pwm.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\mode_pwm.o: ../User/lib/menu/menu.h +controller-v2\mode_pwm.o: ../User/board/inc/rtc_rx8010.h +controller-v2\mode_pwm.o: ../User/board/inc/eeprom_m95.h +controller-v2\mode_pwm.o: ../User/entity.h +controller-v2\mode_pwm.o: ../User/application/inc/params.h +controller-v2\mode_pwm.o: ../User/entity.h +controller-v2\mode_pwm.o: ../User/application/inc/mode.h +controller-v2\mode_pwm.o: ../User/application/inc/mode_dac.h +controller-v2\mode_pwm.o: ../User/application/inc/mode_pwmp.h +controller-v2\mode_pwm.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\mode_pwm.o: ../User/lib/control/inc/pid.h +controller-v2\mode_pwm.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_c.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_g.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_x.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwm.o: ../User/lib/control/custom/pid_hd.h +controller-v2\mode_pwm.o: ../User/board/inc/eeprom_fm24.h +controller-v2\mode_pwm.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\mode_pwm.o: ../User/board/inc/ntc_3950.h +controller-v2\mode_pwm.o: ../User/board/inc/leds.h +controller-v2\mode_pwm.o: ../User/application/inc/at_hc24.h +controller-v2\mode_pwm.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\mode_pwm.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\mode_pwm.o: ../User/application/inc/convert.h +controller-v2\mode_pwm.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/mode_pwm.o b/MDK-ARM/controller-v2/mode_pwm.o new file mode 100644 index 0000000..2562874 Binary files /dev/null and b/MDK-ARM/controller-v2/mode_pwm.o differ diff --git a/MDK-ARM/controller-v2/mode_pwmp.d b/MDK-ARM/controller-v2/mode_pwmp.d new file mode 100644 index 0000000..c65a86c --- /dev/null +++ b/MDK-ARM/controller-v2/mode_pwmp.d @@ -0,0 +1,83 @@ +controller-v2\mode_pwmp.o: ..\User\application\src\mode_pwmp.c +controller-v2\mode_pwmp.o: ..\User\application\src\../inc/mode_pwmp.h +controller-v2\mode_pwmp.o: ../Core/Inc/main.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\mode_pwmp.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\mode_pwmp.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\mode_pwmp.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\mode_pwmp.o: ../User/lib/inc/lib.h +controller-v2\mode_pwmp.o: ../User/lib/inc/data_type_def.h +controller-v2\mode_pwmp.o: ../User/lib/inc/malloc.h +controller-v2\mode_pwmp.o: ../User/lib/inc/data_analysis.h +controller-v2\mode_pwmp.o: ../User/lib/inc/osel_arch.h +controller-v2\mode_pwmp.o: ../User/lib/inc/lib.h +controller-v2\mode_pwmp.o: ../User/lib/inc/debug.h +controller-v2\mode_pwmp.o: ../User/lib/inc/sqqueue.h +controller-v2\mode_pwmp.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\mode_pwmp.o: ../User/lib/inc/clist.h +controller-v2\mode_pwmp.o: ../User/lib/inc/filter.h +controller-v2\mode_pwmp.o: ../User/application/inc/pdctrl.h +controller-v2\mode_pwmp.o: ../User/system/bsp/bsp.h +controller-v2\mode_pwmp.o: ../User/system/bsp/gpios.h +controller-v2\mode_pwmp.o: ../User/system/bsp/adcs.h +controller-v2\mode_pwmp.o: ../User/system/bsp/dacs.h +controller-v2\mode_pwmp.o: ../Core/Inc/dac.h +controller-v2\mode_pwmp.o: ../User/system/bsp/tims.h +controller-v2\mode_pwmp.o: ../User/system/bsp/pwms.h +controller-v2\mode_pwmp.o: ../User/system/bsp/uarts.h +controller-v2\mode_pwmp.o: ../User/system/bsp/eeprom.h +controller-v2\mode_pwmp.o: ../User/system/bsp/spis.h +controller-v2\mode_pwmp.o: ../User/system/bsp/i2cs.h +controller-v2\mode_pwmp.o: ../User/system/bsp/iwdgs.h +controller-v2\mode_pwmp.o: ../User/board/inc/board.h +controller-v2\mode_pwmp.o: ../Core/Inc/tim.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/lcds.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\mode_pwmp.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\mode_pwmp.o: ../User/lib/menu/menu.h +controller-v2\mode_pwmp.o: ../User/board/inc/rtc_rx8010.h +controller-v2\mode_pwmp.o: ../User/board/inc/eeprom_m95.h +controller-v2\mode_pwmp.o: ../User/entity.h +controller-v2\mode_pwmp.o: ../User/application/inc/params.h +controller-v2\mode_pwmp.o: ../User/entity.h +controller-v2\mode_pwmp.o: ../User/application/inc/mode.h +controller-v2\mode_pwmp.o: ../User/application/inc/mode_dac.h +controller-v2\mode_pwmp.o: ../User/application/inc/mode_pwm.h +controller-v2\mode_pwmp.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\mode_pwmp.o: ../User/lib/control/inc/pid.h +controller-v2\mode_pwmp.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_c.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_g.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_x.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwmp.o: ../User/lib/control/custom/pid_hd.h +controller-v2\mode_pwmp.o: ../User/board/inc/eeprom_fm24.h +controller-v2\mode_pwmp.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\mode_pwmp.o: ../User/board/inc/ntc_3950.h +controller-v2\mode_pwmp.o: ../User/board/inc/leds.h diff --git a/MDK-ARM/controller-v2/mode_pwmp.o b/MDK-ARM/controller-v2/mode_pwmp.o new file mode 100644 index 0000000..6029d88 Binary files /dev/null and b/MDK-ARM/controller-v2/mode_pwmp.o differ diff --git a/MDK-ARM/controller-v2/mode_pwmp_hd.d b/MDK-ARM/controller-v2/mode_pwmp_hd.d new file mode 100644 index 0000000..3e0c8b6 --- /dev/null +++ b/MDK-ARM/controller-v2/mode_pwmp_hd.d @@ -0,0 +1,103 @@ +controller-v2\mode_pwmp_hd.o: ..\User\application\src\mode_pwmp_hd.c +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h +controller-v2\mode_pwmp_hd.o: ../User/system/inc/sys.h +controller-v2\mode_pwmp_hd.o: ../Core/Inc/main.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\mode_pwmp_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\mode_pwmp_hd.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/lib.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/data_type_def.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/malloc.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/data_analysis.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/osel_arch.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/lib.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/debug.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/sqqueue.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/clist.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/dacs.h +controller-v2\mode_pwmp_hd.o: ../Core/Inc/dac.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/board.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/bsp.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/gpios.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/adcs.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/tims.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/pwms.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/uarts.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/eeprom.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/spis.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/i2cs.h +controller-v2\mode_pwmp_hd.o: ../User/system/bsp/iwdgs.h +controller-v2\mode_pwmp_hd.o: ../Core/Inc/tim.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/lcds.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\mode_pwmp_hd.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\mode_pwmp_hd.o: ../User/lib/menu/menu.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/rtc_rx8010.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/eeprom_m95.h +controller-v2\mode_pwmp_hd.o: ../User/entity.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/params.h +controller-v2\mode_pwmp_hd.o: ../User/entity.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/pdctrl.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/mode.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/mode_dac.h +controller-v2\mode_pwmp_hd.o: ../User/lib/inc/filter.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/mode_pwm.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/mode_pwmp.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/inc/pid.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_c.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_g.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_x.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_zh.h +controller-v2\mode_pwmp_hd.o: ../User/lib/control/custom/pid_hd.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/eeprom_fm24.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/ntc_3950.h +controller-v2\mode_pwmp_hd.o: ../User/board/inc/leds.h +controller-v2\mode_pwmp_hd.o: ../User/system/inc/delay.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/at_hc24.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdlib.h +controller-v2\mode_pwmp_hd.o: ../User/app.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/fal_execution.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/fal/fal.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/flashdb.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\mode_pwmp_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\mode_pwmp_hd.o: ../User/lib/flashdb/fdb_def.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/key.h +controller-v2\mode_pwmp_hd.o: ../User/system/inc/btn.h +controller-v2\mode_pwmp_hd.o: ../User/application/inc/convert.h diff --git a/MDK-ARM/controller-v2/mode_pwmp_hd.o b/MDK-ARM/controller-v2/mode_pwmp_hd.o new file mode 100644 index 0000000..3f1c901 Binary files /dev/null and b/MDK-ARM/controller-v2/mode_pwmp_hd.o differ diff --git a/MDK-ARM/controller-v2/ntc_3950.d b/MDK-ARM/controller-v2/ntc_3950.d new file mode 100644 index 0000000..bb394da --- /dev/null +++ b/MDK-ARM/controller-v2/ntc_3950.d @@ -0,0 +1,38 @@ +controller-v2\ntc_3950.o: ..\User\board\src\ntc_3950.c +controller-v2\ntc_3950.o: ../User/board/inc/ntc_3950.h +controller-v2\ntc_3950.o: ../Core/Inc/main.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\ntc_3950.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\ntc_3950.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\ntc_3950.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\ntc_3950.o: ../User/lib/inc/lib.h +controller-v2\ntc_3950.o: ../User/lib/inc/data_type_def.h +controller-v2\ntc_3950.o: ../User/lib/inc/malloc.h +controller-v2\ntc_3950.o: ../User/lib/inc/data_analysis.h +controller-v2\ntc_3950.o: ../User/lib/inc/osel_arch.h +controller-v2\ntc_3950.o: ../User/lib/inc/lib.h +controller-v2\ntc_3950.o: ../User/lib/inc/debug.h +controller-v2\ntc_3950.o: ../User/lib/inc/sqqueue.h +controller-v2\ntc_3950.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\ntc_3950.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/ntc_3950.o b/MDK-ARM/controller-v2/ntc_3950.o new file mode 100644 index 0000000..cb3d441 Binary files /dev/null and b/MDK-ARM/controller-v2/ntc_3950.o differ diff --git a/MDK-ARM/controller-v2/params.d b/MDK-ARM/controller-v2/params.d new file mode 100644 index 0000000..1867359 --- /dev/null +++ b/MDK-ARM/controller-v2/params.d @@ -0,0 +1,96 @@ +controller-v2\params.o: ..\User\application\src\params.c +controller-v2\params.o: ..\User\application\src\../inc/params.h +controller-v2\params.o: ../User/lib/inc/lib.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\params.o: ../User/lib/inc/data_type_def.h +controller-v2\params.o: ../User/lib/inc/malloc.h +controller-v2\params.o: ../User/lib/inc/data_analysis.h +controller-v2\params.o: ../User/lib/inc/osel_arch.h +controller-v2\params.o: ../User/lib/inc/lib.h +controller-v2\params.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\params.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\params.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\params.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\params.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\params.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\params.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\params.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\params.o: ../User/lib/inc/debug.h +controller-v2\params.o: ../User/lib/inc/sqqueue.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\params.o: ../User/lib/inc/clist.h +controller-v2\params.o: ../Core/Inc/main.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\params.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\params.o: ../User/entity.h +controller-v2\params.o: ../User/system/bsp/adcs.h +controller-v2\params.o: ../User/application/inc/params.h +controller-v2\params.o: ../User/application/inc/pdctrl.h +controller-v2\params.o: ../User/system/bsp/bsp.h +controller-v2\params.o: ../User/system/bsp/gpios.h +controller-v2\params.o: ../User/system/bsp/dacs.h +controller-v2\params.o: ../Core/Inc/dac.h +controller-v2\params.o: ../User/system/bsp/tims.h +controller-v2\params.o: ../User/system/bsp/pwms.h +controller-v2\params.o: ../User/system/bsp/uarts.h +controller-v2\params.o: ../User/system/bsp/eeprom.h +controller-v2\params.o: ../User/system/bsp/spis.h +controller-v2\params.o: ../User/system/bsp/i2cs.h +controller-v2\params.o: ../User/system/bsp/iwdgs.h +controller-v2\params.o: ../User/application/inc/mode.h +controller-v2\params.o: ../User/application/inc/mode_dac.h +controller-v2\params.o: ../User/lib/inc/filter.h +controller-v2\params.o: ../User/application/inc/mode_pwm.h +controller-v2\params.o: ../User/application/inc/mode_pwmp.h +controller-v2\params.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\params.o: ../User/lib/control/inc/pid.h +controller-v2\params.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\params.o: ../User/lib/control/custom/pid_c.h +controller-v2\params.o: ../User/lib/control/custom/pid_g.h +controller-v2\params.o: ../User/lib/control/custom/pid_x.h +controller-v2\params.o: ../User/lib/control/custom/pid_zh.h +controller-v2\params.o: ../User/lib/control/custom/pid_zh.h +controller-v2\params.o: ../User/lib/control/custom/pid_hd.h +controller-v2\params.o: ../User/board/inc/board.h +controller-v2\params.o: ../Core/Inc/tim.h +controller-v2\params.o: ../User/lib/lcd/lcds.h +controller-v2\params.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\params.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\params.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\params.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\params.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\params.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\params.o: ../User/lib/menu/menu.h +controller-v2\params.o: ../User/board/inc/rtc_rx8010.h +controller-v2\params.o: ../User/board/inc/eeprom_m95.h +controller-v2\params.o: ../User/board/inc/eeprom_fm24.h +controller-v2\params.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\params.o: ../User/board/inc/ntc_3950.h +controller-v2\params.o: ../User/board/inc/leds.h +controller-v2\params.o: ../User/system/inc/delay.h +controller-v2\params.o: ../User/system/inc/sys.h +controller-v2\params.o: ../User/application/inc/fal_execution.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\params.o: ../User/lib/flashdb/fal/fal.h +controller-v2\params.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\params.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\params.o: ../User/lib/flashdb/flashdb.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\params.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\params.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\params.o: ../User/lib/flashdb/fdb_def.h diff --git a/MDK-ARM/controller-v2/params.o b/MDK-ARM/controller-v2/params.o new file mode 100644 index 0000000..e484aa0 Binary files /dev/null and b/MDK-ARM/controller-v2/params.o differ diff --git a/MDK-ARM/controller-v2/pdctrl.d b/MDK-ARM/controller-v2/pdctrl.d new file mode 100644 index 0000000..9929cf0 --- /dev/null +++ b/MDK-ARM/controller-v2/pdctrl.d @@ -0,0 +1,67 @@ +controller-v2\pdctrl.o: ..\User\application\src\pdctrl.c +controller-v2\pdctrl.o: ../User/application/inc/pdctrl.h +controller-v2\pdctrl.o: ../User/lib/inc/lib.h +controller-v2\pdctrl.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\pdctrl.o: ../User/lib/inc/data_type_def.h +controller-v2\pdctrl.o: ../User/lib/inc/malloc.h +controller-v2\pdctrl.o: ../User/lib/inc/data_analysis.h +controller-v2\pdctrl.o: ../User/lib/inc/osel_arch.h +controller-v2\pdctrl.o: ../User/lib/inc/lib.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\pdctrl.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\pdctrl.o: ../User/lib/inc/debug.h +controller-v2\pdctrl.o: ../User/lib/inc/sqqueue.h +controller-v2\pdctrl.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\pdctrl.o: ../User/lib/inc/clist.h +controller-v2\pdctrl.o: ../User/system/bsp/bsp.h +controller-v2\pdctrl.o: ../User/system/bsp/gpios.h +controller-v2\pdctrl.o: ../Core/Inc/main.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\pdctrl.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\pdctrl.o: ../User/system/bsp/adcs.h +controller-v2\pdctrl.o: ../User/system/bsp/dacs.h +controller-v2\pdctrl.o: ../Core/Inc/dac.h +controller-v2\pdctrl.o: ../User/system/bsp/tims.h +controller-v2\pdctrl.o: ../User/system/bsp/pwms.h +controller-v2\pdctrl.o: ../User/system/bsp/uarts.h +controller-v2\pdctrl.o: ../User/system/bsp/eeprom.h +controller-v2\pdctrl.o: ../User/system/bsp/spis.h +controller-v2\pdctrl.o: ../User/system/bsp/i2cs.h +controller-v2\pdctrl.o: ../User/system/bsp/iwdgs.h +controller-v2\pdctrl.o: ../User/entity.h +controller-v2\pdctrl.o: ../User/application/inc/params.h +controller-v2\pdctrl.o: ../User/entity.h +controller-v2\pdctrl.o: ../User/application/inc/mode.h +controller-v2\pdctrl.o: ../User/application/inc/mode_dac.h +controller-v2\pdctrl.o: ../User/lib/inc/filter.h +controller-v2\pdctrl.o: ../User/application/inc/mode_pwm.h +controller-v2\pdctrl.o: ../User/application/inc/mode_pwmp.h +controller-v2\pdctrl.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\pdctrl.o: ../User/lib/control/inc/pid.h +controller-v2\pdctrl.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_c.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_g.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_x.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_zh.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_zh.h +controller-v2\pdctrl.o: ../User/lib/control/custom/pid_hd.h diff --git a/MDK-ARM/controller-v2/pdctrl.o b/MDK-ARM/controller-v2/pdctrl.o new file mode 100644 index 0000000..8d30053 Binary files /dev/null and b/MDK-ARM/controller-v2/pdctrl.o differ diff --git a/MDK-ARM/controller-v2/pid.d b/MDK-ARM/controller-v2/pid.d new file mode 100644 index 0000000..51c1e81 --- /dev/null +++ b/MDK-ARM/controller-v2/pid.d @@ -0,0 +1,29 @@ +controller-v2\pid.o: ..\User\lib\control\src\pid.c +controller-v2\pid.o: ../User/lib/control/inc/pid.h +controller-v2\pid.o: ../User/lib/inc/lib.h +controller-v2\pid.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\pid.o: ../User/lib/inc/data_type_def.h +controller-v2\pid.o: ../User/lib/inc/malloc.h +controller-v2\pid.o: ../User/lib/inc/data_analysis.h +controller-v2\pid.o: ../User/lib/inc/osel_arch.h +controller-v2\pid.o: ../User/lib/inc/lib.h +controller-v2\pid.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\pid.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\pid.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\pid.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\pid.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\pid.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\pid.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\pid.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\pid.o: ../User/lib/inc/debug.h +controller-v2\pid.o: ../User/lib/inc/sqqueue.h +controller-v2\pid.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\pid.o: ../User/lib/inc/clist.h +controller-v2\pid.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\pid.o: ../User/lib/control/custom/pid_c.h +controller-v2\pid.o: ../User/lib/control/custom/pid_g.h +controller-v2\pid.o: ../User/lib/control/custom/pid_x.h +controller-v2\pid.o: ../User/lib/control/custom/pid_zh.h +controller-v2\pid.o: ../User/lib/control/custom/pid_zh.h +controller-v2\pid.o: ../User/lib/control/custom/pid_hd.h +controller-v2\pid.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h diff --git a/MDK-ARM/controller-v2/pid.o b/MDK-ARM/controller-v2/pid.o new file mode 100644 index 0000000..6e279ec Binary files /dev/null and b/MDK-ARM/controller-v2/pid.o differ diff --git a/MDK-ARM/controller-v2/pid_hd.d b/MDK-ARM/controller-v2/pid_hd.d new file mode 100644 index 0000000..acd1f21 --- /dev/null +++ b/MDK-ARM/controller-v2/pid_hd.d @@ -0,0 +1,22 @@ +controller-v2\pid_hd.o: ..\User\lib\control\custom\pid_hd.c +controller-v2\pid_hd.o: ..\User\lib\control\custom\pid_hd.h +controller-v2\pid_hd.o: ../User/lib/inc/lib.h +controller-v2\pid_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\pid_hd.o: ../User/lib/inc/data_type_def.h +controller-v2\pid_hd.o: ../User/lib/inc/malloc.h +controller-v2\pid_hd.o: ../User/lib/inc/data_analysis.h +controller-v2\pid_hd.o: ../User/lib/inc/osel_arch.h +controller-v2\pid_hd.o: ../User/lib/inc/lib.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\pid_hd.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\pid_hd.o: ../User/lib/inc/debug.h +controller-v2\pid_hd.o: ../User/lib/inc/sqqueue.h +controller-v2\pid_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\pid_hd.o: ../User/lib/inc/clist.h +controller-v2\pid_hd.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\math.h diff --git a/MDK-ARM/controller-v2/pid_hd.o b/MDK-ARM/controller-v2/pid_hd.o new file mode 100644 index 0000000..dbd35d8 Binary files /dev/null and b/MDK-ARM/controller-v2/pid_hd.o differ diff --git a/MDK-ARM/controller-v2/pwms.d b/MDK-ARM/controller-v2/pwms.d new file mode 100644 index 0000000..1d0736f --- /dev/null +++ b/MDK-ARM/controller-v2/pwms.d @@ -0,0 +1 @@ +controller-v2\pwms.o: ..\User\system\bsp\pwms.c diff --git a/MDK-ARM/controller-v2/pwms.o b/MDK-ARM/controller-v2/pwms.o new file mode 100644 index 0000000..2a58c7c Binary files /dev/null and b/MDK-ARM/controller-v2/pwms.o differ diff --git a/MDK-ARM/controller-v2/rtc_rx8010.d b/MDK-ARM/controller-v2/rtc_rx8010.d new file mode 100644 index 0000000..0b97511 --- /dev/null +++ b/MDK-ARM/controller-v2/rtc_rx8010.d @@ -0,0 +1,42 @@ +controller-v2\rtc_rx8010.o: ..\User\board\src\rtc_rx8010.c +controller-v2\rtc_rx8010.o: ../User/board/inc/rtc_rx8010.h +controller-v2\rtc_rx8010.o: ../Core/Inc/main.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\rtc_rx8010.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\rtc_rx8010.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\rtc_rx8010.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/lib.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/data_type_def.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/malloc.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/data_analysis.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/osel_arch.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/lib.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/debug.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/sqqueue.h +controller-v2\rtc_rx8010.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\rtc_rx8010.o: ../User/lib/inc/clist.h +controller-v2\rtc_rx8010.o: ../User/system/bsp/i2cs.h +controller-v2\rtc_rx8010.o: ../User/system/bsp/gpios.h +controller-v2\rtc_rx8010.o: ../User/system/inc/delay.h +controller-v2\rtc_rx8010.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/rtc_rx8010.o b/MDK-ARM/controller-v2/rtc_rx8010.o new file mode 100644 index 0000000..2a8ce28 Binary files /dev/null and b/MDK-ARM/controller-v2/rtc_rx8010.o differ diff --git a/MDK-ARM/controller-v2/spi.d b/MDK-ARM/controller-v2/spi.d new file mode 100644 index 0000000..a0424df --- /dev/null +++ b/MDK-ARM/controller-v2/spi.d @@ -0,0 +1,40 @@ +controller-v2\spi.o: ../Core/Src/spi.c +controller-v2\spi.o: ../Core/Inc/spi.h +controller-v2\spi.o: ../Core/Inc/main.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\spi.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\spi.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\spi.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\spi.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\spi.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\spi.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\spi.o: ../User/lib/inc/lib.h +controller-v2\spi.o: ../User/lib/inc/data_type_def.h +controller-v2\spi.o: ../User/lib/inc/malloc.h +controller-v2\spi.o: ../User/lib/inc/data_analysis.h +controller-v2\spi.o: ../User/lib/inc/osel_arch.h +controller-v2\spi.o: ../User/lib/inc/lib.h +controller-v2\spi.o: ../User/lib/inc/debug.h +controller-v2\spi.o: ../User/lib/inc/sqqueue.h +controller-v2\spi.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\spi.o: ../User/lib/inc/clist.h +controller-v2\spi.o: ../User/system/inc/delay.h +controller-v2\spi.o: ../User/system/inc/sys.h diff --git a/MDK-ARM/controller-v2/spi.o b/MDK-ARM/controller-v2/spi.o new file mode 100644 index 0000000..fe2d78b Binary files /dev/null and b/MDK-ARM/controller-v2/spi.o differ diff --git a/MDK-ARM/controller-v2/spis.d b/MDK-ARM/controller-v2/spis.d new file mode 100644 index 0000000..73f73b5 --- /dev/null +++ b/MDK-ARM/controller-v2/spis.d @@ -0,0 +1,39 @@ +controller-v2\spis.o: ..\User\system\bsp\spis.c +controller-v2\spis.o: ..\User\system\bsp\spis.h +controller-v2\spis.o: ../User/lib/inc/lib.h +controller-v2\spis.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\spis.o: ../User/lib/inc/data_type_def.h +controller-v2\spis.o: ../User/lib/inc/malloc.h +controller-v2\spis.o: ../User/lib/inc/data_analysis.h +controller-v2\spis.o: ../User/lib/inc/osel_arch.h +controller-v2\spis.o: ../User/lib/inc/lib.h +controller-v2\spis.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\spis.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\spis.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\spis.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\spis.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\spis.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\spis.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\spis.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\spis.o: ../User/lib/inc/debug.h +controller-v2\spis.o: ../User/lib/inc/sqqueue.h +controller-v2\spis.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\spis.o: ../User/lib/inc/clist.h +controller-v2\spis.o: ..\User\system\bsp\gpios.h +controller-v2\spis.o: ../Core/Inc/main.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\spis.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h diff --git a/MDK-ARM/controller-v2/spis.o b/MDK-ARM/controller-v2/spis.o new file mode 100644 index 0000000..b8bcb7a Binary files /dev/null and b/MDK-ARM/controller-v2/spis.o differ diff --git a/MDK-ARM/controller-v2/sqqueue.d b/MDK-ARM/controller-v2/sqqueue.d new file mode 100644 index 0000000..d0e0516 --- /dev/null +++ b/MDK-ARM/controller-v2/sqqueue.d @@ -0,0 +1,21 @@ +controller-v2\sqqueue.o: ..\User\lib\src\sqqueue.c +controller-v2\sqqueue.o: ..\User\lib\src\../inc/sqqueue.h +controller-v2\sqqueue.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/data_type_def.h +controller-v2\sqqueue.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/osel_arch.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/lib.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/malloc.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/data_analysis.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/osel_arch.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/debug.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/lib.h +controller-v2\sqqueue.o: ..\User\lib\src\../inc/clist.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\sqqueue.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/sqqueue.o b/MDK-ARM/controller-v2/sqqueue.o new file mode 100644 index 0000000..546529a Binary files /dev/null and b/MDK-ARM/controller-v2/sqqueue.o differ diff --git a/MDK-ARM/controller-v2/startup_stm32l476xx.d b/MDK-ARM/controller-v2/startup_stm32l476xx.d new file mode 100644 index 0000000..544f8ac --- /dev/null +++ b/MDK-ARM/controller-v2/startup_stm32l476xx.d @@ -0,0 +1 @@ +controller-v2\startup_stm32l476xx.o: startup_stm32l476xx.s diff --git a/MDK-ARM/controller-v2/startup_stm32l476xx.o b/MDK-ARM/controller-v2/startup_stm32l476xx.o new file mode 100644 index 0000000..34b9838 Binary files /dev/null and b/MDK-ARM/controller-v2/startup_stm32l476xx.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_it.d b/MDK-ARM/controller-v2/stm32l4xx_it.d new file mode 100644 index 0000000..e72215e --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_it.d @@ -0,0 +1,105 @@ +controller-v2\stm32l4xx_it.o: ../Core/Src/stm32l4xx_it.c +controller-v2\stm32l4xx_it.o: ../Core/Inc/main.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_it.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\stm32l4xx_it.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/lib.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/data_type_def.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/malloc.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/data_analysis.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/osel_arch.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/lib.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/debug.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/sqqueue.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/clist.h +controller-v2\stm32l4xx_it.o: ../Core/Inc/stm32l4xx_it.h +controller-v2\stm32l4xx_it.o: ../User/lib/flow/flow.h +controller-v2\stm32l4xx_it.o: ../User/lib/flow/flow_def.h +controller-v2\stm32l4xx_it.o: ../User/lib/flow/flow_core.h +controller-v2\stm32l4xx_it.o: ../User/lib/flow/flow_sem.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/board.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/bsp.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/gpios.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/adcs.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/dacs.h +controller-v2\stm32l4xx_it.o: ../Core/Inc/dac.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/tims.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/pwms.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/uarts.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/eeprom.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/spis.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/i2cs.h +controller-v2\stm32l4xx_it.o: ../User/system/bsp/iwdgs.h +controller-v2\stm32l4xx_it.o: ../Core/Inc/tim.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/lcds.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Core/GUI.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Core/GUI_ConfDefaults.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Config/GUIConf.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Core/GUIType.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Core/LCD.h +controller-v2\stm32l4xx_it.o: ../User/lib/lcd/gui/Core/GUIVersion.h +controller-v2\stm32l4xx_it.o: ../User/lib/menu/menu.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/rtc_rx8010.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/eeprom_m95.h +controller-v2\stm32l4xx_it.o: ../User/entity.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/params.h +controller-v2\stm32l4xx_it.o: ../User/entity.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/pdctrl.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/mode.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/mode_dac.h +controller-v2\stm32l4xx_it.o: ../User/lib/inc/filter.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/mode_pwm.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/mode_pwmp.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/mode_pwmp_hd.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/inc/pid.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/inc/pid_auto_tune.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_c.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_g.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_x.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_zh.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_zh.h +controller-v2\stm32l4xx_it.o: ../User/lib/control/custom/pid_hd.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/eeprom_fm24.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/eeprom_lc02b.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/ntc_3950.h +controller-v2\stm32l4xx_it.o: ../User/board/inc/leds.h +controller-v2\stm32l4xx_it.o: ../User/system/inc/sys.h +controller-v2\stm32l4xx_it.o: ../User/app.h +controller-v2\stm32l4xx_it.o: ../User/system/inc/delay.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/fal_execution.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\string.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/fal/fal.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/fal/fal_cfg.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/fal/fal_def.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdio.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/flashdb.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stddef.h +controller-v2\stm32l4xx_it.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\time.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/fdb_cfg.h +controller-v2\stm32l4xx_it.o: ../User/lib/flashdb/fdb_def.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/key.h +controller-v2\stm32l4xx_it.o: ../User/system/inc/btn.h +controller-v2\stm32l4xx_it.o: ../User/application/inc/convert.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_it.o b/MDK-ARM/controller-v2/stm32l4xx_it.o new file mode 100644 index 0000000..ab1bbb6 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_it.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_adc.d b/MDK-ARM/controller-v2/stm32l4xx_ll_adc.d new file mode 100644 index 0000000..5a53032 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_adc.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_adc.c +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_adc.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_adc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_adc.o b/MDK-ARM/controller-v2/stm32l4xx_ll_adc.o new file mode 100644 index 0000000..5bbb951 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_adc.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_dac.d b/MDK-ARM/controller-v2/stm32l4xx_ll_dac.d new file mode 100644 index 0000000..684db70 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_dac.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dac.c +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_dac.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_dac.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_dac.o b/MDK-ARM/controller-v2/stm32l4xx_ll_dac.o new file mode 100644 index 0000000..35c654c Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_dac.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_dma.d b/MDK-ARM/controller-v2/stm32l4xx_ll_dma.d new file mode 100644 index 0000000..60dfe89 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_dma.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_dma.c +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_dma.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_dma.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_dma.o b/MDK-ARM/controller-v2/stm32l4xx_ll_dma.o new file mode 100644 index 0000000..270f9e2 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_dma.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_exti.d b/MDK-ARM/controller-v2/stm32l4xx_ll_exti.d new file mode 100644 index 0000000..5059ddf --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_exti.d @@ -0,0 +1,11 @@ +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_exti.c +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_exti.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_exti.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_exti.o b/MDK-ARM/controller-v2/stm32l4xx_ll_exti.o new file mode 100644 index 0000000..44e61c5 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_exti.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.d b/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.d new file mode 100644 index 0000000..129eb54 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_gpio.c +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_gpio.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_gpio.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.o b/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.o new file mode 100644 index 0000000..d5414b6 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_gpio.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.d b/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.d new file mode 100644 index 0000000..ee17434 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_i2c.c +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_i2c.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_i2c.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.o b/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.o new file mode 100644 index 0000000..d52f88d Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_i2c.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.d b/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.d new file mode 100644 index 0000000..40216ac --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_pwr.c +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_pwr.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_pwr.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.o b/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.o new file mode 100644 index 0000000..1c41d0e Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_pwr.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.d b/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.d new file mode 100644 index 0000000..5df60d2 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.d @@ -0,0 +1,11 @@ +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_rcc.c +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_rcc.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_rcc.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.o b/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.o new file mode 100644 index 0000000..129a515 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_rcc.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_spi.d b/MDK-ARM/controller-v2/stm32l4xx_ll_spi.d new file mode 100644 index 0000000..91e0ca3 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_spi.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_spi.c +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_spi.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_spi.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_spi.o b/MDK-ARM/controller-v2/stm32l4xx_ll_spi.o new file mode 100644 index 0000000..95d8f46 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_spi.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_tim.d b/MDK-ARM/controller-v2/stm32l4xx_ll_tim.d new file mode 100644 index 0000000..91bb6d3 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_tim.d @@ -0,0 +1,12 @@ +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_tim.c +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_tim.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_tim.o b/MDK-ARM/controller-v2/stm32l4xx_ll_tim.o new file mode 100644 index 0000000..df52e58 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_tim.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_usart.d b/MDK-ARM/controller-v2/stm32l4xx_ll_usart.d new file mode 100644 index 0000000..42d5875 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_usart.d @@ -0,0 +1,13 @@ +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_usart.c +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_usart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\stm32l4xx_ll_usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_usart.o b/MDK-ARM/controller-v2/stm32l4xx_ll_usart.o new file mode 100644 index 0000000..9c184f9 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_usart.o differ diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_utils.d b/MDK-ARM/controller-v2/stm32l4xx_ll_utils.d new file mode 100644 index 0000000..83ab0c2 --- /dev/null +++ b/MDK-ARM/controller-v2/stm32l4xx_ll_utils.d @@ -0,0 +1,14 @@ +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Src/stm32l4xx_ll_utils.c +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\stm32l4xx_ll_utils.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\stm32l4xx_ll_utils.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h diff --git a/MDK-ARM/controller-v2/stm32l4xx_ll_utils.o b/MDK-ARM/controller-v2/stm32l4xx_ll_utils.o new file mode 100644 index 0000000..95da9d7 Binary files /dev/null and b/MDK-ARM/controller-v2/stm32l4xx_ll_utils.o differ diff --git a/MDK-ARM/controller-v2/sys.d b/MDK-ARM/controller-v2/sys.d new file mode 100644 index 0000000..560d500 --- /dev/null +++ b/MDK-ARM/controller-v2/sys.d @@ -0,0 +1,38 @@ +controller-v2\sys.o: ..\User\system\src\sys.c +controller-v2\sys.o: ../User/system/inc/sys.h +controller-v2\sys.o: ../Core/Inc/main.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\sys.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\sys.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\sys.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\sys.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\sys.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\sys.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\sys.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\sys.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\sys.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\sys.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\sys.o: ../User/lib/inc/lib.h +controller-v2\sys.o: ../User/lib/inc/data_type_def.h +controller-v2\sys.o: ../User/lib/inc/malloc.h +controller-v2\sys.o: ../User/lib/inc/data_analysis.h +controller-v2\sys.o: ../User/lib/inc/osel_arch.h +controller-v2\sys.o: ../User/lib/inc/lib.h +controller-v2\sys.o: ../User/lib/inc/debug.h +controller-v2\sys.o: ../User/lib/inc/sqqueue.h +controller-v2\sys.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\sys.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/sys.o b/MDK-ARM/controller-v2/sys.o new file mode 100644 index 0000000..03b6ead Binary files /dev/null and b/MDK-ARM/controller-v2/sys.o differ diff --git a/MDK-ARM/controller-v2/system_stm32l4xx.d b/MDK-ARM/controller-v2/system_stm32l4xx.d new file mode 100644 index 0000000..f34a9f0 --- /dev/null +++ b/MDK-ARM/controller-v2/system_stm32l4xx.d @@ -0,0 +1,10 @@ +controller-v2\system_stm32l4xx.o: ../Core/Src/system_stm32l4xx.c +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\system_stm32l4xx.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\system_stm32l4xx.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h diff --git a/MDK-ARM/controller-v2/system_stm32l4xx.o b/MDK-ARM/controller-v2/system_stm32l4xx.o new file mode 100644 index 0000000..0dc50d0 Binary files /dev/null and b/MDK-ARM/controller-v2/system_stm32l4xx.o differ diff --git a/MDK-ARM/controller-v2/tim.d b/MDK-ARM/controller-v2/tim.d new file mode 100644 index 0000000..6787330 --- /dev/null +++ b/MDK-ARM/controller-v2/tim.d @@ -0,0 +1,38 @@ +controller-v2\tim.o: ../Core/Src/tim.c +controller-v2\tim.o: ../Core/Inc/tim.h +controller-v2\tim.o: ../Core/Inc/main.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\tim.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\tim.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\tim.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\tim.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\tim.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\tim.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\tim.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\tim.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\tim.o: ../User/lib/inc/lib.h +controller-v2\tim.o: ../User/lib/inc/data_type_def.h +controller-v2\tim.o: ../User/lib/inc/malloc.h +controller-v2\tim.o: ../User/lib/inc/data_analysis.h +controller-v2\tim.o: ../User/lib/inc/osel_arch.h +controller-v2\tim.o: ../User/lib/inc/lib.h +controller-v2\tim.o: ../User/lib/inc/debug.h +controller-v2\tim.o: ../User/lib/inc/sqqueue.h +controller-v2\tim.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\tim.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/tim.o b/MDK-ARM/controller-v2/tim.o new file mode 100644 index 0000000..16976cf Binary files /dev/null and b/MDK-ARM/controller-v2/tim.o differ diff --git a/MDK-ARM/controller-v2/uarts.d b/MDK-ARM/controller-v2/uarts.d new file mode 100644 index 0000000..4357297 --- /dev/null +++ b/MDK-ARM/controller-v2/uarts.d @@ -0,0 +1,38 @@ +controller-v2\uarts.o: ..\User\system\bsp\uarts.c +controller-v2\uarts.o: ..\User\system\bsp\uarts.h +controller-v2\uarts.o: ../User/lib/inc/lib.h +controller-v2\uarts.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\uarts.o: ../User/lib/inc/data_type_def.h +controller-v2\uarts.o: ../User/lib/inc/malloc.h +controller-v2\uarts.o: ../User/lib/inc/data_analysis.h +controller-v2\uarts.o: ../User/lib/inc/osel_arch.h +controller-v2\uarts.o: ../User/lib/inc/lib.h +controller-v2\uarts.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\uarts.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\uarts.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\uarts.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\uarts.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\uarts.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\uarts.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\uarts.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\uarts.o: ../User/lib/inc/debug.h +controller-v2\uarts.o: ../User/lib/inc/sqqueue.h +controller-v2\uarts.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\uarts.o: ../User/lib/inc/clist.h +controller-v2\uarts.o: ../Core/Inc/main.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\uarts.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h diff --git a/MDK-ARM/controller-v2/uarts.o b/MDK-ARM/controller-v2/uarts.o new file mode 100644 index 0000000..101d411 Binary files /dev/null and b/MDK-ARM/controller-v2/uarts.o differ diff --git a/MDK-ARM/controller-v2/usart.d b/MDK-ARM/controller-v2/usart.d new file mode 100644 index 0000000..42d09fd --- /dev/null +++ b/MDK-ARM/controller-v2/usart.d @@ -0,0 +1,38 @@ +controller-v2\usart.o: ../Core/Src/usart.c +controller-v2\usart.o: ../Core/Inc/usart.h +controller-v2\usart.o: ../Core/Inc/main.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_adc.h +controller-v2\usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l4xx.h +controller-v2\usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/stm32l476xx.h +controller-v2\usart.o: ../Drivers/CMSIS/Include/core_cm4.h +controller-v2\usart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdint.h +controller-v2\usart.o: ../Drivers/CMSIS/Include/cmsis_version.h +controller-v2\usart.o: ../Drivers/CMSIS/Include/cmsis_compiler.h +controller-v2\usart.o: ../Drivers/CMSIS/Include/cmsis_armcc.h +controller-v2\usart.o: ../Drivers/CMSIS/Include/mpu_armv7.h +controller-v2\usart.o: ../Drivers/CMSIS/Device/ST/STM32L4xx/Include/system_stm32l4xx.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dac.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_dma.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_i2c.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_crs.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_rcc.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_bus.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_system.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_exti.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_cortex.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_utils.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_pwr.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_spi.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_tim.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_usart.h +controller-v2\usart.o: ../Drivers/STM32L4xx_HAL_Driver/Inc/stm32l4xx_ll_gpio.h +controller-v2\usart.o: ../User/lib/inc/lib.h +controller-v2\usart.o: ../User/lib/inc/data_type_def.h +controller-v2\usart.o: ../User/lib/inc/malloc.h +controller-v2\usart.o: ../User/lib/inc/data_analysis.h +controller-v2\usart.o: ../User/lib/inc/osel_arch.h +controller-v2\usart.o: ../User/lib/inc/lib.h +controller-v2\usart.o: ../User/lib/inc/debug.h +controller-v2\usart.o: ../User/lib/inc/sqqueue.h +controller-v2\usart.o: D:\work\Work app\Keil5\ARM\ARMCC\Bin\..\include\stdbool.h +controller-v2\usart.o: ../User/lib/inc/clist.h diff --git a/MDK-ARM/controller-v2/usart.o b/MDK-ARM/controller-v2/usart.o new file mode 100644 index 0000000..d88ba8c Binary files /dev/null and b/MDK-ARM/controller-v2/usart.o differ diff --git a/MDK-ARM/startup_stm32l476xx.lst b/MDK-ARM/startup_stm32l476xx.lst new file mode 100644 index 0000000..2e956f2 --- /dev/null +++ b/MDK-ARM/startup_stm32l476xx.lst @@ -0,0 +1,1771 @@ + + + +ARM Macro Assembler Page 1 + + + 1 00000000 ;******************************************************* + ************************ + 2 00000000 ;* File Name : startup_stm32l476xx.s + 3 00000000 ;* Author : MCD Application Team + 4 00000000 ;* Description : STM32L476xx Ultra Low Power devi + ces vector table for MDK-ARM toolchain. + 5 00000000 ;* This module performs: + 6 00000000 ;* - Set the initial SP + 7 00000000 ;* - Set the initial PC == Reset_Ha + ndler + 8 00000000 ;* - Set the vector table entries w + ith the exceptions ISR address + 9 00000000 ;* - Branches to __main in the C li + brary (which eventually + 10 00000000 ;* calls main()). + 11 00000000 ;* After Reset the Cortex-M4 proces + sor is in Thread mode, + 12 00000000 ;* priority is Privileged, and the + Stack is set to Main. + 13 00000000 ;******************************************************* + ************************* + 14 00000000 ;* @attention + 15 00000000 ;* + 16 00000000 ;* Copyright (c) 2017 STMicroelectronics. + 17 00000000 ;* All rights reserved. + 18 00000000 ;* + 19 00000000 ;* This software is licensed under terms that can be fou + nd in the LICENSE file + 20 00000000 ;* in the root directory of this software component. + 21 00000000 ;* If no LICENSE file comes with this software, it is pr + ovided AS-IS. + 22 00000000 ; + 23 00000000 ;******************************************************* + ************************ + 24 00000000 ;* <<< Use Configuration Wizard in Context Menu >>> + 25 00000000 ; Amount of memory (in bytes) allocated for Stack + 26 00000000 ; Tailor this value to your application needs + 27 00000000 ; Stack Configuration + 28 00000000 ; Stack Size (in Bytes) <0x0-0xFFFFFFFF:8> + 29 00000000 ; + 30 00000000 + 31 00000000 00001000 + Stack_Size + EQU 0x1000 + 32 00000000 + 33 00000000 AREA STACK, NOINIT, READWRITE, ALIGN +=3 + 34 00000000 Stack_Mem + SPACE Stack_Size + 35 00001000 __initial_sp + 36 00001000 + 37 00001000 + 38 00001000 ; Heap Configuration + 39 00001000 ; Heap Size (in Bytes) <0x0-0xFFFFFFFF:8> + 40 00001000 ; + 41 00001000 + 42 00001000 00000800 + Heap_Size + EQU 0x800 + + + +ARM Macro Assembler Page 2 + + + 43 00001000 + 44 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN= +3 + 45 00000000 __heap_base + 46 00000000 Heap_Mem + SPACE Heap_Size + 47 00000800 __heap_limit + 48 00000800 + 49 00000800 PRESERVE8 + 50 00000800 THUMB + 51 00000800 + 52 00000800 + 53 00000800 ; Vector Table Mapped to Address 0 at Reset + 54 00000800 AREA RESET, DATA, READONLY + 55 00000000 EXPORT __Vectors + 56 00000000 EXPORT __Vectors_End + 57 00000000 EXPORT __Vectors_Size + 58 00000000 + 59 00000000 00000000 + __Vectors + DCD __initial_sp ; Top of Stack + 60 00000004 00000000 DCD Reset_Handler ; Reset Handler + 61 00000008 00000000 DCD NMI_Handler ; NMI Handler + 62 0000000C 00000000 DCD HardFault_Handler ; Hard Fault + Handler + 63 00000010 00000000 DCD MemManage_Handler + ; MPU Fault Handler + + 64 00000014 00000000 DCD BusFault_Handler + ; Bus Fault Handler + + 65 00000018 00000000 DCD UsageFault_Handler ; Usage Faul + t Handler + 66 0000001C 00000000 DCD 0 ; Reserved + 67 00000020 00000000 DCD 0 ; Reserved + 68 00000024 00000000 DCD 0 ; Reserved + 69 00000028 00000000 DCD 0 ; Reserved + 70 0000002C 00000000 DCD SVC_Handler ; SVCall Handler + 71 00000030 00000000 DCD DebugMon_Handler ; Debug Monito + r Handler + 72 00000034 00000000 DCD 0 ; Reserved + 73 00000038 00000000 DCD PendSV_Handler ; PendSV Handler + + 74 0000003C 00000000 DCD SysTick_Handler + ; SysTick Handler + 75 00000040 + 76 00000040 ; External Interrupts + 77 00000040 00000000 DCD WWDG_IRQHandler + ; Window WatchDog + 78 00000044 00000000 DCD PVD_PVM_IRQHandler ; PVD/PVM1/P + VM2/PVM3/PVM4 throu + gh EXTI Line detect + ion + 79 00000048 00000000 DCD TAMP_STAMP_IRQHandler ; Tamper + and TimeStamps thro + ugh the EXTI line + 80 0000004C 00000000 DCD RTC_WKUP_IRQHandler ; RTC Wakeu + p through the EXTI + line + + + +ARM Macro Assembler Page 3 + + + 81 00000050 00000000 DCD FLASH_IRQHandler ; FLASH + 82 00000054 00000000 DCD RCC_IRQHandler ; RCC + 83 00000058 00000000 DCD EXTI0_IRQHandler ; EXTI Line0 + 84 0000005C 00000000 DCD EXTI1_IRQHandler ; EXTI Line1 + 85 00000060 00000000 DCD EXTI2_IRQHandler ; EXTI Line2 + 86 00000064 00000000 DCD EXTI3_IRQHandler ; EXTI Line3 + 87 00000068 00000000 DCD EXTI4_IRQHandler ; EXTI Line4 + 88 0000006C 00000000 DCD DMA1_Channel1_IRQHandler + ; DMA1 Channel 1 + 89 00000070 00000000 DCD DMA1_Channel2_IRQHandler + ; DMA1 Channel 2 + 90 00000074 00000000 DCD DMA1_Channel3_IRQHandler + ; DMA1 Channel 3 + 91 00000078 00000000 DCD DMA1_Channel4_IRQHandler + ; DMA1 Channel 4 + 92 0000007C 00000000 DCD DMA1_Channel5_IRQHandler + ; DMA1 Channel 5 + 93 00000080 00000000 DCD DMA1_Channel6_IRQHandler + ; DMA1 Channel 6 + 94 00000084 00000000 DCD DMA1_Channel7_IRQHandler + ; DMA1 Channel 7 + 95 00000088 00000000 DCD ADC1_2_IRQHandler ; ADC1, ADC2 + 96 0000008C 00000000 DCD CAN1_TX_IRQHandler ; CAN1 TX + 97 00000090 00000000 DCD CAN1_RX0_IRQHandler ; CAN1 RX0 + 98 00000094 00000000 DCD CAN1_RX1_IRQHandler ; CAN1 RX1 + 99 00000098 00000000 DCD CAN1_SCE_IRQHandler ; CAN1 SCE + 100 0000009C 00000000 DCD EXTI9_5_IRQHandler ; External L + ine[9:5]s + 101 000000A0 00000000 DCD TIM1_BRK_TIM15_IRQHandler ; TIM + 1 Break and TIM15 + 102 000000A4 00000000 DCD TIM1_UP_TIM16_IRQHandler ; TIM1 + Update and TIM16 + 103 000000A8 00000000 DCD TIM1_TRG_COM_TIM17_IRQHandler ; + TIM1 Trigger and C + ommutation and TIM1 + 7 + 104 000000AC 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu + re Compare + 105 000000B0 00000000 DCD TIM2_IRQHandler ; TIM2 + 106 000000B4 00000000 DCD TIM3_IRQHandler ; TIM3 + 107 000000B8 00000000 DCD TIM4_IRQHandler ; TIM4 + 108 000000BC 00000000 DCD I2C1_EV_IRQHandler ; I2C1 Event + + 109 000000C0 00000000 DCD I2C1_ER_IRQHandler ; I2C1 Error + + 110 000000C4 00000000 DCD I2C2_EV_IRQHandler ; I2C2 Event + + 111 000000C8 00000000 DCD I2C2_ER_IRQHandler ; I2C2 Error + + 112 000000CC 00000000 DCD SPI1_IRQHandler ; SPI1 + 113 000000D0 00000000 DCD SPI2_IRQHandler ; SPI2 + 114 000000D4 00000000 DCD USART1_IRQHandler ; USART1 + 115 000000D8 00000000 DCD USART2_IRQHandler ; USART2 + 116 000000DC 00000000 DCD USART3_IRQHandler ; USART3 + 117 000000E0 00000000 DCD EXTI15_10_IRQHandler ; External + Line[15:10] + 118 000000E4 00000000 DCD RTC_Alarm_IRQHandler ; RTC Alar + m (A and B) through + EXTI Line + + + +ARM Macro Assembler Page 4 + + + 119 000000E8 00000000 DCD DFSDM1_FLT3_IRQHandler ; DFSDM1 + Filter 3 global In + terrupt + 120 000000EC 00000000 DCD TIM8_BRK_IRQHandler ; TIM8 Brea + k Interrupt + 121 000000F0 00000000 DCD TIM8_UP_IRQHandler ; TIM8 Updat + e Interrupt + 122 000000F4 00000000 DCD TIM8_TRG_COM_IRQHandler ; TIM8 + Trigger and Commuta + tion Interrupt + 123 000000F8 00000000 DCD TIM8_CC_IRQHandler ; TIM8 Captu + re Compare Interrup + t + 124 000000FC 00000000 DCD ADC3_IRQHandler ; ADC3 global + Interrupt + 125 00000100 00000000 DCD FMC_IRQHandler ; FMC + 126 00000104 00000000 DCD SDMMC1_IRQHandler ; SDMMC1 + 127 00000108 00000000 DCD TIM5_IRQHandler ; TIM5 + 128 0000010C 00000000 DCD SPI3_IRQHandler ; SPI3 + 129 00000110 00000000 DCD UART4_IRQHandler ; UART4 + 130 00000114 00000000 DCD UART5_IRQHandler ; UART5 + 131 00000118 00000000 DCD TIM6_DAC_IRQHandler ; TIM6 and + DAC1&2 underrun err + ors + 132 0000011C 00000000 DCD TIM7_IRQHandler ; TIM7 + 133 00000120 00000000 DCD DMA2_Channel1_IRQHandler + ; DMA2 Channel 1 + 134 00000124 00000000 DCD DMA2_Channel2_IRQHandler + ; DMA2 Channel 2 + 135 00000128 00000000 DCD DMA2_Channel3_IRQHandler + ; DMA2 Channel 3 + 136 0000012C 00000000 DCD DMA2_Channel4_IRQHandler + ; DMA2 Channel 4 + 137 00000130 00000000 DCD DMA2_Channel5_IRQHandler + ; DMA2 Channel 5 + 138 00000134 00000000 DCD DFSDM1_FLT0_IRQHandler ; DFSDM1 + Filter 0 global In + terrupt + 139 00000138 00000000 DCD DFSDM1_FLT1_IRQHandler ; DFSDM1 + Filter 1 global In + terrupt + 140 0000013C 00000000 DCD DFSDM1_FLT2_IRQHandler ; DFSDM1 + Filter 2 global In + terrupt + 141 00000140 00000000 DCD COMP_IRQHandler + ; COMP Interrupt + 142 00000144 00000000 DCD LPTIM1_IRQHandler + ; LP TIM1 interrupt + + 143 00000148 00000000 DCD LPTIM2_IRQHandler + ; LP TIM2 interrupt + + 144 0000014C 00000000 DCD OTG_FS_IRQHandler ; USB OTG FS + 145 00000150 00000000 DCD DMA2_Channel6_IRQHandler + ; DMA2 Channel 6 + 146 00000154 00000000 DCD DMA2_Channel7_IRQHandler + ; DMA2 Channel 7 + 147 00000158 00000000 DCD LPUART1_IRQHandler ; LP UART1 i + nterrupt + + + +ARM Macro Assembler Page 5 + + + 148 0000015C 00000000 DCD QUADSPI_IRQHandler ; Quad SPI g + lobal interrupt + 149 00000160 00000000 DCD I2C3_EV_IRQHandler ; I2C3 event + + 150 00000164 00000000 DCD I2C3_ER_IRQHandler ; I2C3 error + + 151 00000168 00000000 DCD SAI1_IRQHandler ; Serial Audio + Interface 1 global + interrupt + 152 0000016C 00000000 DCD SAI2_IRQHandler ; Serial Audio + Interface 2 global + interrupt + 153 00000170 00000000 DCD SWPMI1_IRQHandler ; Serial Wire + Interface 1 global + interrupt + 154 00000174 00000000 DCD TSC_IRQHandler ; Touch Sense Co + ntroller global int + errupt + 155 00000178 00000000 DCD LCD_IRQHandler ; LCD global int + errupt + 156 0000017C 00000000 DCD 0 ; Reserved + + 157 00000180 00000000 DCD RNG_IRQHandler ; RNG global int + errupt + 158 00000184 00000000 DCD FPU_IRQHandler ; FPU + 159 00000188 + 160 00000188 __Vectors_End + 161 00000188 + 162 00000188 00000188 + __Vectors_Size + EQU __Vectors_End - __Vectors + 163 00000188 + 164 00000188 AREA |.text|, CODE, READONLY + 165 00000000 + 166 00000000 ; Reset handler + 167 00000000 Reset_Handler + PROC + 168 00000000 EXPORT Reset_Handler [WEAK +] + 169 00000000 IMPORT SystemInit + 170 00000000 IMPORT __main + 171 00000000 + 172 00000000 4806 LDR R0, =SystemInit + 173 00000002 4780 BLX R0 + 174 00000004 4806 LDR R0, =__main + 175 00000006 4700 BX R0 + 176 00000008 ENDP + 177 00000008 + 178 00000008 ; Dummy Exception Handlers (infinite loops which can be + modified) + 179 00000008 + 180 00000008 NMI_Handler + PROC + 181 00000008 EXPORT NMI_Handler [WEA +K] + 182 00000008 E7FE B . + 183 0000000A ENDP + 185 0000000A HardFault_Handler + PROC + + + +ARM Macro Assembler Page 6 + + + 186 0000000A EXPORT HardFault_Handler [WEA +K] + 187 0000000A E7FE B . + 188 0000000C ENDP + 190 0000000C MemManage_Handler + PROC + 191 0000000C EXPORT MemManage_Handler [WEA +K] + 192 0000000C E7FE B . + 193 0000000E ENDP + 195 0000000E BusFault_Handler + PROC + 196 0000000E EXPORT BusFault_Handler [WEA +K] + 197 0000000E E7FE B . + 198 00000010 ENDP + 200 00000010 UsageFault_Handler + PROC + 201 00000010 EXPORT UsageFault_Handler [WEA +K] + 202 00000010 E7FE B . + 203 00000012 ENDP + 204 00000012 SVC_Handler + PROC + 205 00000012 EXPORT SVC_Handler [WEA +K] + 206 00000012 E7FE B . + 207 00000014 ENDP + 209 00000014 DebugMon_Handler + PROC + 210 00000014 EXPORT DebugMon_Handler [WEA +K] + 211 00000014 E7FE B . + 212 00000016 ENDP + 213 00000016 PendSV_Handler + PROC + 214 00000016 EXPORT PendSV_Handler [WEA +K] + 215 00000016 E7FE B . + 216 00000018 ENDP + 217 00000018 SysTick_Handler + PROC + 218 00000018 EXPORT SysTick_Handler [WEA +K] + 219 00000018 E7FE B . + 220 0000001A ENDP + 221 0000001A + 222 0000001A Default_Handler + PROC + 223 0000001A + 224 0000001A EXPORT WWDG_IRQHandler + [WEAK] + 225 0000001A EXPORT PVD_PVM_IRQHandler + [WEAK] + 226 0000001A EXPORT TAMP_STAMP_IRQHandler + [WEAK] + 227 0000001A EXPORT RTC_WKUP_IRQHandler + [WEAK] + 228 0000001A EXPORT FLASH_IRQHandler + + + +ARM Macro Assembler Page 7 + + + [WEAK] + 229 0000001A EXPORT RCC_IRQHandler + [WEAK] + 230 0000001A EXPORT EXTI0_IRQHandler + [WEAK] + 231 0000001A EXPORT EXTI1_IRQHandler + [WEAK] + 232 0000001A EXPORT EXTI2_IRQHandler + [WEAK] + 233 0000001A EXPORT EXTI3_IRQHandler + [WEAK] + 234 0000001A EXPORT EXTI4_IRQHandler + [WEAK] + 235 0000001A EXPORT DMA1_Channel1_IRQHandler + [WEAK] + 236 0000001A EXPORT DMA1_Channel2_IRQHandler + [WEAK] + 237 0000001A EXPORT DMA1_Channel3_IRQHandler + [WEAK] + 238 0000001A EXPORT DMA1_Channel4_IRQHandler + [WEAK] + 239 0000001A EXPORT DMA1_Channel5_IRQHandler + [WEAK] + 240 0000001A EXPORT DMA1_Channel6_IRQHandler + [WEAK] + 241 0000001A EXPORT DMA1_Channel7_IRQHandler + [WEAK] + 242 0000001A EXPORT ADC1_2_IRQHandler + [WEAK] + 243 0000001A EXPORT CAN1_TX_IRQHandler + [WEAK] + 244 0000001A EXPORT CAN1_RX0_IRQHandler + [WEAK] + 245 0000001A EXPORT CAN1_RX1_IRQHandler + [WEAK] + 246 0000001A EXPORT CAN1_SCE_IRQHandler + [WEAK] + 247 0000001A EXPORT EXTI9_5_IRQHandler + [WEAK] + 248 0000001A EXPORT TIM1_BRK_TIM15_IRQHandler + [WEAK] + 249 0000001A EXPORT TIM1_UP_TIM16_IRQHandler + [WEAK] + 250 0000001A EXPORT TIM1_TRG_COM_TIM17_IRQHandler + [WEAK] + 251 0000001A EXPORT TIM1_CC_IRQHandler + [WEAK] + 252 0000001A EXPORT TIM2_IRQHandler + [WEAK] + 253 0000001A EXPORT TIM3_IRQHandler + [WEAK] + 254 0000001A EXPORT TIM4_IRQHandler + [WEAK] + 255 0000001A EXPORT I2C1_EV_IRQHandler + [WEAK] + 256 0000001A EXPORT I2C1_ER_IRQHandler + [WEAK] + 257 0000001A EXPORT I2C2_EV_IRQHandler + [WEAK] + + + +ARM Macro Assembler Page 8 + + + 258 0000001A EXPORT I2C2_ER_IRQHandler + [WEAK] + 259 0000001A EXPORT SPI1_IRQHandler + [WEAK] + 260 0000001A EXPORT SPI2_IRQHandler + [WEAK] + 261 0000001A EXPORT USART1_IRQHandler + [WEAK] + 262 0000001A EXPORT USART2_IRQHandler + [WEAK] + 263 0000001A EXPORT USART3_IRQHandler + [WEAK] + 264 0000001A EXPORT EXTI15_10_IRQHandler + [WEAK] + 265 0000001A EXPORT RTC_Alarm_IRQHandler + [WEAK] + 266 0000001A EXPORT DFSDM1_FLT3_IRQHandler + [WEAK] + 267 0000001A EXPORT TIM8_BRK_IRQHandler + [WEAK] + 268 0000001A EXPORT TIM8_UP_IRQHandler + [WEAK] + 269 0000001A EXPORT TIM8_TRG_COM_IRQHandler + [WEAK] + 270 0000001A EXPORT TIM8_CC_IRQHandler + [WEAK] + 271 0000001A EXPORT ADC3_IRQHandler + [WEAK] + 272 0000001A EXPORT FMC_IRQHandler + [WEAK] + 273 0000001A EXPORT SDMMC1_IRQHandler + [WEAK] + 274 0000001A EXPORT TIM5_IRQHandler + [WEAK] + 275 0000001A EXPORT SPI3_IRQHandler + [WEAK] + 276 0000001A EXPORT UART4_IRQHandler + [WEAK] + 277 0000001A EXPORT UART5_IRQHandler + [WEAK] + 278 0000001A EXPORT TIM6_DAC_IRQHandler + [WEAK] + 279 0000001A EXPORT TIM7_IRQHandler + [WEAK] + 280 0000001A EXPORT DMA2_Channel1_IRQHandler + [WEAK] + 281 0000001A EXPORT DMA2_Channel2_IRQHandler + [WEAK] + 282 0000001A EXPORT DMA2_Channel3_IRQHandler + [WEAK] + 283 0000001A EXPORT DMA2_Channel4_IRQHandler + [WEAK] + 284 0000001A EXPORT DMA2_Channel5_IRQHandler + [WEAK] + 285 0000001A EXPORT DFSDM1_FLT0_IRQHandler + [WEAK] + 286 0000001A EXPORT DFSDM1_FLT1_IRQHandler + [WEAK] + 287 0000001A EXPORT DFSDM1_FLT2_IRQHandler + + + +ARM Macro Assembler Page 9 + + + [WEAK] + 288 0000001A EXPORT COMP_IRQHandler + [WEAK] + 289 0000001A EXPORT LPTIM1_IRQHandler + [WEAK] + 290 0000001A EXPORT LPTIM2_IRQHandler + [WEAK] + 291 0000001A EXPORT OTG_FS_IRQHandler + [WEAK] + 292 0000001A EXPORT DMA2_Channel6_IRQHandler + [WEAK] + 293 0000001A EXPORT DMA2_Channel7_IRQHandler + [WEAK] + 294 0000001A EXPORT LPUART1_IRQHandler + [WEAK] + 295 0000001A EXPORT QUADSPI_IRQHandler + [WEAK] + 296 0000001A EXPORT I2C3_EV_IRQHandler + [WEAK] + 297 0000001A EXPORT I2C3_ER_IRQHandler + [WEAK] + 298 0000001A EXPORT SAI1_IRQHandler + [WEAK] + 299 0000001A EXPORT SAI2_IRQHandler + [WEAK] + 300 0000001A EXPORT SWPMI1_IRQHandler + [WEAK] + 301 0000001A EXPORT TSC_IRQHandler + [WEAK] + 302 0000001A EXPORT LCD_IRQHandler + [WEAK] + 303 0000001A EXPORT RNG_IRQHandler + [WEAK] + 304 0000001A EXPORT FPU_IRQHandler + [WEAK] + 305 0000001A + 306 0000001A WWDG_IRQHandler + 307 0000001A PVD_PVM_IRQHandler + 308 0000001A TAMP_STAMP_IRQHandler + 309 0000001A RTC_WKUP_IRQHandler + 310 0000001A FLASH_IRQHandler + 311 0000001A RCC_IRQHandler + 312 0000001A EXTI0_IRQHandler + 313 0000001A EXTI1_IRQHandler + 314 0000001A EXTI2_IRQHandler + 315 0000001A EXTI3_IRQHandler + 316 0000001A EXTI4_IRQHandler + 317 0000001A DMA1_Channel1_IRQHandler + 318 0000001A DMA1_Channel2_IRQHandler + 319 0000001A DMA1_Channel3_IRQHandler + 320 0000001A DMA1_Channel4_IRQHandler + 321 0000001A DMA1_Channel5_IRQHandler + 322 0000001A DMA1_Channel6_IRQHandler + 323 0000001A DMA1_Channel7_IRQHandler + 324 0000001A ADC1_2_IRQHandler + 325 0000001A CAN1_TX_IRQHandler + 326 0000001A CAN1_RX0_IRQHandler + 327 0000001A CAN1_RX1_IRQHandler + 328 0000001A CAN1_SCE_IRQHandler + + + +ARM Macro Assembler Page 10 + + + 329 0000001A EXTI9_5_IRQHandler + 330 0000001A TIM1_BRK_TIM15_IRQHandler + 331 0000001A TIM1_UP_TIM16_IRQHandler + 332 0000001A TIM1_TRG_COM_TIM17_IRQHandler + 333 0000001A TIM1_CC_IRQHandler + 334 0000001A TIM2_IRQHandler + 335 0000001A TIM3_IRQHandler + 336 0000001A TIM4_IRQHandler + 337 0000001A I2C1_EV_IRQHandler + 338 0000001A I2C1_ER_IRQHandler + 339 0000001A I2C2_EV_IRQHandler + 340 0000001A I2C2_ER_IRQHandler + 341 0000001A SPI1_IRQHandler + 342 0000001A SPI2_IRQHandler + 343 0000001A USART1_IRQHandler + 344 0000001A USART2_IRQHandler + 345 0000001A USART3_IRQHandler + 346 0000001A EXTI15_10_IRQHandler + 347 0000001A RTC_Alarm_IRQHandler + 348 0000001A DFSDM1_FLT3_IRQHandler + 349 0000001A TIM8_BRK_IRQHandler + 350 0000001A TIM8_UP_IRQHandler + 351 0000001A TIM8_TRG_COM_IRQHandler + 352 0000001A TIM8_CC_IRQHandler + 353 0000001A ADC3_IRQHandler + 354 0000001A FMC_IRQHandler + 355 0000001A SDMMC1_IRQHandler + 356 0000001A TIM5_IRQHandler + 357 0000001A SPI3_IRQHandler + 358 0000001A UART4_IRQHandler + 359 0000001A UART5_IRQHandler + 360 0000001A TIM6_DAC_IRQHandler + 361 0000001A TIM7_IRQHandler + 362 0000001A DMA2_Channel1_IRQHandler + 363 0000001A DMA2_Channel2_IRQHandler + 364 0000001A DMA2_Channel3_IRQHandler + 365 0000001A DMA2_Channel4_IRQHandler + 366 0000001A DMA2_Channel5_IRQHandler + 367 0000001A DFSDM1_FLT0_IRQHandler + 368 0000001A DFSDM1_FLT1_IRQHandler + 369 0000001A DFSDM1_FLT2_IRQHandler + 370 0000001A COMP_IRQHandler + 371 0000001A LPTIM1_IRQHandler + 372 0000001A LPTIM2_IRQHandler + 373 0000001A OTG_FS_IRQHandler + 374 0000001A DMA2_Channel6_IRQHandler + 375 0000001A DMA2_Channel7_IRQHandler + 376 0000001A LPUART1_IRQHandler + 377 0000001A QUADSPI_IRQHandler + 378 0000001A I2C3_EV_IRQHandler + 379 0000001A I2C3_ER_IRQHandler + 380 0000001A SAI1_IRQHandler + 381 0000001A SAI2_IRQHandler + 382 0000001A SWPMI1_IRQHandler + 383 0000001A TSC_IRQHandler + 384 0000001A LCD_IRQHandler + 385 0000001A RNG_IRQHandler + 386 0000001A FPU_IRQHandler + 387 0000001A + + + +ARM Macro Assembler Page 11 + + + 388 0000001A E7FE B . + 389 0000001C + 390 0000001C ENDP + 391 0000001C + 392 0000001C ALIGN + 393 0000001C + 394 0000001C ;******************************************************* + ************************ + 395 0000001C ; User Stack and Heap initialization + 396 0000001C ;******************************************************* + ************************ + 397 0000001C IF :DEF:__MICROLIB + 398 0000001C + 399 0000001C EXPORT __initial_sp + 400 0000001C EXPORT __heap_base + 401 0000001C EXPORT __heap_limit + 402 0000001C + 403 0000001C ELSE + 418 ENDIF + 419 0000001C + 420 0000001C END + 00000000 + 00000000 +Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4 --apcs=interw +ork --depend=controller-v2\startup_stm32l476xx.d -ocontroller-v2\startup_stm32l +476xx.o -I.\RTE\_controller-v2 -I"D:\work\Work app\Keil5\ARM\PACK\ARM\CMSIS\4.5 +.0\CMSIS\Include" -I"D:\work\Work app\Keil5\ARM\PACK\Keil\STM32L4xx_DFP\2.1.0\D +rivers\CMSIS\Device\ST\STM32L4xx\Include" --predefine="__MICROLIB SETA 1" --pre +define="__UVISION_VERSION SETA 525" --predefine="_RTE_ SETA 1" --predefine="STM +32L476xx SETA 1" --list=startup_stm32l476xx.lst startup_stm32l476xx.s + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +Relocatable symbols + +STACK 00000000 + +Symbol: STACK + Definitions + At line 33 in file startup_stm32l476xx.s + Uses + None +Comment: STACK unused +Stack_Mem 00000000 + +Symbol: Stack_Mem + Definitions + At line 34 in file startup_stm32l476xx.s + Uses + None +Comment: Stack_Mem unused +__initial_sp 00001000 + +Symbol: __initial_sp + Definitions + At line 35 in file startup_stm32l476xx.s + Uses + At line 59 in file startup_stm32l476xx.s + At line 399 in file startup_stm32l476xx.s + +3 symbols + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +Relocatable symbols + +HEAP 00000000 + +Symbol: HEAP + Definitions + At line 44 in file startup_stm32l476xx.s + Uses + None +Comment: HEAP unused +Heap_Mem 00000000 + +Symbol: Heap_Mem + Definitions + At line 46 in file startup_stm32l476xx.s + Uses + None +Comment: Heap_Mem unused +__heap_base 00000000 + +Symbol: __heap_base + Definitions + At line 45 in file startup_stm32l476xx.s + Uses + At line 400 in file startup_stm32l476xx.s +Comment: __heap_base used once +__heap_limit 00000800 + +Symbol: __heap_limit + Definitions + At line 47 in file startup_stm32l476xx.s + Uses + At line 401 in file startup_stm32l476xx.s +Comment: __heap_limit used once +4 symbols + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +Relocatable symbols + +RESET 00000000 + +Symbol: RESET + Definitions + At line 54 in file startup_stm32l476xx.s + Uses + None +Comment: RESET unused +__Vectors 00000000 + +Symbol: __Vectors + Definitions + At line 59 in file startup_stm32l476xx.s + Uses + At line 55 in file startup_stm32l476xx.s + At line 162 in file startup_stm32l476xx.s + +__Vectors_End 00000188 + +Symbol: __Vectors_End + Definitions + At line 160 in file startup_stm32l476xx.s + Uses + At line 56 in file startup_stm32l476xx.s + At line 162 in file startup_stm32l476xx.s + +3 symbols + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +Relocatable symbols + +.text 00000000 + +Symbol: .text + Definitions + At line 164 in file startup_stm32l476xx.s + Uses + None +Comment: .text unused +ADC1_2_IRQHandler 0000001A + +Symbol: ADC1_2_IRQHandler + Definitions + At line 324 in file startup_stm32l476xx.s + Uses + At line 95 in file startup_stm32l476xx.s + At line 242 in file startup_stm32l476xx.s + +ADC3_IRQHandler 0000001A + +Symbol: ADC3_IRQHandler + Definitions + At line 353 in file startup_stm32l476xx.s + Uses + At line 124 in file startup_stm32l476xx.s + At line 271 in file startup_stm32l476xx.s + +BusFault_Handler 0000000E + +Symbol: BusFault_Handler + Definitions + At line 195 in file startup_stm32l476xx.s + Uses + At line 64 in file startup_stm32l476xx.s + At line 196 in file startup_stm32l476xx.s + +CAN1_RX0_IRQHandler 0000001A + +Symbol: CAN1_RX0_IRQHandler + Definitions + At line 326 in file startup_stm32l476xx.s + Uses + At line 97 in file startup_stm32l476xx.s + At line 244 in file startup_stm32l476xx.s + +CAN1_RX1_IRQHandler 0000001A + +Symbol: CAN1_RX1_IRQHandler + Definitions + At line 327 in file startup_stm32l476xx.s + Uses + At line 98 in file startup_stm32l476xx.s + At line 245 in file startup_stm32l476xx.s + +CAN1_SCE_IRQHandler 0000001A + +Symbol: CAN1_SCE_IRQHandler + Definitions + At line 328 in file startup_stm32l476xx.s + Uses + + + +ARM Macro Assembler Page 2 Alphabetic symbol ordering +Relocatable symbols + + At line 99 in file startup_stm32l476xx.s + At line 246 in file startup_stm32l476xx.s + +CAN1_TX_IRQHandler 0000001A + +Symbol: CAN1_TX_IRQHandler + Definitions + At line 325 in file startup_stm32l476xx.s + Uses + At line 96 in file startup_stm32l476xx.s + At line 243 in file startup_stm32l476xx.s + +COMP_IRQHandler 0000001A + +Symbol: COMP_IRQHandler + Definitions + At line 370 in file startup_stm32l476xx.s + Uses + At line 141 in file startup_stm32l476xx.s + At line 288 in file startup_stm32l476xx.s + +DFSDM1_FLT0_IRQHandler 0000001A + +Symbol: DFSDM1_FLT0_IRQHandler + Definitions + At line 367 in file startup_stm32l476xx.s + Uses + At line 138 in file startup_stm32l476xx.s + At line 285 in file startup_stm32l476xx.s + +DFSDM1_FLT1_IRQHandler 0000001A + +Symbol: DFSDM1_FLT1_IRQHandler + Definitions + At line 368 in file startup_stm32l476xx.s + Uses + At line 139 in file startup_stm32l476xx.s + At line 286 in file startup_stm32l476xx.s + +DFSDM1_FLT2_IRQHandler 0000001A + +Symbol: DFSDM1_FLT2_IRQHandler + Definitions + At line 369 in file startup_stm32l476xx.s + Uses + At line 140 in file startup_stm32l476xx.s + At line 287 in file startup_stm32l476xx.s + +DFSDM1_FLT3_IRQHandler 0000001A + +Symbol: DFSDM1_FLT3_IRQHandler + Definitions + At line 348 in file startup_stm32l476xx.s + Uses + At line 119 in file startup_stm32l476xx.s + At line 266 in file startup_stm32l476xx.s + +DMA1_Channel1_IRQHandler 0000001A + + + + +ARM Macro Assembler Page 3 Alphabetic symbol ordering +Relocatable symbols + +Symbol: DMA1_Channel1_IRQHandler + Definitions + At line 317 in file startup_stm32l476xx.s + Uses + At line 88 in file startup_stm32l476xx.s + At line 235 in file startup_stm32l476xx.s + +DMA1_Channel2_IRQHandler 0000001A + +Symbol: DMA1_Channel2_IRQHandler + Definitions + At line 318 in file startup_stm32l476xx.s + Uses + At line 89 in file startup_stm32l476xx.s + At line 236 in file startup_stm32l476xx.s + +DMA1_Channel3_IRQHandler 0000001A + +Symbol: DMA1_Channel3_IRQHandler + Definitions + At line 319 in file startup_stm32l476xx.s + Uses + At line 90 in file startup_stm32l476xx.s + At line 237 in file startup_stm32l476xx.s + +DMA1_Channel4_IRQHandler 0000001A + +Symbol: DMA1_Channel4_IRQHandler + Definitions + At line 320 in file startup_stm32l476xx.s + Uses + At line 91 in file startup_stm32l476xx.s + At line 238 in file startup_stm32l476xx.s + +DMA1_Channel5_IRQHandler 0000001A + +Symbol: DMA1_Channel5_IRQHandler + Definitions + At line 321 in file startup_stm32l476xx.s + Uses + At line 92 in file startup_stm32l476xx.s + At line 239 in file startup_stm32l476xx.s + +DMA1_Channel6_IRQHandler 0000001A + +Symbol: DMA1_Channel6_IRQHandler + Definitions + At line 322 in file startup_stm32l476xx.s + Uses + At line 93 in file startup_stm32l476xx.s + At line 240 in file startup_stm32l476xx.s + +DMA1_Channel7_IRQHandler 0000001A + +Symbol: DMA1_Channel7_IRQHandler + Definitions + At line 323 in file startup_stm32l476xx.s + Uses + At line 94 in file startup_stm32l476xx.s + + + +ARM Macro Assembler Page 4 Alphabetic symbol ordering +Relocatable symbols + + At line 241 in file startup_stm32l476xx.s + +DMA2_Channel1_IRQHandler 0000001A + +Symbol: DMA2_Channel1_IRQHandler + Definitions + At line 362 in file startup_stm32l476xx.s + Uses + At line 133 in file startup_stm32l476xx.s + At line 280 in file startup_stm32l476xx.s + +DMA2_Channel2_IRQHandler 0000001A + +Symbol: DMA2_Channel2_IRQHandler + Definitions + At line 363 in file startup_stm32l476xx.s + Uses + At line 134 in file startup_stm32l476xx.s + At line 281 in file startup_stm32l476xx.s + +DMA2_Channel3_IRQHandler 0000001A + +Symbol: DMA2_Channel3_IRQHandler + Definitions + At line 364 in file startup_stm32l476xx.s + Uses + At line 135 in file startup_stm32l476xx.s + At line 282 in file startup_stm32l476xx.s + +DMA2_Channel4_IRQHandler 0000001A + +Symbol: DMA2_Channel4_IRQHandler + Definitions + At line 365 in file startup_stm32l476xx.s + Uses + At line 136 in file startup_stm32l476xx.s + At line 283 in file startup_stm32l476xx.s + +DMA2_Channel5_IRQHandler 0000001A + +Symbol: DMA2_Channel5_IRQHandler + Definitions + At line 366 in file startup_stm32l476xx.s + Uses + At line 137 in file startup_stm32l476xx.s + At line 284 in file startup_stm32l476xx.s + +DMA2_Channel6_IRQHandler 0000001A + +Symbol: DMA2_Channel6_IRQHandler + Definitions + At line 374 in file startup_stm32l476xx.s + Uses + At line 145 in file startup_stm32l476xx.s + At line 292 in file startup_stm32l476xx.s + +DMA2_Channel7_IRQHandler 0000001A + +Symbol: DMA2_Channel7_IRQHandler + + + +ARM Macro Assembler Page 5 Alphabetic symbol ordering +Relocatable symbols + + Definitions + At line 375 in file startup_stm32l476xx.s + Uses + At line 146 in file startup_stm32l476xx.s + At line 293 in file startup_stm32l476xx.s + +DebugMon_Handler 00000014 + +Symbol: DebugMon_Handler + Definitions + At line 209 in file startup_stm32l476xx.s + Uses + At line 71 in file startup_stm32l476xx.s + At line 210 in file startup_stm32l476xx.s + +Default_Handler 0000001A + +Symbol: Default_Handler + Definitions + At line 222 in file startup_stm32l476xx.s + Uses + None +Comment: Default_Handler unused +EXTI0_IRQHandler 0000001A + +Symbol: EXTI0_IRQHandler + Definitions + At line 312 in file startup_stm32l476xx.s + Uses + At line 83 in file startup_stm32l476xx.s + At line 230 in file startup_stm32l476xx.s + +EXTI15_10_IRQHandler 0000001A + +Symbol: EXTI15_10_IRQHandler + Definitions + At line 346 in file startup_stm32l476xx.s + Uses + At line 117 in file startup_stm32l476xx.s + At line 264 in file startup_stm32l476xx.s + +EXTI1_IRQHandler 0000001A + +Symbol: EXTI1_IRQHandler + Definitions + At line 313 in file startup_stm32l476xx.s + Uses + At line 84 in file startup_stm32l476xx.s + At line 231 in file startup_stm32l476xx.s + +EXTI2_IRQHandler 0000001A + +Symbol: EXTI2_IRQHandler + Definitions + At line 314 in file startup_stm32l476xx.s + Uses + At line 85 in file startup_stm32l476xx.s + At line 232 in file startup_stm32l476xx.s + + + + +ARM Macro Assembler Page 6 Alphabetic symbol ordering +Relocatable symbols + +EXTI3_IRQHandler 0000001A + +Symbol: EXTI3_IRQHandler + Definitions + At line 315 in file startup_stm32l476xx.s + Uses + At line 86 in file startup_stm32l476xx.s + At line 233 in file startup_stm32l476xx.s + +EXTI4_IRQHandler 0000001A + +Symbol: EXTI4_IRQHandler + Definitions + At line 316 in file startup_stm32l476xx.s + Uses + At line 87 in file startup_stm32l476xx.s + At line 234 in file startup_stm32l476xx.s + +EXTI9_5_IRQHandler 0000001A + +Symbol: EXTI9_5_IRQHandler + Definitions + At line 329 in file startup_stm32l476xx.s + Uses + At line 100 in file startup_stm32l476xx.s + At line 247 in file startup_stm32l476xx.s + +FLASH_IRQHandler 0000001A + +Symbol: FLASH_IRQHandler + Definitions + At line 310 in file startup_stm32l476xx.s + Uses + At line 81 in file startup_stm32l476xx.s + At line 228 in file startup_stm32l476xx.s + +FMC_IRQHandler 0000001A + +Symbol: FMC_IRQHandler + Definitions + At line 354 in file startup_stm32l476xx.s + Uses + At line 125 in file startup_stm32l476xx.s + At line 272 in file startup_stm32l476xx.s + +FPU_IRQHandler 0000001A + +Symbol: FPU_IRQHandler + Definitions + At line 386 in file startup_stm32l476xx.s + Uses + At line 158 in file startup_stm32l476xx.s + At line 304 in file startup_stm32l476xx.s + +HardFault_Handler 0000000A + +Symbol: HardFault_Handler + Definitions + At line 185 in file startup_stm32l476xx.s + + + +ARM Macro Assembler Page 7 Alphabetic symbol ordering +Relocatable symbols + + Uses + At line 62 in file startup_stm32l476xx.s + At line 186 in file startup_stm32l476xx.s + +I2C1_ER_IRQHandler 0000001A + +Symbol: I2C1_ER_IRQHandler + Definitions + At line 338 in file startup_stm32l476xx.s + Uses + At line 109 in file startup_stm32l476xx.s + At line 256 in file startup_stm32l476xx.s + +I2C1_EV_IRQHandler 0000001A + +Symbol: I2C1_EV_IRQHandler + Definitions + At line 337 in file startup_stm32l476xx.s + Uses + At line 108 in file startup_stm32l476xx.s + At line 255 in file startup_stm32l476xx.s + +I2C2_ER_IRQHandler 0000001A + +Symbol: I2C2_ER_IRQHandler + Definitions + At line 340 in file startup_stm32l476xx.s + Uses + At line 111 in file startup_stm32l476xx.s + At line 258 in file startup_stm32l476xx.s + +I2C2_EV_IRQHandler 0000001A + +Symbol: I2C2_EV_IRQHandler + Definitions + At line 339 in file startup_stm32l476xx.s + Uses + At line 110 in file startup_stm32l476xx.s + At line 257 in file startup_stm32l476xx.s + +I2C3_ER_IRQHandler 0000001A + +Symbol: I2C3_ER_IRQHandler + Definitions + At line 379 in file startup_stm32l476xx.s + Uses + At line 150 in file startup_stm32l476xx.s + At line 297 in file startup_stm32l476xx.s + +I2C3_EV_IRQHandler 0000001A + +Symbol: I2C3_EV_IRQHandler + Definitions + At line 378 in file startup_stm32l476xx.s + Uses + At line 149 in file startup_stm32l476xx.s + At line 296 in file startup_stm32l476xx.s + +LCD_IRQHandler 0000001A + + + +ARM Macro Assembler Page 8 Alphabetic symbol ordering +Relocatable symbols + + +Symbol: LCD_IRQHandler + Definitions + At line 384 in file startup_stm32l476xx.s + Uses + At line 155 in file startup_stm32l476xx.s + At line 302 in file startup_stm32l476xx.s + +LPTIM1_IRQHandler 0000001A + +Symbol: LPTIM1_IRQHandler + Definitions + At line 371 in file startup_stm32l476xx.s + Uses + At line 142 in file startup_stm32l476xx.s + At line 289 in file startup_stm32l476xx.s + +LPTIM2_IRQHandler 0000001A + +Symbol: LPTIM2_IRQHandler + Definitions + At line 372 in file startup_stm32l476xx.s + Uses + At line 143 in file startup_stm32l476xx.s + At line 290 in file startup_stm32l476xx.s + +LPUART1_IRQHandler 0000001A + +Symbol: LPUART1_IRQHandler + Definitions + At line 376 in file startup_stm32l476xx.s + Uses + At line 147 in file startup_stm32l476xx.s + At line 294 in file startup_stm32l476xx.s + +MemManage_Handler 0000000C + +Symbol: MemManage_Handler + Definitions + At line 190 in file startup_stm32l476xx.s + Uses + At line 63 in file startup_stm32l476xx.s + At line 191 in file startup_stm32l476xx.s + +NMI_Handler 00000008 + +Symbol: NMI_Handler + Definitions + At line 180 in file startup_stm32l476xx.s + Uses + At line 61 in file startup_stm32l476xx.s + At line 181 in file startup_stm32l476xx.s + +OTG_FS_IRQHandler 0000001A + +Symbol: OTG_FS_IRQHandler + Definitions + At line 373 in file startup_stm32l476xx.s + Uses + + + +ARM Macro Assembler Page 9 Alphabetic symbol ordering +Relocatable symbols + + At line 144 in file startup_stm32l476xx.s + At line 291 in file startup_stm32l476xx.s + +PVD_PVM_IRQHandler 0000001A + +Symbol: PVD_PVM_IRQHandler + Definitions + At line 307 in file startup_stm32l476xx.s + Uses + At line 78 in file startup_stm32l476xx.s + At line 225 in file startup_stm32l476xx.s + +PendSV_Handler 00000016 + +Symbol: PendSV_Handler + Definitions + At line 213 in file startup_stm32l476xx.s + Uses + At line 73 in file startup_stm32l476xx.s + At line 214 in file startup_stm32l476xx.s + +QUADSPI_IRQHandler 0000001A + +Symbol: QUADSPI_IRQHandler + Definitions + At line 377 in file startup_stm32l476xx.s + Uses + At line 148 in file startup_stm32l476xx.s + At line 295 in file startup_stm32l476xx.s + +RCC_IRQHandler 0000001A + +Symbol: RCC_IRQHandler + Definitions + At line 311 in file startup_stm32l476xx.s + Uses + At line 82 in file startup_stm32l476xx.s + At line 229 in file startup_stm32l476xx.s + +RNG_IRQHandler 0000001A + +Symbol: RNG_IRQHandler + Definitions + At line 385 in file startup_stm32l476xx.s + Uses + At line 157 in file startup_stm32l476xx.s + At line 303 in file startup_stm32l476xx.s + +RTC_Alarm_IRQHandler 0000001A + +Symbol: RTC_Alarm_IRQHandler + Definitions + At line 347 in file startup_stm32l476xx.s + Uses + At line 118 in file startup_stm32l476xx.s + At line 265 in file startup_stm32l476xx.s + +RTC_WKUP_IRQHandler 0000001A + + + + +ARM Macro Assembler Page 10 Alphabetic symbol ordering +Relocatable symbols + +Symbol: RTC_WKUP_IRQHandler + Definitions + At line 309 in file startup_stm32l476xx.s + Uses + At line 80 in file startup_stm32l476xx.s + At line 227 in file startup_stm32l476xx.s + +Reset_Handler 00000000 + +Symbol: Reset_Handler + Definitions + At line 167 in file startup_stm32l476xx.s + Uses + At line 60 in file startup_stm32l476xx.s + At line 168 in file startup_stm32l476xx.s + +SAI1_IRQHandler 0000001A + +Symbol: SAI1_IRQHandler + Definitions + At line 380 in file startup_stm32l476xx.s + Uses + At line 151 in file startup_stm32l476xx.s + At line 298 in file startup_stm32l476xx.s + +SAI2_IRQHandler 0000001A + +Symbol: SAI2_IRQHandler + Definitions + At line 381 in file startup_stm32l476xx.s + Uses + At line 152 in file startup_stm32l476xx.s + At line 299 in file startup_stm32l476xx.s + +SDMMC1_IRQHandler 0000001A + +Symbol: SDMMC1_IRQHandler + Definitions + At line 355 in file startup_stm32l476xx.s + Uses + At line 126 in file startup_stm32l476xx.s + At line 273 in file startup_stm32l476xx.s + +SPI1_IRQHandler 0000001A + +Symbol: SPI1_IRQHandler + Definitions + At line 341 in file startup_stm32l476xx.s + Uses + At line 112 in file startup_stm32l476xx.s + At line 259 in file startup_stm32l476xx.s + +SPI2_IRQHandler 0000001A + +Symbol: SPI2_IRQHandler + Definitions + At line 342 in file startup_stm32l476xx.s + Uses + At line 113 in file startup_stm32l476xx.s + + + +ARM Macro Assembler Page 11 Alphabetic symbol ordering +Relocatable symbols + + At line 260 in file startup_stm32l476xx.s + +SPI3_IRQHandler 0000001A + +Symbol: SPI3_IRQHandler + Definitions + At line 357 in file startup_stm32l476xx.s + Uses + At line 128 in file startup_stm32l476xx.s + At line 275 in file startup_stm32l476xx.s + +SVC_Handler 00000012 + +Symbol: SVC_Handler + Definitions + At line 204 in file startup_stm32l476xx.s + Uses + At line 70 in file startup_stm32l476xx.s + At line 205 in file startup_stm32l476xx.s + +SWPMI1_IRQHandler 0000001A + +Symbol: SWPMI1_IRQHandler + Definitions + At line 382 in file startup_stm32l476xx.s + Uses + At line 153 in file startup_stm32l476xx.s + At line 300 in file startup_stm32l476xx.s + +SysTick_Handler 00000018 + +Symbol: SysTick_Handler + Definitions + At line 217 in file startup_stm32l476xx.s + Uses + At line 74 in file startup_stm32l476xx.s + At line 218 in file startup_stm32l476xx.s + +TAMP_STAMP_IRQHandler 0000001A + +Symbol: TAMP_STAMP_IRQHandler + Definitions + At line 308 in file startup_stm32l476xx.s + Uses + At line 79 in file startup_stm32l476xx.s + At line 226 in file startup_stm32l476xx.s + +TIM1_BRK_TIM15_IRQHandler 0000001A + +Symbol: TIM1_BRK_TIM15_IRQHandler + Definitions + At line 330 in file startup_stm32l476xx.s + Uses + At line 101 in file startup_stm32l476xx.s + At line 248 in file startup_stm32l476xx.s + +TIM1_CC_IRQHandler 0000001A + +Symbol: TIM1_CC_IRQHandler + + + +ARM Macro Assembler Page 12 Alphabetic symbol ordering +Relocatable symbols + + Definitions + At line 333 in file startup_stm32l476xx.s + Uses + At line 104 in file startup_stm32l476xx.s + At line 251 in file startup_stm32l476xx.s + +TIM1_TRG_COM_TIM17_IRQHandler 0000001A + +Symbol: TIM1_TRG_COM_TIM17_IRQHandler + Definitions + At line 332 in file startup_stm32l476xx.s + Uses + At line 103 in file startup_stm32l476xx.s + At line 250 in file startup_stm32l476xx.s + +TIM1_UP_TIM16_IRQHandler 0000001A + +Symbol: TIM1_UP_TIM16_IRQHandler + Definitions + At line 331 in file startup_stm32l476xx.s + Uses + At line 102 in file startup_stm32l476xx.s + At line 249 in file startup_stm32l476xx.s + +TIM2_IRQHandler 0000001A + +Symbol: TIM2_IRQHandler + Definitions + At line 334 in file startup_stm32l476xx.s + Uses + At line 105 in file startup_stm32l476xx.s + At line 252 in file startup_stm32l476xx.s + +TIM3_IRQHandler 0000001A + +Symbol: TIM3_IRQHandler + Definitions + At line 335 in file startup_stm32l476xx.s + Uses + At line 106 in file startup_stm32l476xx.s + At line 253 in file startup_stm32l476xx.s + +TIM4_IRQHandler 0000001A + +Symbol: TIM4_IRQHandler + Definitions + At line 336 in file startup_stm32l476xx.s + Uses + At line 107 in file startup_stm32l476xx.s + At line 254 in file startup_stm32l476xx.s + +TIM5_IRQHandler 0000001A + +Symbol: TIM5_IRQHandler + Definitions + At line 356 in file startup_stm32l476xx.s + Uses + At line 127 in file startup_stm32l476xx.s + At line 274 in file startup_stm32l476xx.s + + + +ARM Macro Assembler Page 13 Alphabetic symbol ordering +Relocatable symbols + + +TIM6_DAC_IRQHandler 0000001A + +Symbol: TIM6_DAC_IRQHandler + Definitions + At line 360 in file startup_stm32l476xx.s + Uses + At line 131 in file startup_stm32l476xx.s + At line 278 in file startup_stm32l476xx.s + +TIM7_IRQHandler 0000001A + +Symbol: TIM7_IRQHandler + Definitions + At line 361 in file startup_stm32l476xx.s + Uses + At line 132 in file startup_stm32l476xx.s + At line 279 in file startup_stm32l476xx.s + +TIM8_BRK_IRQHandler 0000001A + +Symbol: TIM8_BRK_IRQHandler + Definitions + At line 349 in file startup_stm32l476xx.s + Uses + At line 120 in file startup_stm32l476xx.s + At line 267 in file startup_stm32l476xx.s + +TIM8_CC_IRQHandler 0000001A + +Symbol: TIM8_CC_IRQHandler + Definitions + At line 352 in file startup_stm32l476xx.s + Uses + At line 123 in file startup_stm32l476xx.s + At line 270 in file startup_stm32l476xx.s + +TIM8_TRG_COM_IRQHandler 0000001A + +Symbol: TIM8_TRG_COM_IRQHandler + Definitions + At line 351 in file startup_stm32l476xx.s + Uses + At line 122 in file startup_stm32l476xx.s + At line 269 in file startup_stm32l476xx.s + +TIM8_UP_IRQHandler 0000001A + +Symbol: TIM8_UP_IRQHandler + Definitions + At line 350 in file startup_stm32l476xx.s + Uses + At line 121 in file startup_stm32l476xx.s + At line 268 in file startup_stm32l476xx.s + +TSC_IRQHandler 0000001A + +Symbol: TSC_IRQHandler + Definitions + + + +ARM Macro Assembler Page 14 Alphabetic symbol ordering +Relocatable symbols + + At line 383 in file startup_stm32l476xx.s + Uses + At line 154 in file startup_stm32l476xx.s + At line 301 in file startup_stm32l476xx.s + +UART4_IRQHandler 0000001A + +Symbol: UART4_IRQHandler + Definitions + At line 358 in file startup_stm32l476xx.s + Uses + At line 129 in file startup_stm32l476xx.s + At line 276 in file startup_stm32l476xx.s + +UART5_IRQHandler 0000001A + +Symbol: UART5_IRQHandler + Definitions + At line 359 in file startup_stm32l476xx.s + Uses + At line 130 in file startup_stm32l476xx.s + At line 277 in file startup_stm32l476xx.s + +USART1_IRQHandler 0000001A + +Symbol: USART1_IRQHandler + Definitions + At line 343 in file startup_stm32l476xx.s + Uses + At line 114 in file startup_stm32l476xx.s + At line 261 in file startup_stm32l476xx.s + +USART2_IRQHandler 0000001A + +Symbol: USART2_IRQHandler + Definitions + At line 344 in file startup_stm32l476xx.s + Uses + At line 115 in file startup_stm32l476xx.s + At line 262 in file startup_stm32l476xx.s + +USART3_IRQHandler 0000001A + +Symbol: USART3_IRQHandler + Definitions + At line 345 in file startup_stm32l476xx.s + Uses + At line 116 in file startup_stm32l476xx.s + At line 263 in file startup_stm32l476xx.s + +UsageFault_Handler 00000010 + +Symbol: UsageFault_Handler + Definitions + At line 200 in file startup_stm32l476xx.s + Uses + At line 65 in file startup_stm32l476xx.s + At line 201 in file startup_stm32l476xx.s + + + + +ARM Macro Assembler Page 15 Alphabetic symbol ordering +Relocatable symbols + +WWDG_IRQHandler 0000001A + +Symbol: WWDG_IRQHandler + Definitions + At line 306 in file startup_stm32l476xx.s + Uses + At line 77 in file startup_stm32l476xx.s + At line 224 in file startup_stm32l476xx.s + +93 symbols + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +Absolute symbols + +Heap_Size 00000800 + +Symbol: Heap_Size + Definitions + At line 42 in file startup_stm32l476xx.s + Uses + At line 46 in file startup_stm32l476xx.s +Comment: Heap_Size used once +Stack_Size 00001000 + +Symbol: Stack_Size + Definitions + At line 31 in file startup_stm32l476xx.s + Uses + At line 34 in file startup_stm32l476xx.s +Comment: Stack_Size used once +__Vectors_Size 00000188 + +Symbol: __Vectors_Size + Definitions + At line 162 in file startup_stm32l476xx.s + Uses + At line 57 in file startup_stm32l476xx.s +Comment: __Vectors_Size used once +3 symbols + + + +ARM Macro Assembler Page 1 Alphabetic symbol ordering +External symbols + +SystemInit 00000000 + +Symbol: SystemInit + Definitions + At line 169 in file startup_stm32l476xx.s + Uses + At line 172 in file startup_stm32l476xx.s +Comment: SystemInit used once +__main 00000000 + +Symbol: __main + Definitions + At line 170 in file startup_stm32l476xx.s + Uses + At line 174 in file startup_stm32l476xx.s +Comment: __main used once +2 symbols +444 symbols in table diff --git a/User/application/inc/mode.h b/User/application/inc/mode.h index def2e2b..2532670 100644 --- a/User/application/inc/mode.h +++ b/User/application/inc/mode.h @@ -22,6 +22,21 @@ typedef struct mode_pwmp_hd_params_u mode_pwmp_hd_params; ///< PWMP模式参数 } mode_params_t; +typedef struct +{ + uint16_t pos0; ///< 位置0 ad + uint16_t pos100; ///< 位置100 ad + uint16_t pot0; ///< 位置0 输出 + uint16_t pot100; ///< 位置100 输出 + uint16_t current0; ///< 位置0 电流(毫安,放大100倍, 0.01ma=1) + uint16_t current100; ///< 位置100 电流(毫安,放大100倍,0.01ma=1) + uint16_t open_time; ///< 全开时间(秒) + uint16_t close_time; ///< 全关时间(秒) + float32 kp; ///< pid 比例系数 + float32 ki; ///< pid 积分系数 + float32 kd; ///< pid 微分系数 +} mode_adjust_data_t; + extern void mode_init(void); ///< 工作模式初始化 extern void mode_detection(uint8_t work_mode); ///< 工作模式处理 extern void travel_statistics(void); ///< 行程统计 diff --git a/User/application/inc/mode_pwmp_hd.h b/User/application/inc/mode_pwmp_hd.h index a0c3d19..0b9db4d 100644 --- a/User/application/inc/mode_pwmp_hd.h +++ b/User/application/inc/mode_pwmp_hd.h @@ -5,6 +5,7 @@ #define MODE_DEFAULT_AUTOLOAD 99 // 预分频系数 #define WAIT_COUNT_MAX 10 // 蓝牙等待最大次数 +#define VIP_H_EN_HD 1 // 高电压输出开关 ///////////////////////////////////////*算法整定部分宏定义BEGIN*//////////////////////////////////////// #define TIME_CYCLE 0.01f // 定义时间周期:10ms @@ -13,7 +14,7 @@ #define DIFF_ADC_MAX 6U /*阶跃信号大小*/ -#define FULL_TRIP_SIGNAL 936 +#define FULL_TRIP_SIGNAL 925 // 925 2020 #define HALF_TRIP_SIGNAL 753 #define SMALL_TRIP_SIGNAL 650 ///////////////////////////////////////*算法整定部分宏定义END*/////////////////////////////////////////// @@ -32,21 +33,25 @@ typedef enum /*需要存储的变量*/ typedef struct { - uint8_t tuned_flag; // 是否整定过 1:整定过 0:未整定过 - uint8_t tuned_state; // 自整定结果 + uint8_t tuned_flag; // 是否整定过 1:整定过 0:未整定过 + uint8_t tuned_state; // 自整定结果 - uint16_t bleeding; // 放气值 - uint16_t inflation; // 充气值 - uint16_t arr_diff; // 控制区间 - uint16_t ad_diff; // 磁条区间 - uint16_t pwmp_min; // 控制最小值 - uint16_t pwmp_max; // 控制最大值 - uint16_t trip_0; // 磁条0位置AD - uint16_t trip_100; // 词条100位置AD - uint16_t trip_min0; // 小回路行程0位置AD - uint16_t trip_min100; // 小回路行程100位置AD - uint16_t prov_flag; // 磁条安装的正反:倒装:0 正装:1 - uint16_t valve_type; // 阀门正反行程:气开:ATO 气关:ATC + uint16_t bleeding; // 放气值 + uint16_t inflation; // 充气值 + uint16_t arr_diff; // 控制区间 + uint16_t ad_diff; // 磁条区间 + uint16_t pwmp_min; // 控制最小值 + uint16_t pwmp_max; // 控制最大值 + uint16_t trip_0; // 磁条0位置AD + uint16_t trip_100; // 词条100位置AD + uint16_t trip_min0; // 小回路行程0位置AD + uint16_t trip_min100; // 小回路行程100位置AD + uint16_t current0; // 电流最小值 + uint16_t current100; // 电流最大值 + uint16_t all_open_time;// 全开时间 + uint16_t all_close_time;// 全关时间 + uint16_t prov_flag; // 磁条安装的正反:倒装:0 正装:1 + uint16_t valve_type; // 阀门正反行程:气开:ATO 气关:ATC float32 kp; float32 ki; float32 kd; @@ -122,8 +127,13 @@ typedef enum PWMP_HD_ADJUST_STOP, PWMP_HD_ADJUST_FAIL, // 整定失败 PWMP_HD_ADJUST_TEST, + PWMP_HD_ADJUST_BLEEDING_TIMER, + PWMP_HD_ADJUST_AERATE_TIMER, + PWMP_HD_ADJUST_TUNING, } mode_pwmp_hd_adjust_state_e; // 整定状态 +#define PWMP_HD_ADJUST_STEP LCD_ADJUST_STOP // 整定步骤 + typedef enum { // 自整定结果 0:未整定 1:整定中 2:整定完成 3:整定失败 @@ -186,6 +196,7 @@ typedef struct { float32 pre_actual; // 前一次的行程 float32 cur_actual; // 当前的行程 + float32 adjust_tmp_actual; // 临时行程 float32 actual_error; // 行程的误差 float32 step_signal; // 阶跃信号 float32 step_signal_delt; // 阶跃信号差值 @@ -248,7 +259,7 @@ typedef struct } execute_rsp_hd_t; /////////////////////////////////////////*控制算法END*//////////////////////////////////////// -void mode_pwmp_hd_init(mode_pwmp_hd_params_u *params, void (*params_save_cb)(void)); +void mode_pwmp_hd_init(uint16_t valve_style, mode_pwmp_hd_params_u *params, void (*params_save_cb)(void)); void mode_pwmp_hd_dinit(void); void mode_pwmp_hd_process(void); void pwmp_hd_process_state_set(mode_pwmp_hd_process_state_e state); diff --git a/User/application/src/mode.c b/User/application/src/mode.c index 145324b..6a141df 100644 --- a/User/application/src/mode.c +++ b/User/application/src/mode.c @@ -368,6 +368,48 @@ void mode_detection(uint8_t work_mode) } } +/** + * @brief 模式整定数据获取 + * @param {mode_adjust_data} *data 整定数据 + * @return {*} + * @note + */ +void mode_adjust_data_get(mode_adjust_data_t *data) +{ + switch (uDevice.SpecControlOutputMode) + { + case PDCTRL_DAC: + { + break; + } + case PDCTRL_PWM: + { + break; + } + case PDCTRL_PWMP: + { + break; + } + case PDCTRL_PWMP_HD: + { + data->pos0 = mode_params.mode_pwmp_hd_params.storage.trip_0; ///< 位置0 ad + data->pos100 = mode_params.mode_pwmp_hd_params.storage.trip_100; ///< 位置100 ad + data->pot0 = mode_params.mode_pwmp_hd_params.storage.pwmp_min; ///< 位置0 输出 + data->pot100 = mode_params.mode_pwmp_hd_params.storage.pwmp_max; ///< 位置100 输出 + data->current0 = mode_params.mode_pwmp_hd_params.storage.current0; ///< 位置0 电流(毫安,放大100倍, 0.01ma=1) + data->current100 = mode_params.mode_pwmp_hd_params.storage.current100; ///< 位置100 电流(毫安,放大100倍,0.01ma=1) + data->open_time = mode_params.mode_pwmp_hd_params.storage.all_open_time; ///< 全开时间(秒) + data->close_time = mode_params.mode_pwmp_hd_params.storage.all_close_time; ///< 全关时间(秒) + data->kp = mode_params.mode_pwmp_hd_params.storage.kp; ///< pid 比例系数 + data->ki = mode_params.mode_pwmp_hd_params.storage.ki; ///< pid 积分系数 + data->kd = mode_params.mode_pwmp_hd_params.storage.kd; ///< pid 微分系数 + break; + } + default: + break; + } +} + /** * @brief 工作模式初始化 * @return {*} @@ -384,23 +426,17 @@ void mode_init(void) if (uDevice.SpecControlOutputMode == PDCTRL_DAC) { - pdctrl_init(PDCTRL_DAC); - mode_dac_init(&mode_params.mode_dac_params, mode_params_save_cb); } else if (uDevice.SpecControlOutputMode == PDCTRL_PWM) { - pdctrl_init(PDCTRL_PWM); - mode_pwm_init(&mode_params.mode_pwm_params, mode_params_save_cb); ///< 要放在pdctrl_init()后面执行 } else if (uDevice.SpecControlOutputMode == PDCTRL_PWMP) { - pdctrl_init(PDCTRL_PWMP); - mode_pwmp_init(&mode_params.mode_pwmp_params, mode_params_save_cb); } else if (uDevice.SpecControlOutputMode == PDCTRL_PWMP_HD) { pdctrl_init(PDCTRL_PWMP_HD); - mode_pwmp_hd_init(&mode_params.mode_pwmp_hd_params, mode_params_save_cb); + mode_pwmp_hd_init(uDevice.ValveStyle, &mode_params.mode_pwmp_hd_params, mode_params_save_cb); } else { diff --git a/User/application/src/mode_pwmp_hd.c b/User/application/src/mode_pwmp_hd.c index 26b1362..1219eb5 100644 --- a/User/application/src/mode_pwmp_hd.c +++ b/User/application/src/mode_pwmp_hd.c @@ -1,10 +1,3 @@ -/** - * @file mode_pwmp_hd.c - * @author xxx - * @date 2023-10-10 08:58:43 - * @brief 此文件用于实现定位器自整定、控制功能 - * @copyright Copyright (c) 2023 by xxx, All Rights Reserved. - */ #include #include #include "sys.h" @@ -140,6 +133,63 @@ void mode_pwmp_hd_dinit(void) } } +/** + * @brief 是否完成了算法整定校验 + * @param {uint8_t} mode + * @return {*} + * @note + */ +BOOL pwmp_hd_algorithm_calibrated_status(void) +{ + return mode_pwmp_hd->pwmp_save->storage.tuned_flag == 1 && mode_pwmp_hd->pwmp_save->storage.tuned_state == LCD_ADJUST_RESULT_OK; +} + +/** + * @brief 获取整定结果 + * @return {*} + * @note + */ +uint8_t pwmp_hd_process_adjust_result_get(void) +{ + return mode_pwmp_hd->pwmp_save->storage.tuned_state; +} + +/** + * @brief 是否正在整定 + * @return {*} + * @note + */ +BOOL pwmp_hd_process_is_adjust(void) +{ + return mode_pwmp_hd->process_state == PWMP_HD_PROCESS_ADJUST; +} + +/** + * @brief 获取整定状态 + * @return {*} + * @note + */ +uint8_t pwmp_hd_process_adjust_state_get(void) +{ + return mode_pwmp_hd->lcd_adjust_state; +} + +// 在进入PID控制区域不要绘图 +BOOL pwmp_hd_process_idel(void) +{ + if (mode_pwmp_hd->process_state == PWM_PROCESS_CONTROL) + { + // return fabsf(mode_pwmp_hd->control.real_error) <= get_dead_zone() || + // mode_pwmp_hd->control.stable_flag == TRUE + // ? TRUE + // : FALSE; + return TRUE; + } + else + { + return TRUE; + } +} //////////////////////////////*控制BEGIN*////////////////////////////////////////////////////// /** @@ -312,7 +362,9 @@ static void set_step_signal(uint16_t signal_in) static valve_position_change_hd_e pwmp_adjust_hd_valve_position_change(uint8_t *state, uint8_t next_state, uint8_t diff_adc_max) { uint16_t diff_adc = 0; + // uint16_t adc = get_actual_travel_adc(); uint16_t adc = get_actual_travel_adc(); + pid_autotune_hd->data.adjust_tmp_actual = adc; if (mode_pwmp_hd_adjust->psb_adc != adc) { @@ -358,7 +410,9 @@ static void pwmp_adjust_hd_idle(uint8_t *state, mode_pwmp_hd_adjust_state_e next { if (!FSM_IS_WAIT(*state)) { - mode_pwmp_hd->auto_tune_state = PWMP_HD_ADJUST_RESULT_TUNING; + sys_millis_reset(); + osel_memset((uint8_t *)&mode_pwmp_hd->pwmp_save->storage, 0, sizeof(mode_pwmp_hd_storage_data_t)); + mode_pwmp_hd->pwmp_save->storage.tuned_state = LCD_ADJUST_RESULT_ING; /*为指针开辟存储空间*/ if (mode_pwmp_hd_adjust == NULL) { @@ -901,6 +955,7 @@ static void pwmp_adjust_hd_fail(uint8_t *state) /*PID参数整定模式*/ // 通过整定获得K、T、L(tao) +int s_watch; static void pwmp_adjust_hd_PID_tuning(uint8_t *state, mode_pwmp_hd_adjust_state_e next_state) { if (!FSM_IS_WAIT(*state)) @@ -913,14 +968,15 @@ static void pwmp_adjust_hd_PID_tuning(uint8_t *state, mode_pwmp_hd_adjust_state_ pid_autotune_way_set(PID_AUTOTUNE_WAY_ZN); /*阶跃信号设置*/ set_step_signal(FULL_TRIP_SIGNAL); - mode_pwmp_hd_adjust->wait_count = mode_pwmp_hd->wait_count_max * 80; // 等待八秒 + mode_pwmp_hd_adjust->wait_count = mode_pwmp_hd->wait_count_max * 40; // 等待八秒 FSM_WAIT(*state); // 设置等待状态 } else { valve_position_change_hd_e s = pwmp_adjust_hd_valve_position_change(state, next_state, DIFF_ADC_MAX); + s_watch = s; /*获取实时行程*/ - pid_autotune_hd->data.cur_actual = get_actual_travel_adc(); + pid_autotune_hd->data.cur_actual = pid_autotune_hd->data.adjust_tmp_actual; /*计算变化率*/ pid_autotune_hd->data.actual_error = pid_autotune_hd->data.cur_actual - pid_autotune_hd->data.pre_actual; if (pid_autotune_hd->data.actual_error > 1000) @@ -961,7 +1017,7 @@ static void pwmp_adjust_hd_PID_tuning(uint8_t *state, mode_pwmp_hd_adjust_state_ *state = next_state; break; case POSITION_CHANGE: - mode_pwmp_hd_adjust->wait_count = mode_pwmp_hd->wait_count_max * 80; + mode_pwmp_hd_adjust->wait_count = mode_pwmp_hd->wait_count_max * 40; break; case POSITION_NO_CHANGE: break; @@ -1018,9 +1074,19 @@ static void pwmp_adjust_hd_pid_calculate(uint8_t *state, mode_pwmp_hd_adjust_sta static void pwmp_adjust_hd_save(uint8_t *state, mode_pwmp_hd_adjust_state_e next_state) { *state = next_state; - mode_pwmp_hd->pwmp_save->storage.tuned_flag = 1; + if (mode_pwmp_hd->pwmp_save->storage.tuned_state == LCD_ADJUST_RESULT_ING) + { + mode_pwmp_hd->pwmp_save->storage.tuned_state = LCD_ADJUST_RESULT_OK; + mode_pwmp_hd->auto_tune_state = PWMP_HD_ADJUST_RESULT_SUCCESS; + mode_pwmp_hd->pwmp_save->storage.tuned_flag = 1; + pwmp_public_params_update(); + } + else + { + mode_pwmp_hd->pwmp_save->storage.tuned_state = LCD_ADJUST_RESULT_FAIL; + mode_pwmp_hd->pwmp_save->storage.tuned_flag = 0; + } mode_pwmp_hd->params_save_cb(); - mode_pwmp_hd->auto_tune_state = PWMP_HD_ADJUST_RESULT_SUCCESS; } //////////////////////////////////*状态机模式END*////////////////////////////////////////////////////// @@ -1050,6 +1116,7 @@ void pwmp_adjust(uint8_t *state) break; case PWMP_HD_ADJUST_CALCULATE: pwmp_adjust_hd_calculate(state, PWMP_HD_ADJUST_PID_TUNING); + break; case PWMP_HD_ADJUST_PID_TUNING: pwmp_adjust_hd_PID_tuning(state, PWMP_HD_ADJUST_PID_CALCULATE); break; @@ -1076,6 +1143,42 @@ void pwmp_adjust(uint8_t *state) pwmp_adjust_hd_stop(state); break; } + + switch (ts) + { + case PWMP_HD_ADJUST_IDEL: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_IDEL; + break; + case PWMP_HD_ADJUST_ROUGH_POSITION0: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_POSITION0; + break; + case PWMP_HD_ADJUST_ACCURATE_POSITION0: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_POSITION0; + break; + case PWMP_HD_ADJUST_ROUGH_POSITION100: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_POSITION100; + break; + case PWMP_HD_ADJUST_ACCURATE_POSITION100: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_POSITION100; + break; + case PWMP_HD_ADJUST_BLEEDING_TIMER: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_TIMER; + break; + case PWMP_HD_ADJUST_AERATE_TIMER: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_TIMER; + break; + case PWMP_HD_ADJUST_TUNING: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_TUNING; + break; + case PWMP_HD_ADJUST_SAVE: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_SAVE; + break; + case PWMP_HD_ADJUST_STOP: + mode_pwmp_hd->lcd_adjust_state = LCD_ADJUST_STOP; + break; + default: + break; + } } //////////////////////////////*整定程序入口END*////////////////////////////////////////////////////// @@ -1094,7 +1197,7 @@ void mode_pwmp_hd_process(void) uint8_t ble_len = 0; osel_memset((uint8_t *)ble_data, 0, 128); // sprintf(ble_data, "%f,%f,%f,%d,%f\r\n", pid_target, show_actual, p->real_error, mode_pwm->output, loop_current); - if (mode_pwmp_hd->process_state == PWMP_HD_PROCESS_CONTROL) + if (mode_pwmp_hd->process_state == PWMP_HD_PROCESS_ADJUST) { sprintf(ble_data, "%f,%f,%f,%f\r\n", mode_pwmp_hd->control.ctrl_target, mode_pwmp_hd->control.ctrl_feedback, mode_pwmp_hd->control.real_error, loop_current); } @@ -1155,6 +1258,7 @@ void mode_pwmp_hd_process(void) { pdctrl_out(mode_pwmp_hd->output); mode_pwmp_hd->current_adc = get_actual_travel_adc(); + mode_pwmp_hd->duty_percent = ((float32)mode_pwmp_hd->output / (float32)ADC_OUT_MAX) * 100; mode_pwmp_hd->current_electric = ip2current(); break; } @@ -1165,11 +1269,14 @@ void mode_pwmp_hd_process(void) //////////////////////////////*入口END*////////////////////////////////////////////////////// /*程序初始化*/ -void mode_pwmp_hd_init(mode_pwmp_hd_params_u *params, void (*params_save_cb)(void)) +void mode_pwmp_hd_init(uint16_t valve_style, mode_pwmp_hd_params_u *params, void (*params_save_cb)(void)) { DBG_ASSERT(params != NULL __DBG_LINE); // 断言检查 DBG_ASSERT(params_save_cb != NULL __DBG_LINE); + /*大电流输出使能开关*/ +#if VIP_H_EN_HD == 1 VIP_H_EN_ENABLE(); +#endif /*为指针开辟存储空间*/ if (mode_pwmp_hd == NULL) { @@ -1190,8 +1297,13 @@ void mode_pwmp_hd_init(mode_pwmp_hd_params_u *params, void (*params_save_cb)(voi /*临时参数设置(后续整定)*/ mode_pwmp_hd->pwmp_save->storage.trip_0 = 2583; mode_pwmp_hd->pwmp_save->storage.trip_100 = 1722; +#if VIP_H_EN_HD == 1 mode_pwmp_hd->pwmp_save->storage.pwmp_min = 500; mode_pwmp_hd->pwmp_save->storage.pwmp_max = 925; +#else + mode_pwmp_hd->pwmp_save->storage.pwmp_min = 1025; + mode_pwmp_hd->pwmp_save->storage.pwmp_max = 2050; +#endif mode_pwmp_hd->pwmp_save->storage.valve_type = ATO; // 气开阀 #if INTEGRAL_SEPARATION == 1 #if 1 diff --git a/User/application/src/pdctrl.c b/User/application/src/pdctrl.c index c70c6d0..8ea1a1c 100644 --- a/User/application/src/pdctrl.c +++ b/User/application/src/pdctrl.c @@ -73,10 +73,14 @@ void pdctrl_init(pdctrl_mode_e mode) { pwm_init(); } - else if (out_mode == PDCTRL_PWMP) + else if (out_mode == PDCTRL_PWMP || out_mode == PDCTRL_PWMP_HD) { pwmp_init(); } + else + { + DBG_ASSERT(FALSE __DBG_LINE); + } } /** @@ -87,7 +91,7 @@ void pdctrl_init(pdctrl_mode_e mode) void pdctrl_stop(void) { pdctrl_run_flag = FALSE; - if (out_mode == PDCTRL_DAC || out_mode == PDCTRL_PWMP) + if (out_mode == PDCTRL_DAC) { dac_dinit(); } @@ -95,10 +99,14 @@ void pdctrl_stop(void) { pwm_dinit(); } - else if (out_mode == PDCTRL_PWMP) + else if (out_mode == PDCTRL_PWMP || out_mode == PDCTRL_PWMP_HD) { pwmp_dinit(); } + else + { + DBG_ASSERT(FALSE __DBG_LINE); + } } /** @@ -117,10 +125,14 @@ void pdctrl_run(void) { pwm_init(); } - else if (out_mode == PDCTRL_PWMP) + else if (out_mode == PDCTRL_PWMP || out_mode == PDCTRL_PWMP_HD) { pwmp_init(); } + else + { + DBG_ASSERT(FALSE __DBG_LINE); + } } /** diff --git a/User/entity.h b/User/entity.h index 0ebbb2e..31b6383 100644 --- a/User/entity.h +++ b/User/entity.h @@ -42,7 +42,7 @@ #define SELF_VCHART_LEN 17 ///< 自定义阀门特性长度 #define VALVE_SERIAL_NUM_LEN 16 ///< 阀门序列号长度 #define INST_SERIAL_NUM_LEN 16 ///< 定位器序列号长度 -#define DAC_OUT_MAX 4095 ///< DAC输出最大值 +#define ADC_OUT_MAX 4095 ///< ADC输出最大值 /** * ADC通道定义: 主频4、分频系数16,根据公式 TCONV(转换时间) = (采样时间 + 12.5 个周期)/(主频/ADC分频系数) 计算每个通道单个采集时间 @@ -383,6 +383,24 @@ typedef union } Bits; } driver_icon_enable_u; +typedef enum +{ + // 这一部分只用于LCD整定界面 + LCD_ADJUST_IDEL = 1, // 准备中 + LCD_ADJUST_POSITION0, // 位置0 + LCD_ADJUST_POSITION100, // 位置100 + LCD_ADJUST_TIMER, // 计时 + LCD_ADJUST_TUNING, // 自整定 + LCD_ADJUST_SAVE, // 存储变量 + LCD_ADJUST_STOP, // 停止 +} lcd_adjust_step_e; + +typedef enum +{ + LCD_ADJUST_RESULT_OK, ///< 整定成功 + LCD_ADJUST_RESULT_FAIL, ///< 整定失败 + LCD_ADJUST_RESULT_ING, ///< 整定中 +} lcd_adjust_result_e; #pragma pack() // 编译器中提供了#pragma pack(n)来设定变量以n字节对齐方式 extern volatile float32 calib_param[CALIBPARA_NUM][2]; ///< 校准参数 diff --git a/User/lib/inc/malloc.h b/User/lib/inc/malloc.h index 31dc53e..5e33c76 100644 --- a/User/lib/inc/malloc.h +++ b/User/lib/inc/malloc.h @@ -15,7 +15,7 @@ // mem1内存参数设定.mem1完全处于内部SRAM里面.(设置内部SARM的内存池和内存表的参数) #define MEM1_BLOCK_SIZE 32 // 一个内存块大小为32字节 -#define MEM1_MAX_SIZE 20 * 1024 // 最大管理内存 1K (我们这个内存管理系统的内部SRAM可控制的内存大小) +#define MEM1_MAX_SIZE 30 * 1024 // 最大管理内存 1K (我们这个内存管理系统的内部SRAM可控制的内存大小) #define MEM1_ALLOC_TABLE_SIZE MEM1_MAX_SIZE / MEM1_BLOCK_SIZE // 内存表大小(有多少块内存块) // mem2内存参数设定.mem2的内存池处于外部SRAM里面