diff --git a/.gitignore b/.gitignore index a007fea..69e5791 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,68 @@ +# Build output directories and files build/* +CMakeFiles/ + +# Ninja build system files +.ninja_deps +.ninja_log + +# CMake cache and configuration files +cmake_install.cmake + +# BSP module build files +BSP/CMakeFiles/ +BSP/libbsp.a +BSP/cmake_install.cmake + +# HAL module build files +HAL/CMakeFiles/ +HAL/libhal.a +HAL/cmake_install.cmake + +# Modules build files +Modules/**/CMakeFiles/ +Modules/**/lib*.a +Modules/**/cmake_install.cmake + +# Middlewares build files +Middlewares/**/CMakeFiles/ +Middlewares/**/lib*.a +Middlewares/**/cmake_install.cmake + +# STM32CubeMX build files +cmake/stm32cubemx/CMakeFiles/ +cmake/stm32cubemx/lib*.a +cmake/stm32cubemx/cmake_install.cmake + +# Executable files +*.elf +*.bin +*.hex +*.map + +# Object files +*.obj +*.o + +# Dependency files +*.d + +# IDE and editor files +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# OS generated files +Thumbs.db +.DS_Store + +# Backup files +*.bak +*.backup + +# Log files +*.log +build/Debug/.ninja_log +build/Debug/.ninja_deps diff --git a/APP/Src/main.c b/APP/Src/main.c index cc60aba..55c6976 100644 --- a/APP/Src/main.c +++ b/APP/Src/main.c @@ -2,20 +2,19 @@ /** ****************************************************************************** * @file : main.c - * @brief : Main program body + * @brief : 主程序文件 + * @author : Auto-generated + * @date : 2026-01-29 ****************************************************************************** * @attention * - * Copyright (c) 2025 STMicroelectronics. - * All rights reserved. - * - * This software is licensed under terms that can be found in the LICENSE file - * in the root directory of this software component. - * If no LICENSE file comes with this software, it is provided AS-IS. + * 本文件包含STM32F407VET6开发板的主程序逻辑 + * 包括系统初始化、外设配置和主循环处理 * ****************************************************************************** */ /* USER CODE END Header */ + /* Includes ------------------------------------------------------------------*/ #include "main.h" @@ -39,7 +38,10 @@ /* Private define ------------------------------------------------------------*/ /* USER CODE BEGIN PD */ - +// LED闪烁间隔时间(毫秒) +#define LED_TOGGLE_INTERVAL 500 +// 以太网状态检查间隔时间(毫秒) +#define ETH_CHECK_INTERVAL 5000 /* USER CODE END PD */ /* Private macro -------------------------------------------------------------*/ @@ -50,18 +52,32 @@ /* Private variables ---------------------------------------------------------*/ /* USER CODE BEGIN PV */ -/* LED instance */ +// LED实例 static led_t led; -/* Timer variables for non-blocking delays */ +// 定时器变量(用于非阻塞延时) static uint32_t led_toggle_timer = 0; -#define LED_TOGGLE_INTERVAL 500 /* 500ms interval for LED toggling */ +static uint32_t eth_check_timer = 0; +static uint8_t last_link_status = 0; /* USER CODE END PV */ /* Private function prototypes -----------------------------------------------*/ void SystemClock_Config(void); /* USER CODE BEGIN PFP */ - +// 初始化系统外设 +static void system_peripherals_init(void); +// 初始化以太网 +static void ethernet_init(void); +// 初始化LED +static void led_init_system(void); +// 初始化W25QXX存储芯片 +static void w25qxx_init_system(void); +// 处理按键事件 +static void key_events_handler(void); +// 处理LED闪烁 +static void led_blink_handler(void); +// 处理以太网状态检查 +static void ethernet_status_handler(void); /* USER CODE END PFP */ /* Private user code ---------------------------------------------------------*/ @@ -70,201 +86,53 @@ void SystemClock_Config(void); /* USER CODE END 0 */ /** - * @brief The application entry point. + * @brief 应用程序入口点 * @retval int */ int main(void) { - /* USER CODE BEGIN 1 */ /* USER CODE END 1 */ - /* MCU Configuration--------------------------------------------------------*/ + /* MCU配置--------------------------------------------------------*/ - /* Reset of all peripherals, Initializes the Flash interface and the Systick. */ + /* 重置所有外设,初始化Flash接口和SysTick */ HAL_Init(); /* USER CODE BEGIN Init */ /* USER CODE END Init */ - /* Configure the system clock */ + /* 配置系统时钟 */ SystemClock_Config(); /* USER CODE BEGIN SysInit */ /* USER CODE END SysInit */ - /* Initialize board support package */ + /* 初始化板级支持包 */ bsp_init(); - /* USER CODE BEGIN 2 */ - /* Initialize modules */ - delay_init(); - logging_init(); - /* Initialize Ethernet (LAN8720) */ - log_debug("Starting Ethernet initialization...\r\n"); - const bsp_board_config_t* board_config = bsp_get_board_config(); - bsp_eth_config_t eth_config = board_config->eth; - if (bsp_eth_init(ð_config) == HAL_RET_OK) { - log_info("Ethernet initialized successfully\r\n"); - - /* Get Ethernet status */ - bsp_eth_status_t eth_status; - if (bsp_eth_get_status(ð_status) == HAL_RET_OK) { - log_info("Ethernet PHY ID: 0x%04X 0x%04X\r\n", eth_status.phy_id1, eth_status.phy_id2); - log_info("Ethernet link status: %s\r\n", eth_status.link_up ? "UP" : "DOWN"); - if (eth_status.link_up) { - log_info("Ethernet speed: %lu Mbps\r\n", eth_status.speed); - log_info("Ethernet duplex: %s\r\n", eth_status.duplex ? "Full" : "Half"); - } - } - - /* Get MAC address */ - hal_eth_mac_addr_t mac_addr; - if (bsp_eth_get_mac_addr(&mac_addr) == HAL_RET_OK) { - log_info("Ethernet MAC address: %02X:%02X:%02X:%02X:%02X:%02X\r\n", - mac_addr.byte[0], mac_addr.byte[1], mac_addr.byte[2], - mac_addr.byte[3], mac_addr.byte[4], mac_addr.byte[5]); - } - } else { - log_error("Ethernet initialization failed\r\n"); - } - - /* Get LED configuration from board config */ - led_config_t led_config = { - .gpio_port = board_config->leds.leds[0].port, - .gpio_pin = board_config->leds.leds[0].pin - }; - led_init(&led, &led_config); - - /* Initialize keys */ - bsp_key_init(); - - /* Set log level to debug */ - logging_set_level(LOG_LEVEL_DEBUG); - - /* Send welcome message */ - log_info("STM32F407VET6 UART Test\r\n"); - log_info("LED toggling every 500ms\r\n"); - log_info("Key detection enabled\r\n"); - log_debug("Debug logging enabled\r\n"); - - /* Initialize W25QXX */ - log_debug("Starting W25QXX initialization...\r\n"); - if (bsp_w25qxx_init()) { - log_info("W25QXX initialized successfully\r\n"); - - /* Get device information */ - w25qxx_device_info_t device_info; - if (bsp_w25qxx_get_device_info(&device_info)) { - log_info("W25QXX Manufacturer ID: 0x%02X\r\n", device_info.manufacturer_id); - log_info("W25QXX Device ID: 0x%04X\r\n", device_info.device_id); - log_info("W25QXX Capacity: %lu bytes\r\n", device_info.capacity); - log_info("W25QXX Page Size: %u bytes\r\n", device_info.page_size); - log_info("W25QXX Sector Size: %lu bytes\r\n", device_info.sector_size); - log_info("W25QXX Block Size: %lu bytes\r\n", device_info.block_size); - } - } else { - log_error("W25QXX initialization failed\r\n"); - /* Try to read device info even if initialization failed to debug SPI connection */ - w25qxx_device_info_t device_info; - if (bsp_w25qxx_get_device_info(&device_info)) { - log_error("Debug - Read ID: Manufacturer=0x%02X, Device=0x%04X\r\n", - device_info.manufacturer_id, device_info.device_id); - } - } - /* USER CODE END 2 */ + /* 初始化系统外设 */ + system_peripherals_init(); - /* Infinite loop */ + /* 无限循环 */ /* USER CODE BEGIN WHILE */ while (1) { - /* Update key states (should be called periodically, e.g. every 10ms) */ + /* 更新按键状态(应定期调用,例如每10ms) */ bsp_key_update(); - /* Check key events */ + /* 处理按键事件 */ + key_events_handler(); - /* KEY0 events */ - if (bsp_key_get_press_event(BSP_KEY_ID_KEY0)) { - log_info("KEY0 pressed\r\n"); - } - if (bsp_key_get_release_event(BSP_KEY_ID_KEY0)) { - log_info("KEY0 released\r\n"); - } - if (bsp_key_get_short_press_event(BSP_KEY_ID_KEY0)) { - log_info("KEY0 short pressed\r\n"); - } - if (bsp_key_get_long_press_event(BSP_KEY_ID_KEY0)) { - log_info("KEY0 long pressed\r\n"); - } - if (bsp_key_get_repeat_event(BSP_KEY_ID_KEY0)) { - log_info("KEY0 repeat pressed\r\n"); - } + /* 处理LED闪烁 */ + led_blink_handler(); - /* KEY1 events */ - if (bsp_key_get_press_event(BSP_KEY_ID_KEY1)) { - log_info("KEY1 pressed\r\n"); - } - if (bsp_key_get_release_event(BSP_KEY_ID_KEY1)) { - log_info("KEY1 released\r\n"); - } - if (bsp_key_get_short_press_event(BSP_KEY_ID_KEY1)) { - log_info("KEY1 short pressed\r\n"); - } - if (bsp_key_get_long_press_event(BSP_KEY_ID_KEY1)) { - log_info("KEY1 long pressed\r\n"); - } - if (bsp_key_get_repeat_event(BSP_KEY_ID_KEY1)) { - log_info("KEY1 repeat pressed\r\n"); - } + /* 处理以太网状态检查 */ + ethernet_status_handler(); - /* WK_UP events */ - if (bsp_key_get_press_event(BSP_KEY_ID_WKUP)) { - log_info("WK_UP pressed\r\n"); - } - if (bsp_key_get_release_event(BSP_KEY_ID_WKUP)) { - log_info("WK_UP released\r\n"); - } - if (bsp_key_get_short_press_event(BSP_KEY_ID_WKUP)) { - log_info("WK_UP short pressed\r\n"); - } - if (bsp_key_get_long_press_event(BSP_KEY_ID_WKUP)) { - log_info("WK_UP long pressed\r\n"); - } - if (bsp_key_get_repeat_event(BSP_KEY_ID_WKUP)) { - log_info("WK_UP repeat pressed\r\n"); - } - - /* Toggle LED using non-blocking timer */ - if ((delay_get_tick() - led_toggle_timer) >= LED_TOGGLE_INTERVAL) { - led_toggle(&led); // Toggle the LED state - log_debug("LED toggled\r\n"); - led_toggle_timer = delay_get_tick(); // Reset timer - } - - /* Check Ethernet link status periodically */ - static uint32_t eth_check_timer = 0; - #define ETH_CHECK_INTERVAL 5000 /* 5000ms interval for Ethernet status check */ - if ((delay_get_tick() - eth_check_timer) >= ETH_CHECK_INTERVAL) { - uint8_t link_up; - if (bsp_eth_check_link(&link_up) == HAL_RET_OK) { - static uint8_t last_link_status = 0; - if (link_up != last_link_status) { - log_info("Ethernet link status changed: %s\r\n", link_up ? "UP" : "DOWN"); - if (link_up) { - bsp_eth_status_t eth_status; - if (bsp_eth_get_status(ð_status) == HAL_RET_OK) { - log_info("Ethernet speed: %lu Mbps\r\n", eth_status.speed); - log_info("Ethernet duplex: %s\r\n", eth_status.duplex ? "Full" : "Half"); - } - } - last_link_status = link_up; - } - } - eth_check_timer = delay_get_tick(); // Reset timer - } /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ @@ -272,6 +140,231 @@ int main(void) /* USER CODE END 3 */ } +/** + * @brief 系统外设初始化函数 + * @retval 无 + */ +static void system_peripherals_init(void) +{ + // 初始化延时函数 + delay_init(); + // 初始化日志系统 + logging_init(); + + // 设置日志级别为调试 + logging_set_level(LOG_LEVEL_DEBUG); + + // 发送欢迎消息 + log_info("STM32F407VET6 系统初始化完成\r\n"); + log_info("LED每500ms闪烁一次\r\n"); + log_info("按键检测已启用\r\n"); + log_debug("调试日志已启用\r\n"); + + // 初始化以太网 + ethernet_init(); + + // 初始化LED + led_init_system(); + + // 初始化按键 + bsp_key_init(); + log_info("按键初始化完成\r\n"); + + // 初始化W25QXX + w25qxx_init_system(); +} + +/** + * @brief 以太网初始化函数 + * @retval 无 + */ +static void ethernet_init(void) +{ + log_debug("开始以太网初始化...\r\n"); + + // 获取板级配置信息 + const bsp_board_config_t* board_config = bsp_get_board_config(); + bsp_eth_config_t eth_config = board_config->eth; + + // 初始化以太网 + if (bsp_eth_init(ð_config) == HAL_RET_OK) { + log_info("以太网初始化成功\r\n"); + + // 获取以太网状态 + bsp_eth_status_t eth_status; + if (bsp_eth_get_status(ð_status) == HAL_RET_OK) { + log_info("以太网PHY ID: 0x%04X 0x%04X\r\n", eth_status.phy_id1, eth_status.phy_id2); + log_info("以太网连接状态: %s\r\n", eth_status.link_up ? "UP" : "DOWN"); + if (eth_status.link_up) { + log_info("以太网速度: %lu Mbps\r\n", eth_status.speed); + log_info("以太网双工模式: %s\r\n", eth_status.duplex ? "全双工" : "半双工"); + last_link_status = 1; + } + } + + // 获取MAC地址 + hal_eth_mac_addr_t mac_addr; + if (bsp_eth_get_mac_addr(&mac_addr) == HAL_RET_OK) { + log_info("以太网MAC地址: %02X:%02X:%02X:%02X:%02X:%02X\r\n", + mac_addr.byte[0], mac_addr.byte[1], mac_addr.byte[2], + mac_addr.byte[3], mac_addr.byte[4], mac_addr.byte[5]); + } + } else { + log_error("以太网初始化失败\r\n"); + } +} + +/** + * @brief LED初始化函数 + * @retval 无 + */ +static void led_init_system(void) +{ + // 获取板级配置信息 + const bsp_board_config_t* board_config = bsp_get_board_config(); + + // 从板级配置中获取LED配置 + led_config_t led_config = { + .gpio_port = board_config->leds.leds[0].port, + .gpio_pin = board_config->leds.leds[0].pin + }; + + // 初始化LED + led_init(&led, &led_config); + log_info("LED初始化完成\r\n"); +} + +/** + * @brief W25QXX初始化函数 + * @retval 无 + */ +static void w25qxx_init_system(void) +{ + log_debug("开始W25QXX初始化...\r\n"); + + // 初始化W25QXX + if (bsp_w25qxx_init()) { + log_info("W25QXX初始化成功\r\n"); + + // 获取设备信息 + w25qxx_device_info_t device_info; + if (bsp_w25qxx_get_device_info(&device_info)) { + log_info("W25QXX制造商ID: 0x%02X\r\n", device_info.manufacturer_id); + log_info("W25QXX设备ID: 0x%04X\r\n", device_info.device_id); + log_info("W25QXX容量: %lu 字节\r\n", device_info.capacity); + log_info("W25QXX页大小: %u 字节\r\n", device_info.page_size); + log_info("W25QXX扇区大小: %lu 字节\r\n", device_info.sector_size); + log_info("W25QXX块大小: %lu 字节\r\n", device_info.block_size); + } + } else { + log_error("W25QXX初始化失败\r\n"); + /* 即使初始化失败,也尝试读取设备信息以调试SPI连接 */ + w25qxx_device_info_t device_info; + if (bsp_w25qxx_get_device_info(&device_info)) { + log_error("调试 - 读取ID: 制造商=0x%02X, 设备=0x%04X\r\n", + device_info.manufacturer_id, device_info.device_id); + } + } +} + +/** + * @brief 按键事件处理函数 + * @retval 无 + */ +static void key_events_handler(void) +{ + /* KEY0事件 */ + if (bsp_key_get_press_event(BSP_KEY_ID_KEY0)) { + log_info("KEY0按下\r\n"); + } + if (bsp_key_get_release_event(BSP_KEY_ID_KEY0)) { + log_info("KEY0释放\r\n"); + } + if (bsp_key_get_short_press_event(BSP_KEY_ID_KEY0)) { + log_info("KEY0短按\r\n"); + } + if (bsp_key_get_long_press_event(BSP_KEY_ID_KEY0)) { + log_info("KEY0长按\r\n"); + } + if (bsp_key_get_repeat_event(BSP_KEY_ID_KEY0)) { + log_info("KEY0重复按下\r\n"); + } + + /* KEY1事件 */ + if (bsp_key_get_press_event(BSP_KEY_ID_KEY1)) { + log_info("KEY1按下\r\n"); + } + if (bsp_key_get_release_event(BSP_KEY_ID_KEY1)) { + log_info("KEY1释放\r\n"); + } + if (bsp_key_get_short_press_event(BSP_KEY_ID_KEY1)) { + log_info("KEY1短按\r\n"); + } + if (bsp_key_get_long_press_event(BSP_KEY_ID_KEY1)) { + log_info("KEY1长按\r\n"); + } + if (bsp_key_get_repeat_event(BSP_KEY_ID_KEY1)) { + log_info("KEY1重复按下\r\n"); + } + + /* WK_UP事件 */ + if (bsp_key_get_press_event(BSP_KEY_ID_WKUP)) { + log_info("WK_UP按下\r\n"); + } + if (bsp_key_get_release_event(BSP_KEY_ID_WKUP)) { + log_info("WK_UP释放\r\n"); + } + if (bsp_key_get_short_press_event(BSP_KEY_ID_WKUP)) { + log_info("WK_UP短按\r\n"); + } + if (bsp_key_get_long_press_event(BSP_KEY_ID_WKUP)) { + log_info("WK_UP长按\r\n"); + } + if (bsp_key_get_repeat_event(BSP_KEY_ID_WKUP)) { + log_info("WK_UP重复按下\r\n"); + } +} + +/** + * @brief LED闪烁处理函数 + * @retval 无 + */ +static void led_blink_handler(void) +{ + // 使用非阻塞定时器实现LED闪烁 + if ((delay_get_tick() - led_toggle_timer) >= LED_TOGGLE_INTERVAL) { + led_toggle(&led); // 切换LED状态 + log_debug("LED状态切换\r\n"); + led_toggle_timer = delay_get_tick(); // 重置定时器 + } +} + +/** + * @brief 以太网状态处理函数 + * @retval 无 + */ +static void ethernet_status_handler(void) +{ + // 定期检查以太网连接状态 + if ((delay_get_tick() - eth_check_timer) >= ETH_CHECK_INTERVAL) { + uint8_t link_up; + if (bsp_eth_check_link(&link_up) == HAL_RET_OK) { + if (link_up != last_link_status) { + log_info("以太网连接状态改变: %s\r\n", link_up ? "UP" : "DOWN"); + if (link_up) { + bsp_eth_status_t eth_status; + if (bsp_eth_get_status(ð_status) == HAL_RET_OK) { + log_info("以太网速度: %lu Mbps\r\n", eth_status.speed); + log_info("以太网双工模式: %s\r\n", eth_status.duplex ? "全双工" : "半双工"); + } + } + last_link_status = link_up; + } + } + eth_check_timer = delay_get_tick(); // 重置定时器 + } +} + /** * @brief System Clock Configuration * @retval None @@ -320,13 +413,13 @@ void SystemClock_Config(void) /* USER CODE END 4 */ /** - * @brief This function is executed in case of error occurrence. - * @retval None + * @brief 错误处理函数 + * @retval 无 */ void Error_Handler(void) { /* USER CODE BEGIN Error_Handler_Debug */ - /* User can add his own implementation to report the HAL error return state */ + /* 用户可以添加自己的实现来报告HAL错误返回状态 */ __disable_irq(); while (1) { @@ -336,17 +429,16 @@ void Error_Handler(void) #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 报告assert_param错误发生的源文件名和行号 + * @param file: 指向源文件名的指针 + * @param line: assert_param错误的源行号 + * @retval 无 */ void assert_failed(uint8_t *file, uint32_t line) { /* USER CODE BEGIN 6 */ - /* User can add his own implementation to report the file name and line number, - ex: printf("Wrong parameters value: file %s on line %d\r\n", file, line) */ - /* USER CODE END 6 */jn + /* 用户可以添加自己的实现来报告文件名和行号, + 例如: printf("参数值错误: 文件 %s 第 %d 行\r\n", file, line) */ + /* USER CODE END 6 */ } #endif /* USE_FULL_ASSERT */ diff --git a/CMakeCache.txt b/CMakeCache.txt new file mode 100644 index 0000000..0ad3668 --- /dev/null +++ b/CMakeCache.txt @@ -0,0 +1,389 @@ +# This is the CMakeCache file. +# For build in directory: e:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake +# It was generated by CMake: C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/bin/cmake.exe +# You can edit this file to change values found and used by cmake. +# If you do not want to change any of the values, simply exit the editor. +# If you do want to change a value, simply edit, save, and exit the editor. +# The syntax for the file is as follows: +# KEY:TYPE=VALUE +# KEY is the name of a variable in the cache. +# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. +# VALUE is the current value for the KEY. + +######################## +# EXTERNAL cache entries +######################## + +//Path to a program. +CMAKE_ADDR2LINE:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-addr2line.exe + +//Path to a program. +CMAKE_AR:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-ar.exe + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_AR:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_ASM_COMPILER_RANLIB:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the ASM compiler during all build types. +CMAKE_ASM_FLAGS:STRING= + +//Flags used by the ASM compiler during DEBUG builds. +CMAKE_ASM_FLAGS_DEBUG:STRING=-g + +//Flags used by the ASM compiler during MINSIZEREL builds. +CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the ASM compiler during RELEASE builds. +CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the ASM compiler during RELWITHDEBINFO builds. +CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Choose the type of build, options are: None Debug Release RelWithDebInfo +// MinSizeRel ... +CMAKE_BUILD_TYPE:STRING= + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_AR:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_CXX_COMPILER_RANLIB:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the CXX compiler during all build types. +CMAKE_CXX_FLAGS:STRING= + +//Flags used by the CXX compiler during DEBUG builds. +CMAKE_CXX_FLAGS_DEBUG:STRING=-g + +//Flags used by the CXX compiler during MINSIZEREL builds. +CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the CXX compiler during RELEASE builds. +CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the CXX compiler during RELWITHDEBINFO builds. +CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//A wrapper around 'ar' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_AR:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ar.exe + +//A wrapper around 'ranlib' adding the appropriate '--plugin' option +// for the GCC compiler +CMAKE_C_COMPILER_RANLIB:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-gcc-ranlib.exe + +//Flags used by the C compiler during all build types. +CMAKE_C_FLAGS:STRING= + +//Flags used by the C compiler during DEBUG builds. +CMAKE_C_FLAGS_DEBUG:STRING=-g + +//Flags used by the C compiler during MINSIZEREL builds. +CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG + +//Flags used by the C compiler during RELEASE builds. +CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG + +//Flags used by the C compiler during RELWITHDEBINFO builds. +CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG + +//Path to a program. +CMAKE_DLLTOOL:FILEPATH=D:/GCC/bin/dlltool.exe + +//Flags used by the linker during all build types. +CMAKE_EXE_LINKER_FLAGS:STRING= + +//Flags used by the linker during DEBUG builds. +CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during MINSIZEREL builds. +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during RELEASE builds. +CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during RELWITHDEBINFO builds. +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Enable/Disable output of build database during the build. +CMAKE_EXPORT_BUILD_DATABASE:BOOL= + +//Value Computed by CMake. +CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeFiles/pkgRedirects + +//Install path prefix, prepended onto install directories. +CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/stm32f407vet6_cmake + +//No help, variable specified on the command line. +CMAKE_MAKE_PROGRAM:UNINITIALIZED=ninja + +//Flags used by the linker during the creation of modules during +// all build types. +CMAKE_MODULE_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of modules during +// DEBUG builds. +CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of modules during +// MINSIZEREL builds. +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of modules during +// RELEASE builds. +CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of modules during +// RELWITHDEBINFO builds. +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_NM:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-nm.exe + +//Path to a program. +CMAKE_OBJDUMP:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-objdump.exe + +//Value Computed by CMake +CMAKE_PROJECT_DESCRIPTION:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_HOMEPAGE_URL:STATIC= + +//Value Computed by CMake +CMAKE_PROJECT_NAME:STATIC=stm32f407vet6_cmake + +//Path to a program. +CMAKE_RANLIB:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-ranlib.exe + +//Path to a program. +CMAKE_READELF:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-readelf.exe + +//Flags used by the linker during the creation of shared libraries +// during all build types. +CMAKE_SHARED_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of shared libraries +// during DEBUG builds. +CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of shared libraries +// during MINSIZEREL builds. +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELEASE builds. +CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of shared libraries +// during RELWITHDEBINFO builds. +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//If set, runtime paths are not added when installing shared libraries, +// but are added when building. +CMAKE_SKIP_INSTALL_RPATH:BOOL=NO + +//If set, runtime paths are not added when using shared libraries. +CMAKE_SKIP_RPATH:BOOL=NO + +//Flags used by the linker during the creation of static libraries +// during all build types. +CMAKE_STATIC_LINKER_FLAGS:STRING= + +//Flags used by the linker during the creation of static libraries +// during DEBUG builds. +CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= + +//Flags used by the linker during the creation of static libraries +// during MINSIZEREL builds. +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELEASE builds. +CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= + +//Flags used by the linker during the creation of static libraries +// during RELWITHDEBINFO builds. +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= + +//Path to a program. +CMAKE_STRIP:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-strip.exe + +//Path to a program. +CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND + +//The CMake toolchain file +CMAKE_TOOLCHAIN_FILE:FILEPATH=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/gcc-arm-none-eabi.cmake + +//If this value is on, makefiles will be generated without the +// .SILENT directive, and all commands will be echoed to the console +// during the make. This is useful for debugging only. With Visual +// Studio IDE projects all commands are done without /nologo. +CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE + +//Value Computed by CMake +stm32f407vet6_cmake_BINARY_DIR:STATIC=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake + +//Value Computed by CMake +stm32f407vet6_cmake_IS_TOP_LEVEL:STATIC=ON + +//Value Computed by CMake +stm32f407vet6_cmake_SOURCE_DIR:STATIC=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake + + +######################## +# INTERNAL cache entries +######################## + +//ADVANCED property for variable: CMAKE_ADDR2LINE +CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_AR +CMAKE_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR +CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB +CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +CMAKE_ASM_COMPILER_WORKS:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS +CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG +CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL +CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE +CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO +CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//This is the directory where this CMakeCache.txt was created +CMAKE_CACHEFILE_DIR:INTERNAL=e:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake +//Major version of cmake used to create the current loaded cache +CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 +//Minor version of cmake used to create the current loaded cache +CMAKE_CACHE_MINOR_VERSION:INTERNAL=31 +//Patch version of cmake used to create the current loaded cache +CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 +//Path to CMake executable. +CMAKE_COMMAND:INTERNAL=C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/bin/cmake.exe +//Path to cpack program executable. +CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/bin/cpack.exe +//Path to ctest program executable. +CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/bin/ctest.exe +//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR +CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB +CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS +CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG +CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL +CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE +CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO +CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_AR +CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB +CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS +CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG +CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL +CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE +CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO +CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_DLLTOOL +CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 +//Path to cache edit program executable. +CMAKE_EDIT_COMMAND:INTERNAL=C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/bin/cmake-gui.exe +//Executable file format +CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS +CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG +CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL +CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE +CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_EXPORT_BUILD_DATABASE +CMAKE_EXPORT_BUILD_DATABASE-ADVANCED:INTERNAL=1 +//Name of external makefile project generator. +CMAKE_EXTRA_GENERATOR:INTERNAL= +//Name of generator. +CMAKE_GENERATOR:INTERNAL=Ninja +//Generator instance identifier. +CMAKE_GENERATOR_INSTANCE:INTERNAL= +//Name of generator platform. +CMAKE_GENERATOR_PLATFORM:INTERNAL= +//Name of generator toolset. +CMAKE_GENERATOR_TOOLSET:INTERNAL= +//Source directory with the top level CMakeLists.txt file for this +// project +CMAKE_HOME_DIRECTORY:INTERNAL=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS +CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG +CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL +CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE +CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_NM +CMAKE_NM-ADVANCED:INTERNAL=1 +//number of local generators +CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=11 +//ADVANCED property for variable: CMAKE_OBJDUMP +CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 +//Platform information initialized +CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_RANLIB +CMAKE_RANLIB-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_READELF +CMAKE_READELF-ADVANCED:INTERNAL=1 +//Path to CMake installation. +CMAKE_ROOT:INTERNAL=C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS +CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG +CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL +CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE +CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH +CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_SKIP_RPATH +CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS +CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG +CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL +CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE +CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO +CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_STRIP +CMAKE_STRIP-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_TAPI +CMAKE_TAPI-ADVANCED:INTERNAL=1 +//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE +CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 + diff --git a/CMakeLists.txt b/CMakeLists.txt index 51ed895..f4da0ac 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -29,6 +29,7 @@ endif() # Include toolchain file include("cmake/gcc-arm-none-eabi.cmake") + # Enable compile command to ease indexing with e.g. clangd set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE) diff --git a/build.ninja b/build.ninja index 5830a58..505bbfa 100644 --- a/build.ninja +++ b/build.ninja @@ -1,5 +1,5 @@ # CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.28 +# Generated by "Ninja" Generator, CMake Version 3.31 # This file contains all the build statements describing the # compilation DAG. @@ -39,7 +39,7 @@ include CMakeFiles/rules.ninja ############################################# # Logical path to working directory; prefix for absolute paths. -cmake_ninja_workdir = C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/ +cmake_ninja_workdir = E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/ # ============================================================================= # Object build statements for EXECUTABLE target stm32f407vet6_cmake @@ -47,67 +47,55 @@ cmake_ninja_workdir = C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_c ############################################# # Order-only phony target for stm32f407vet6_cmake -build cmake_object_order_depends_target_stm32f407vet6_cmake: phony || cmake_object_order_depends_target_STM32_Drivers +build cmake_object_order_depends_target_stm32f407vet6_cmake: phony || cmake_object_order_depends_target_STM32_Drivers cmake_object_order_depends_target_bsp cmake_object_order_depends_target_delay cmake_object_order_depends_target_hal cmake_object_order_depends_target_led cmake_object_order_depends_target_logging cmake_object_order_depends_target_uart cmake_object_order_depends_target_w25qxx -build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/main.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/main.c || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Src/main.c || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER - DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src\main.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\APP\Src\main.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir - OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb + OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\APP\Src -build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/stm32f4xx_it.c || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Src/stm32f4xx_it.c || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src\stm32f4xx_it.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb -build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/stm32f4xx_hal_msp.c || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Src/stm32f4xx_hal_msp.c || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src\stm32f4xx_hal_msp.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb -build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/sysmem.c || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Src/sysmem.c || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src\sysmem.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb -build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/syscalls.c || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj: C_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Src/syscalls.c || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src\syscalls.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir\Core\Src - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb -build CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj: ASM_COMPILER__stm32f407vet6_cmake_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/startup_stm32f407xx.s || cmake_object_order_depends_target_stm32f407vet6_cmake +build CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj: ASM_COMPILER__stm32f407vet6_cmake_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/startup_stm32f407xx.s || cmake_object_order_depends_target_stm32f407vet6_cmake DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = CMakeFiles\stm32f407vet6_cmake.dir\startup_stm32f407xx.s.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -x assembler-with-cpp -MMD -MP -g - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -x assembler-with-cpp -MMD -MP -g3 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir OBJECT_FILE_DIR = CMakeFiles\stm32f407vet6_cmake.dir - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ - TARGET_PDB = stm32f407vet6_cmake.pdb # ============================================================================= @@ -117,21 +105,21 @@ build CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj: ASM_COMPILER ############################################# # Link the executable stm32f407vet6_cmake.elf -build stm32f407vet6_cmake.elf: C_EXECUTABLE_LINKER__stm32f407vet6_cmake_Debug cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/main.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj || cmake/stm32cubemx/STM32_Drivers - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 +build stm32f407vet6_cmake.elf: C_EXECUTABLE_LINKER__stm32f407vet6_cmake_Debug cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj | BSP/libbsp.a HAL/libhal.a Modules/led/libled.a Modules/delay/libdelay.a Modules/uart/libuart.a Middlewares/logging/liblogging.a Modules/w25qxx/libw25qxx.a Modules/uart/libuart.a HAL/libhal.a || BSP/libbsp.a HAL/libhal.a Middlewares/logging/liblogging.a Modules/delay/libdelay.a Modules/led/libled.a Modules/uart/libuart.a Modules/w25qxx/libw25qxx.a cmake/stm32cubemx/STM32_Drivers + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + LINK_LIBRARIES = BSP/libbsp.a HAL/libhal.a Modules/led/libled.a Modules/delay/libdelay.a Modules/uart/libuart.a Middlewares/logging/liblogging.a Modules/w25qxx/libw25qxx.a Modules/uart/libuart.a HAL/libhal.a OBJECT_DIR = CMakeFiles\stm32f407vet6_cmake.dir - POST_BUILD = cd . + POST_BUILD = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake && arm-none-eabi-objcopy -O binary E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/stm32f407vet6_cmake.elf E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/stm32f407vet6_cmake.bin && cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake && arm-none-eabi-objcopy -O ihex E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/stm32f407vet6_cmake.elf E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/stm32f407vet6_cmake.hex" PRE_LINK = cd . - TARGET_COMPILE_PDB = CMakeFiles\stm32f407vet6_cmake.dir\ TARGET_FILE = stm32f407vet6_cmake.elf - TARGET_PDB = stm32f407vet6_cmake.pdb + TARGET_PDB = stm32f407vet6_cmake.elf.dbg ############################################# # Utility command for edit_cache build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake && C:\ST\STM32CubeCLT_1.18.0\CMake\bin\cmake-gui.exe -SC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake -BC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake" + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" DESC = Running CMake cache editor... pool = console restat = 1 @@ -143,7 +131,7 @@ build edit_cache: phony CMakeFiles/edit_cache.util # Utility command for rebuild_cache build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake && C:\ST\STM32CubeCLT_1.18.0\CMake\bin\cmake.exe --regenerate-during-build -SC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake -BC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake" + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" DESC = Running CMake to regenerate build system... pool = console restat = 1 @@ -152,7 +140,7 @@ build rebuild_cache: phony CMakeFiles/rebuild_cache.util # ============================================================================= # Write statements declared in CMakeLists.txt: -# C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/CMakeLists.txt +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeLists.txt # ============================================================================= # ============================================================================= @@ -162,161 +150,157 @@ build rebuild_cache: phony CMakeFiles/rebuild_cache.util ############################################# # Order-only phony target for STM32_Drivers -build cmake_object_order_depends_target_STM32_Drivers: phony || cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir +build cmake_object_order_depends_target_STM32_Drivers: phony || . -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Src/system_stm32f4xx.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Src/system_stm32f4xx.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Core\Src\system_stm32f4xx.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Core\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_rcc_ex.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ex.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_flash_ramfunc.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_gpio.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma_ex.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_dma.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_pwr_ex.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_cortex.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" -build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug C$:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c || cmake_object_order_depends_target_STM32_Drivers +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c || cmake_object_order_depends_target_STM32_Drivers DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_exti.c.obj.d - FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 - INCLUDES = -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir + OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src + +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c || cmake_object_order_depends_target_STM32_Drivers + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_uart.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir + OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src + +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c || cmake_object_order_depends_target_STM32_Drivers + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_spi.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir + OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src + +build cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj: C_COMPILER__STM32_Drivers_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c || cmake_object_order_depends_target_STM32_Drivers + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src\stm32f4xx_hal_eth.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include OBJECT_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir OBJECT_FILE_DIR = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\__\__\Drivers\STM32F4xx_HAL_Driver\Src - TARGET_COMPILE_PDB = cmake\stm32cubemx\CMakeFiles\STM32_Drivers.dir\ - TARGET_PDB = "" ############################################# # Object library STM32_Drivers -build cmake/stm32cubemx/STM32_Drivers: phony cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj +build cmake/stm32cubemx/STM32_Drivers: phony cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj ############################################# # Utility command for edit_cache build cmake/stm32cubemx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake\cmake\stm32cubemx && C:\ST\STM32CubeCLT_1.18.0\CMake\bin\cmake-gui.exe -SC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake -BC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake" + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\cmake\stm32cubemx && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" DESC = Running CMake cache editor... pool = console restat = 1 @@ -328,34 +312,744 @@ build cmake/stm32cubemx/edit_cache: phony cmake/stm32cubemx/CMakeFiles/edit_cach # Utility command for rebuild_cache build cmake/stm32cubemx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cmd.exe /C "cd /D C:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake\cmake\stm32cubemx && C:\ST\STM32CubeCLT_1.18.0\CMake\bin\cmake.exe --regenerate-during-build -SC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake -BC:\Users\bico\Desktop\stm32f407vet6_cmake\stm32f407vet6_cmake" + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\cmake\stm32cubemx && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" DESC = Running CMake to regenerate build system... pool = console restat = 1 build cmake/stm32cubemx/rebuild_cache: phony cmake/stm32cubemx/CMakeFiles/rebuild_cache.util +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target hal + + +############################################# +# Order-only phony target for hal + +build cmake_object_order_depends_target_hal: phony || . + +build HAL/CMakeFiles/hal.dir/Src/hal.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal_gpio.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal_gpio.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal_delay.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal_delay.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal_uart.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal_uart.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal_spi.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal_spi.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/hal_eth.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\hal_eth.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4_gpio.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4_gpio.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4_uart.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4_uart.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4_delay.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4_delay.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4_spi.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4_spi.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + +build HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj: C_COMPILER__hal_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Src/arch/stm32f4/hal_stm32f4_eth.c || cmake_object_order_depends_target_hal + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4\hal_stm32f4_eth.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include + OBJECT_DIR = HAL\CMakeFiles\hal.dir + OBJECT_FILE_DIR = HAL\CMakeFiles\hal.dir\Src\arch\stm32f4 + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target hal + + +############################################# +# Link the static library HAL\libhal.a + +build HAL/libhal.a: C_STATIC_LIBRARY_LINKER__hal_Debug HAL/CMakeFiles/hal.dir/Src/hal.c.obj HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = HAL\CMakeFiles\hal.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = HAL\libhal.a + TARGET_PDB = hal.a.dbg + + +############################################# +# Utility command for edit_cache + +build HAL/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\HAL && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build HAL/edit_cache: phony HAL/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build HAL/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\HAL && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build HAL/rebuild_cache: phony HAL/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target bsp + + +############################################# +# Order-only phony target for bsp + +build cmake_object_order_depends_target_bsp: phony || cmake_object_order_depends_target_delay cmake_object_order_depends_target_hal cmake_object_order_depends_target_w25qxx + +build BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/bsp_init.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\bsp_init.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + +build BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/stm32f407vet6_board.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\stm32f407vet6_board.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + +build BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/bsp_board_manager.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\bsp_board_manager.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + +build BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/bsp_w25qxx.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\bsp_w25qxx.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + +build BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/bsp_key.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\bsp_key.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + +build BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj: C_COMPILER__bsp_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Src/bsp_eth.c || cmake_object_order_depends_target_bsp + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = BSP\CMakeFiles\bsp.dir\Src\bsp_eth.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + OBJECT_FILE_DIR = BSP\CMakeFiles\bsp.dir\Src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target bsp + + +############################################# +# Link the static library BSP\libbsp.a + +build BSP/libbsp.a: C_STATIC_LIBRARY_LINKER__bsp_Debug BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj || HAL/libhal.a Modules/delay/libdelay.a Modules/w25qxx/libw25qxx.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = BSP\CMakeFiles\bsp.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = BSP\libbsp.a + TARGET_PDB = bsp.a.dbg + + +############################################# +# Utility command for edit_cache + +build BSP/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\BSP && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build BSP/edit_cache: phony BSP/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build BSP/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\BSP && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build BSP/rebuild_cache: phony BSP/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build Modules/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Modules/edit_cache: phony Modules/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Modules/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Modules/rebuild_cache: phony Modules/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target led + + +############################################# +# Order-only phony target for led + +build cmake_object_order_depends_target_led: phony || cmake_object_order_depends_target_hal + +build Modules/led/CMakeFiles/led.dir/src/led.c.obj: C_COMPILER__led_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/src/led.c || cmake_object_order_depends_target_led + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = Modules\led\CMakeFiles\led.dir\src\led.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 + OBJECT_DIR = Modules\led\CMakeFiles\led.dir + OBJECT_FILE_DIR = Modules\led\CMakeFiles\led.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target led + + +############################################# +# Link the static library Modules\led\libled.a + +build Modules/led/libled.a: C_STATIC_LIBRARY_LINKER__led_Debug Modules/led/CMakeFiles/led.dir/src/led.c.obj || HAL/libhal.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = Modules\led\CMakeFiles\led.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = Modules\led\libled.a + TARGET_PDB = led.a.dbg + + +############################################# +# Utility command for edit_cache + +build Modules/led/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\led && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Modules/led/edit_cache: phony Modules/led/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Modules/led/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\led && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Modules/led/rebuild_cache: phony Modules/led/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target delay + + +############################################# +# Order-only phony target for delay + +build cmake_object_order_depends_target_delay: phony || cmake_object_order_depends_target_hal + +build Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj: C_COMPILER__delay_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/src/delay.c || cmake_object_order_depends_target_delay + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = Modules\delay\CMakeFiles\delay.dir\src\delay.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 + OBJECT_DIR = Modules\delay\CMakeFiles\delay.dir + OBJECT_FILE_DIR = Modules\delay\CMakeFiles\delay.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target delay + + +############################################# +# Link the static library Modules\delay\libdelay.a + +build Modules/delay/libdelay.a: C_STATIC_LIBRARY_LINKER__delay_Debug Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj || HAL/libhal.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = Modules\delay\CMakeFiles\delay.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = Modules\delay\libdelay.a + TARGET_PDB = delay.a.dbg + + +############################################# +# Utility command for edit_cache + +build Modules/delay/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\delay && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Modules/delay/edit_cache: phony Modules/delay/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Modules/delay/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\delay && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Modules/delay/rebuild_cache: phony Modules/delay/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target uart + + +############################################# +# Order-only phony target for uart + +build cmake_object_order_depends_target_uart: phony || cmake_object_order_depends_target_hal + +build Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj: C_COMPILER__uart_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/src/uart.c || cmake_object_order_depends_target_uart + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = Modules\uart\CMakeFiles\uart.dir\src\uart.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 + OBJECT_DIR = Modules\uart\CMakeFiles\uart.dir + OBJECT_FILE_DIR = Modules\uart\CMakeFiles\uart.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target uart + + +############################################# +# Link the static library Modules\uart\libuart.a + +build Modules/uart/libuart.a: C_STATIC_LIBRARY_LINKER__uart_Debug Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj || HAL/libhal.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = Modules\uart\CMakeFiles\uart.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = Modules\uart\libuart.a + TARGET_PDB = uart.a.dbg + + +############################################# +# Utility command for edit_cache + +build Modules/uart/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\uart && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Modules/uart/edit_cache: phony Modules/uart/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Modules/uart/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\uart && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Modules/uart/rebuild_cache: phony Modules/uart/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target w25qxx + + +############################################# +# Order-only phony target for w25qxx + +build cmake_object_order_depends_target_w25qxx: phony || cmake_object_order_depends_target_hal + +build Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj: C_COMPILER__w25qxx_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Src/w25qxx.c || cmake_object_order_depends_target_w25qxx + DEFINES = -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER + DEP_FILE = Modules\w25qxx\CMakeFiles\w25qxx.dir\Src\w25qxx.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 + OBJECT_DIR = Modules\w25qxx\CMakeFiles\w25qxx.dir + OBJECT_FILE_DIR = Modules\w25qxx\CMakeFiles\w25qxx.dir\Src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target w25qxx + + +############################################# +# Link the static library Modules\w25qxx\libw25qxx.a + +build Modules/w25qxx/libw25qxx.a: C_STATIC_LIBRARY_LINKER__w25qxx_Debug Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj || HAL/libhal.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = Modules\w25qxx\CMakeFiles\w25qxx.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = Modules\w25qxx\libw25qxx.a + TARGET_PDB = w25qxx.a.dbg + + +############################################# +# Utility command for edit_cache + +build Modules/w25qxx/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\w25qxx && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Modules/w25qxx/edit_cache: phony Modules/w25qxx/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Modules/w25qxx/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Modules\w25qxx && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Modules/w25qxx/rebuild_cache: phony Modules/w25qxx/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/CMakeLists.txt +# ============================================================================= + + +############################################# +# Utility command for edit_cache + +build Middlewares/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Middlewares && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Middlewares/edit_cache: phony Middlewares/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Middlewares/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Middlewares && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Middlewares/rebuild_cache: phony Middlewares/CMakeFiles/rebuild_cache.util + +# ============================================================================= +# Write statements declared in CMakeLists.txt: +# E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/CMakeLists.txt +# ============================================================================= + +# ============================================================================= +# Object build statements for STATIC_LIBRARY target logging + + +############################################# +# Order-only phony target for logging + +build cmake_object_order_depends_target_logging: phony || cmake_object_order_depends_target_hal cmake_object_order_depends_target_uart + +build Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj: C_COMPILER__logging_unscanned_Debug E$:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/src/logging.c || cmake_object_order_depends_target_logging + DEP_FILE = Middlewares\logging\CMakeFiles\logging.dir\src\logging.c.obj.d + FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK + INCLUDES = -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 + OBJECT_DIR = Middlewares\logging\CMakeFiles\logging.dir + OBJECT_FILE_DIR = Middlewares\logging\CMakeFiles\logging.dir\src + + +# ============================================================================= +# Link build statements for STATIC_LIBRARY target logging + + +############################################# +# Link the static library Middlewares\logging\liblogging.a + +build Middlewares/logging/liblogging.a: C_STATIC_LIBRARY_LINKER__logging_Debug Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj || HAL/libhal.a Modules/uart/libuart.a + LANGUAGE_COMPILE_FLAGS = -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 + OBJECT_DIR = Middlewares\logging\CMakeFiles\logging.dir + POST_BUILD = cd . + PRE_LINK = cd . + TARGET_FILE = Middlewares\logging\liblogging.a + TARGET_PDB = logging.a.dbg + + +############################################# +# Utility command for edit_cache + +build Middlewares/logging/CMakeFiles/edit_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Middlewares\logging && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake-gui.exe -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake cache editor... + pool = console + restat = 1 + +build Middlewares/logging/edit_cache: phony Middlewares/logging/CMakeFiles/edit_cache.util + + +############################################# +# Utility command for rebuild_cache + +build Middlewares/logging/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND + COMMAND = C:\windows\system32\cmd.exe /C "cd /D E:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake\Middlewares\logging && C:\Users\ZHIZHANKEJI\AppData\Local\Programs\Python\Python311\Lib\site-packages\cmake\data\bin\cmake.exe --regenerate-during-build -SE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake -BE:\Jfen_work\local_git_code\test_port\stm32f407vet6_cmake" + DESC = Running CMake to regenerate build system... + pool = console + restat = 1 + +build Middlewares/logging/rebuild_cache: phony Middlewares/logging/CMakeFiles/rebuild_cache.util + # ============================================================================= # Target aliases. build STM32_Drivers: phony cmake/stm32cubemx/STM32_Drivers +build bsp: phony BSP/libbsp.a + +build delay: phony Modules/delay/libdelay.a + +build hal: phony HAL/libhal.a + +build led: phony Modules/led/libled.a + +build libbsp.a: phony BSP/libbsp.a + +build libdelay.a: phony Modules/delay/libdelay.a + +build libhal.a: phony HAL/libhal.a + +build libled.a: phony Modules/led/libled.a + +build liblogging.a: phony Middlewares/logging/liblogging.a + +build libuart.a: phony Modules/uart/libuart.a + +build libw25qxx.a: phony Modules/w25qxx/libw25qxx.a + +build logging: phony Middlewares/logging/liblogging.a + build stm32f407vet6_cmake: phony stm32f407vet6_cmake.elf +build uart: phony Modules/uart/libuart.a + +build w25qxx: phony Modules/w25qxx/libw25qxx.a + # ============================================================================= # Folder targets. # ============================================================================= ############################################# -# Folder: C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake -build all: phony stm32f407vet6_cmake.elf cmake/stm32cubemx/all +build all: phony stm32f407vet6_cmake.elf cmake/stm32cubemx/all HAL/all BSP/all Modules/all Middlewares/all # ============================================================================= ############################################# -# Folder: C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/cmake/stm32cubemx +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP + +build BSP/all: phony BSP/libbsp.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL + +build HAL/all: phony HAL/libhal.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares + +build Middlewares/all: phony Middlewares/logging/all + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging + +build Middlewares/logging/all: phony Middlewares/logging/liblogging.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules + +build Modules/all: phony Modules/led/all Modules/delay/all Modules/uart/all Modules/w25qxx/all + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay + +build Modules/delay/all: phony Modules/delay/libdelay.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led + +build Modules/led/all: phony Modules/led/libled.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart + +build Modules/uart/all: phony Modules/uart/libuart.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx + +build Modules/w25qxx/all: phony Modules/w25qxx/libw25qxx.a + +# ============================================================================= + +############################################# +# Folder: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/stm32cubemx build cmake/stm32cubemx/all: phony cmake/stm32cubemx/STM32_Drivers @@ -366,14 +1060,14 @@ build cmake/stm32cubemx/all: phony cmake/stm32cubemx/STM32_Drivers ############################################# # Re-run CMake if any of its inputs changed. -build build.ninja: RERUN_CMAKE | C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeASMCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeASMInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCCompilerABI.c C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeGenericSystem.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeNinjaFindMake.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystem.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestASMCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-ASM.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-C.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.28.1/CMakeASMCompiler.cmake CMakeFiles/3.28.1/CMakeCCompiler.cmake CMakeFiles/3.28.1/CMakeCXXCompiler.cmake CMakeFiles/3.28.1/CMakeSystem.cmake CMakeLists.txt cmake/gcc-arm-none-eabi.cmake cmake/stm32cubemx/CMakeLists.txt +build build.ninja: RERUN_CMAKE | BSP/CMakeLists.txt C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeASMInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeGenericSystem.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeInitializeConfigs.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeLanguageInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-ASM.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-C.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-CXX.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.31.2/CMakeASMCompiler.cmake CMakeFiles/3.31.2/CMakeCCompiler.cmake CMakeFiles/3.31.2/CMakeCXXCompiler.cmake CMakeFiles/3.31.2/CMakeSystem.cmake CMakeLists.txt HAL/CMakeLists.txt Middlewares/CMakeLists.txt Middlewares/logging/CMakeLists.txt Modules/CMakeLists.txt Modules/delay/CMakeLists.txt Modules/led/CMakeLists.txt Modules/uart/CMakeLists.txt Modules/w25qxx/CMakeLists.txt cmake/gcc-arm-none-eabi.cmake cmake/stm32cubemx/CMakeLists.txt pool = console ############################################# # A missing CMake input file is not an error. -build C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeASMCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeASMInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCCompilerABI.c C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXCompiler.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXCompilerABI.cpp C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCXXInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCommonLanguageInclude.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeCompilerIdDetection.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineASMCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCXXCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompileFeatures.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerABI.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineCompilerId.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeDetermineSystem.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeFindBinUtils.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeGenericSystem.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeInitializeConfigs.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeLanguageInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeNinjaFindMake.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseImplicitIncludeInfo.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseImplicitLinkInfo.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeParseLibraryArchitecture.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystem.cmake.in C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInformation.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeSystemSpecificInitialize.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestASMCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCXXCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/CMakeTestCompilerCommon.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ADSP-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ARMCC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/ARMClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/AppleClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Borland-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Bruce-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Clang-DetermineCompilerInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Compaq-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Cray-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/CrayClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Embarcadero-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Fujitsu-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GHS-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-ASM.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-C.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-CXX.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU-FindBinUtils.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/GNU.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/HP-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/HP-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IAR-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Intel-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/LCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/MSVC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/NVHPC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/NVIDIA-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/OrangeC-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/PGI-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/PathScale-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SCO-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SDCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SunPro-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/TI-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Tasking-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/Watcom-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XL-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XL-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XLClang-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/zOS-C-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Internal/FeatureTesting.cmake C$:/ST/STM32CubeCLT_1.18.0/CMake/share/cmake-3.28/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.28.1/CMakeASMCompiler.cmake CMakeFiles/3.28.1/CMakeCCompiler.cmake CMakeFiles/3.28.1/CMakeCXXCompiler.cmake CMakeFiles/3.28.1/CMakeSystem.cmake CMakeLists.txt cmake/gcc-arm-none-eabi.cmake cmake/stm32cubemx/CMakeLists.txt: phony +build BSP/CMakeLists.txt C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeASMInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCommonLanguageInclude.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeGenericSystem.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeInitializeConfigs.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeLanguageInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeSystemSpecificInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeSystemSpecificInitialize.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/CMakeCommonCompilerMacros.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-ASM.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-C.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU-CXX.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Compiler/GNU.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeASMLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCXXLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeCommonLinkerInformation.cmake C$:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Platform/Generic.cmake CMakeCache.txt CMakeFiles/3.31.2/CMakeASMCompiler.cmake CMakeFiles/3.31.2/CMakeCCompiler.cmake CMakeFiles/3.31.2/CMakeCXXCompiler.cmake CMakeFiles/3.31.2/CMakeSystem.cmake CMakeLists.txt HAL/CMakeLists.txt Middlewares/CMakeLists.txt Middlewares/logging/CMakeLists.txt Modules/CMakeLists.txt Modules/delay/CMakeLists.txt Modules/led/CMakeLists.txt Modules/uart/CMakeLists.txt Modules/w25qxx/CMakeLists.txt cmake/gcc-arm-none-eabi.cmake cmake/stm32cubemx/CMakeLists.txt: phony ############################################# diff --git a/build/Debug/.ninja_deps b/build/Debug/.ninja_deps index de89a1a..df8dc16 100644 Binary files a/build/Debug/.ninja_deps and b/build/Debug/.ninja_deps differ diff --git a/build/Debug/.ninja_log b/build/Debug/.ninja_log index 247b9ce..9d3d063 100644 --- a/build/Debug/.ninja_log +++ b/build/Debug/.ninja_log @@ -1,177 +1,112 @@ # ninja log v7 -16 204 7913678175972418 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 62b5fd3fc12a56ec -19 180 7913678176002877 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj f7ed58542e885692 -24 186 7913678176048676 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 8a7978fd4bbb8138 -29 267 7913678176095809 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj ad6d0ca858ff9fd6 -21 225 7913678176018106 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 9539d7c56f2172a5 -13 260 7913678175942020 HAL/CMakeFiles/hal.dir/Src/hal.c.obj e4949ba37d831425 -50 293 7913678176318911 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 26bf75277b3a6f97 -55 310 7913678176357464 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 6e3afd2d96cd96f6 -59 359 7913678176396800 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 822d4b2e91a026bb -26 440 7913678176063858 HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj ac57850a3bab3ec7 -32 446 7913678176135356 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj b338571a161a0c05 -39 430 7913678176194779 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj d88822697976a923 -36 467 7913678176163964 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 959718d65736c9b8 -43 488 7913678176240604 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 2876067dae4cbc08 -225 462 7913678178057632 Modules/led/CMakeFiles/led.dir/src/led.c.obj 361c0065047668c7 -18 108 7913708859832483 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 2bcc927ced55ce7e -359 648 7913678179400189 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 3352bb6321aecc50 -260 484 7913678178411937 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 86b0f61c89236124 -28 117 7913708859921868 BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj b6a0078da5412305 -324 593 7913678179056025 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj cb5c7263e77f8f30 -331 573 7913678179117695 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 1cc09fc1ce7816fd -310 834 7913678178912097 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj c3bbce33b0b94778 -293 826 7913678178742779 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 9611a8c19b40aae4 -430 950 7913678180106606 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 2fecb60abe437fd4 -446 955 7913678180270390 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 218cb40779246324 -440 949 7913678180209388 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj c501785e017c114f -467 960 7913678180480076 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 893450a2eac32131 -455 964 7913678180350431 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 2a91ea98adea2812 -474 982 7913678180541017 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj f8f0c6839c7ab1ce -462 1007 7913678180429239 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 6808052da57aca4 -488 1003 7913678180697315 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e4f00c48fc0b0584 -484 987 7913678180652368 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 4cff397e5a4886f8 -478 1007 7913678180585726 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 22b8b5194dc4de2 -568 991 7913678181489306 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 76711d5ea0da574a -648 1181 7913678182288538 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 560bfe4b0f4f6bf9 -573 1057 7913678181540484 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 9a176c76dab639f -593 1098 7913678181742591 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj 52aa8800389330b7 -811 1243 7913678183913519 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj ba7ee8080eb94038 -826 1247 7913678184067546 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj ca8829d822319459 -47 511 7913678176278518 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj 1cb29b3f591666fd -3 107 7913708859678310 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea -8 114 7913708859723754 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj f1e5fe9bebf9e02 -14 111 7913708859786106 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 8f418e92fedc44fd -511 1074 7913678180917315 HAL/libhal.a 828bea71b532158c -23 149 7913708859878613 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a -1074 1165 7913678186545531 Modules/delay/libdelay.a fa50f3f1c7df37b -1080 1158 7913678186608133 Modules/uart/libuart.a f980800b2f79773c -1086 1165 7913678186670015 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c -1092 1172 7913678186716200 Modules/led/libled.a 4975295d4e0f5144 -1158 1228 7913678187394160 Middlewares/logging/liblogging.a df543b4167ac9a8e -149 219 7913708861144569 BSP/libbsp.a fcf7ba39dd15dcd0 -33 258 7913708859968293 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416 -3 222 7913677176690685 build.ninja 7cc4d7f17f077294 -834 1239 7913678184156723 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 42cf21cc05a6eb7a -258 483 7913708862230295 stm32f407vet6_cmake.elf f513187faf41df81 -1 17 7913678172005669 CMakeFiles/clean.additional a8e8475892b6c694 -17 35 7913678172158851 clean 48fb0083216ba165 -5 91 7913712058859748 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea -91 151 7913712059734349 BSP/libbsp.a fcf7ba39dd15dcd0 -151 383 7913712060319146 stm32f407vet6_cmake.elf f513187faf41df81 -4 95 7913718470650472 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a -95 154 7913718471572778 BSP/libbsp.a fcf7ba39dd15dcd0 -9 203 7913718470697125 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416 -203 420 7913718472652095 stm32f407vet6_cmake.elf f513187faf41df81 -1 17 7913723755318989 CMakeFiles/clean.additional a8e8475892b6c694 -17 35 7913723755473029 clean 48fb0083216ba165 -43 198 7913723757734855 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj ad6d0ca858ff9fd6 -21 207 7913723757516286 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 62b5fd3fc12a56ec -34 213 7913723757642275 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 8a7978fd4bbb8138 -25 219 7913723757563546 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj f7ed58542e885692 -30 223 7913723757610148 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 9539d7c56f2172a5 -18 243 7913723757485544 HAL/CMakeFiles/hal.dir/Src/hal.c.obj e4949ba37d831425 -79 266 7913723758101255 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 822d4b2e91a026bb -67 272 7913723757984035 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 26bf75277b3a6f97 -93 278 7913723758231372 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj f1e5fe9bebf9e02 -72 285 7913723758032784 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 6e3afd2d96cd96f6 -86 310 7913723758172771 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea -100 367 7913723758310000 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 8f418e92fedc44fd -199 378 7913723759297576 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 2bcc927ced55ce7e -213 391 7913723759444719 BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj b6a0078da5412305 -51 404 7913723757817745 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 959718d65736c9b8 -219 413 7913723759495102 Modules/led/CMakeFiles/led.dir/src/led.c.obj 361c0065047668c7 -47 420 7913723757787493 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj b338571a161a0c05 -223 426 7913723759545802 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 86b0f61c89236124 -38 434 7913723757688676 HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj ac57850a3bab3ec7 -207 458 7913723759378378 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a -278 463 7913723760094561 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj cb5c7263e77f8f30 -55 467 7913723757858123 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj d88822697976a923 -310 490 7913723760408804 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 3352bb6321aecc50 -63 505 7913723757935395 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj 1cb29b3f591666fd -58 512 7913723757898606 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 2876067dae4cbc08 -285 649 7913723760157994 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 1cc09fc1ce7816fd -272 684 7913723760029628 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj c3bbce33b0b94778 -266 691 7913723759965828 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 9611a8c19b40aae4 -243 718 7913723759738818 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416 -391 794 7913723761222097 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 218cb40779246324 -434 809 7913723761648705 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 22b8b5194dc4de2 -405 813 7913723761351586 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 2a91ea98adea2812 -463 824 7913723761944747 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e4f00c48fc0b0584 -379 837 7913723761092768 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj c501785e017c114f -420 853 7913723761516171 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 893450a2eac32131 -367 854 7913723760981729 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 2fecb60abe437fd4 -427 854 7913723761580108 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj f8f0c6839c7ab1ce -512 858 7913723762436035 HAL/libhal.a 828bea71b532158c -467 900 7913723761986271 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 76711d5ea0da574a -413 909 7913723761449178 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 6808052da57aca4 -505 914 7913723762364144 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj 52aa8800389330b7 -458 915 7913723761889349 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 4cff397e5a4886f8 -490 962 7913723762218556 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 9a176c76dab639f -866 966 7913723765969178 Modules/uart/libuart.a f980800b2f79773c -881 972 7913723766114252 Modules/led/libled.a 4975295d4e0f5144 -873 972 7913723766045063 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c -858 972 7913723765889896 Modules/delay/libdelay.a fa50f3f1c7df37b -649 1018 7913723763804771 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 560bfe4b0f4f6bf9 -966 1042 7913723766974875 Middlewares/logging/liblogging.a df543b4167ac9a8e -972 1057 7913723767035389 BSP/libbsp.a fcf7ba39dd15dcd0 -684 1063 7913723764155281 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj ba7ee8080eb94038 -691 1068 7913723764225835 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj ca8829d822319459 -718 1103 7913723764490437 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 42cf21cc05a6eb7a -1103 1326 7913723768341327 stm32f407vet6_cmake.elf f513187faf41df81 -2 19 7913734853574881 CMakeFiles/clean.additional a8e8475892b6c694 -19 36 7913734853743627 clean 48fb0083216ba165 -23 207 7913734855752654 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 62b5fd3fc12a56ec -44 213 7913734855956143 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj ad6d0ca858ff9fd6 -18 220 7913734855705435 HAL/CMakeFiles/hal.dir/Src/hal.c.obj e4949ba37d831425 -27 226 7913734855798728 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj f7ed58542e885692 -72 231 7913734856252094 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 26bf75277b3a6f97 -35 235 7913734855876677 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 8a7978fd4bbb8138 -31 247 7913734855830612 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 9539d7c56f2172a5 -77 256 7913734856303839 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 6e3afd2d96cd96f6 -88 276 7913734856408820 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea -82 284 7913734856349490 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 822d4b2e91a026bb -94 292 7913734856477078 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj f1e5fe9bebf9e02 -101 319 7913734856543507 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 8f418e92fedc44fd -207 385 7913734857605566 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 2bcc927ced55ce7e -226 389 7913734857799043 Modules/led/CMakeFiles/led.dir/src/led.c.obj 361c0065047668c7 -48 393 7913734856006364 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj b338571a161a0c05 -63 410 7913734856165586 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 2876067dae4cbc08 -220 430 7913734857729739 BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj b6a0078da5412305 -213 435 7913734857661332 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a -58 449 7913734856113804 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj d88822697976a923 -40 463 7913734855924988 HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj ac57850a3bab3ec7 -292 467 7913734858447157 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 3352bb6321aecc50 -277 479 7913734858296668 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj cb5c7263e77f8f30 -52 483 7913734856051773 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 959718d65736c9b8 -231 488 7913734857834559 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 86b0f61c89236124 -68 521 7913734856208283 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj 1cb29b3f591666fd -284 539 7913734858370056 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 1cc09fc1ce7816fd -257 700 7913734858091103 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj c3bbce33b0b94778 -247 709 7913734858001904 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 9611a8c19b40aae4 -235 742 7913734857885033 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416 -319 801 7913734858719124 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 2fecb60abe437fd4 -410 819 7913734859632492 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 6808052da57aca4 -394 829 7913734859461645 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 2a91ea98adea2812 -435 833 7913734859881657 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj f8f0c6839c7ab1ce -431 843 7913734859839297 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 893450a2eac32131 -385 843 7913734859375162 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj c501785e017c114f -389 846 7913734859414694 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 218cb40779246324 -467 849 7913734860201383 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e4f00c48fc0b0584 -488 861 7913734860406783 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj 52aa8800389330b7 -463 899 7913734860152635 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 4cff397e5a4886f8 -479 901 7913734860316313 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 76711d5ea0da574a -449 914 7913734860017215 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 22b8b5194dc4de2 -483 921 7913734860348062 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 9a176c76dab639f -521 931 7913734860730309 HAL/libhal.a 828bea71b532158c -539 959 7913734860920524 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 560bfe4b0f4f6bf9 -931 1011 7913734864833170 Modules/delay/libdelay.a fa50f3f1c7df37b -948 1015 7913734865004492 Modules/led/libled.a 4975295d4e0f5144 -942 1015 7913734864942469 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c -937 1022 7913734864895392 Modules/uart/libuart.a f980800b2f79773c -1015 1086 7913734865683085 BSP/libbsp.a fcf7ba39dd15dcd0 -700 1093 7913734862539109 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj ba7ee8080eb94038 -1022 1094 7913734865753971 Middlewares/logging/liblogging.a df543b4167ac9a8e -709 1098 7913734862620402 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj ca8829d822319459 -742 1116 7913734862950127 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 42cf21cc05a6eb7a -1116 1353 7913734866691139 stm32f407vet6_cmake.elf f513187faf41df81 +7 180 7913779553949795 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 4a716265f2bca8f0 +10 176 7913779553980083 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj d03d698c39c16b7f +16 152 7913779554040981 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj ea383a410e65fe6d +22 176 7913779554101702 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj 7cbdbc0639493db7 +13 170 7913779554010366 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj a49e76f2ea5b0352 +4 179 7913779553919545 HAL/CMakeFiles/hal.dir/Src/hal.c.obj a9e0c92a76b782af +42 184 7913779554303524 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj ba54db25075a10ed +47 213 7913779554350712 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 2527c9df51d2d0ea +50 227 7913779554384180 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj cea4015dbcf27da +19 295 7913779554061179 HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj 4e613169110766c3 +25 314 7913779554137016 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj 145a34141f96b86 +31 319 7913779554192476 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj 77e4dbe5c21b95d8 +28 323 7913779554162192 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 21293f561a275bdc +35 336 7913779554227811 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj a1ba99392343012d +242 451 7913778137557496 Modules/led/CMakeFiles/led.dir/src/led.c.obj 86d08b2027a14a64 +199 437 7913778137130952 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 590ce833f1253dbe +363 562 7913778138764784 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj b58f3a6f050b1623 +252 455 7913778137664977 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 1997950fbc8992ec +213 422 7913778137270563 BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj 87e59becc72edb89 +311 604 7913778138247710 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj 4e5ec8bfb000564c +322 590 7913778138357686 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj e8802f7145b452ac +302 765 7913778138157065 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj 8bd6d6b2552805a6 +296 733 7913778138092472 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 946917c23a2bd110 +395 815 7913778139092831 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj d06a48623428129 +437 884 7913778139518384 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 2fab4aa14324dff2 +422 880 7913778139361987 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj 21b46043c197daad +478 878 7913778139919380 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 73910dd51a372da5 +451 884 7913778139652432 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 9608acc8425099b4 +498 956 7913778140118592 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 145cf82fb884b503 +456 885 7913778139695482 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 9d6b8fe7c9884ef8 +553 1014 7913778140673937 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj c4ea5be2e31e8179 +537 978 7913778140513586 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 751ac74d9560d41 +531 1015 7913778140440024 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 7c7eb65b92db239 +558 933 7913778140717383 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 8600302228a4adaa +604 997 7913778141174660 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 2b77c58cd15c0d81 +562 957 7913778140767900 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj a89c3987b4723479 +591 992 7913778141043812 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj dda6778f61719354 +733 1120 7913778142473664 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj 615381a9b726d5bd +754 1121 7913778142686233 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj 258bc4ef9e5922b3 +38 346 7913779554258085 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj 349fef53a18477cb +86 363 7913778136006507 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj 845d41df35bdecdc +92 322 7913778136055158 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj ef307b2b19500b14 +99 395 7913778136130525 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj d9b4aa65848e5a77 +595 1027 7913778141084436 HAL/libhal.a 828bea71b532158c +206 531 7913778137206777 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 282760f77d90226d +1027 1102 7913778145408006 Modules/delay/libdelay.a fa50f3f1c7df37b +1032 1115 7913778145454331 Modules/uart/libuart.a f980800b2f79773c +1038 1108 7913778145516542 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c +1045 1107 7913778145596269 Modules/led/libled.a 4975295d4e0f5144 +1115 1175 7913778146280628 Middlewares/logging/liblogging.a df543b4167ac9a8e +1108 1170 7913778146218204 BSP/libbsp.a fcf7ba39dd15dcd0 +258 754 7913778137718578 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj 4b196a668280b76 +5 275 7913779655076450 build.ninja 7cc4d7f17f077294 +765 1159 7913778142789735 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 4c5539b7f181e095 +1175 1401 7913778146888457 stm32f407vet6_cmake.elf f513187faf41df81 +23 42 7913778133175181 CMakeFiles/clean.additional a8e8475892b6c694 +42 60 7913778133370505 clean 48fb0083216ba165 +16 167 7913779846126027 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 8a7978fd4bbb8138 +12 190 7913779846095819 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 9539d7c56f2172a5 +8 202 7913779846040405 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 62b5fd3fc12a56ec +10 225 7913779846070658 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj f7ed58542e885692 +22 233 7913779846186511 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj ad6d0ca858ff9fd6 +4 261 7913779846010163 HAL/CMakeFiles/hal.dir/Src/hal.c.obj e4949ba37d831425 +46 271 7913779846428723 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 26bf75277b3a6f97 +50 289 7913779846469390 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 6e3afd2d96cd96f6 +73 296 7913779846704905 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 8f418e92fedc44fd +67 349 7913779846641765 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj f1e5fe9bebf9e02 +60 385 7913779846576194 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea +55 394 7913779846509998 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 822d4b2e91a026bb +19 398 7913779846161304 HAL/CMakeFiles/hal.dir/Src/hal_eth.c.obj ac57850a3bab3ec7 +30 403 7913779846264513 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 959718d65736c9b8 +34 408 7913779846311955 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj d88822697976a923 +225 413 7913779848211967 Modules/led/CMakeFiles/led.dir/src/led.c.obj 361c0065047668c7 +26 418 7913779846216352 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj b338571a161a0c05 +202 423 7913779847994739 BSP/CMakeFiles/bsp.dir/Src/bsp_eth.c.obj b6a0078da5412305 +168 427 7913779847648473 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 2bcc927ced55ce7e +38 438 7913779846350230 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 2876067dae4cbc08 +41 460 7913779846375879 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_eth.c.obj 1cb29b3f591666fd +190 484 7913779847867263 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a +296 495 7913779848932314 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj cb5c7263e77f8f30 +233 509 7913779848294808 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 86b0f61c89236124 +385 579 7913779849827783 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 3352bb6321aecc50 +349 683 7913779849459749 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 1cc09fc1ce7816fd +289 702 7913779848856482 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj c3bbce33b0b94778 +271 709 7913779848685187 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 9611a8c19b40aae4 +261 798 7913779848584620 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416 +428 813 7913779850243974 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 22b8b5194dc4de2 +408 821 7913779850050235 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 2a91ea98adea2812 +418 824 7913779850148028 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 893450a2eac32131 +394 825 7913779849905710 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 2fecb60abe437fd4 +423 848 7913779850198028 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj f8f0c6839c7ab1ce +413 857 7913779850105041 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 6808052da57aca4 +404 864 7913779850005520 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 218cb40779246324 +399 879 7913779849961060 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj c501785e017c114f +460 912 7913779850577021 HAL/libhal.a 828bea71b532158c +438 942 7913779850343887 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 4cff397e5a4886f8 +484 942 7913779850800316 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e4f00c48fc0b0584 +495 943 7913779850926830 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 76711d5ea0da574a +509 965 7913779851051363 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 9a176c76dab639f +579 974 7913779851762852 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj 52aa8800389330b7 +920 1000 7913779855164495 Modules/uart/libuart.a f980800b2f79773c +912 1008 7913779855093069 Modules/delay/libdelay.a fa50f3f1c7df37b +927 1011 7913779855240524 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c +935 1019 7913779855316162 Modules/led/libled.a 4975295d4e0f5144 +683 1024 7913779852808159 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 560bfe4b0f4f6bf9 +1000 1077 7913779855959264 Middlewares/logging/liblogging.a df543b4167ac9a8e +1011 1090 7913779856088550 BSP/libbsp.a fcf7ba39dd15dcd0 +709 1142 7913779853065992 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj ca8829d822319459 +798 1162 7913779853935649 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 42cf21cc05a6eb7a +702 1170 7913779852997439 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj ba7ee8080eb94038 +1170 1444 7913779857673660 stm32f407vet6_cmake.elf f513187faf41df81 diff --git a/build/Debug/CMakeCache.txt b/build/Debug/CMakeCache.txt index 12fbd6f..d7921f5 100644 --- a/build/Debug/CMakeCache.txt +++ b/build/Debug/CMakeCache.txt @@ -217,8 +217,8 @@ CMAKE_STRIP:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-strip.exe //Path to a program. CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND -//The CMake toolchain file -CMAKE_TOOLCHAIN_FILE:FILEPATH=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/gcc-arm-none-eabi.cmake +//No help, variable specified on the command line. +CMAKE_TOOLCHAIN_FILE:UNINITIALIZED=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/gcc-arm-none-eabi.cmake //If this value is on, makefiles will be generated without the // .SILENT directive, and all commands will be echoed to the console diff --git a/build/Debug/CMakeFiles/CMakeConfigureLog.yaml b/build/Debug/CMakeFiles/CMakeConfigureLog.yaml index 885b5c5..5edbe66 100644 --- a/build/Debug/CMakeFiles/CMakeConfigureLog.yaml +++ b/build/Debug/CMakeFiles/CMakeConfigureLog.yaml @@ -451,3 +451,456 @@ events: warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ... + +--- +events: + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineSystem.cmake:200 (message)" + - "CMakeLists.txt:36 (project)" + message: | + The target system is: Generic - - arm + The host system is: Windows - 10.0.26200 - AMD64 + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:36 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" failed. + Compiler: D:/ARM_GCC/bin/arm-none-eabi-gcc.exe + Build flags: -mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections + Id flags: + + The output was: + 1 + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ld.exe: d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x16): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCCompiler.cmake:123 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:36 (project)" + message: | + Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. + Compiler: D:/ARM_GCC/bin/arm-none-eabi-gcc.exe + Build flags: -mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections + Id flags: -c + + The output was: + 0 + + + Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "CMakeCCompilerId.o" + + The C compiler identification is GNU, found in: + E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/3.31.2/CompilerIdC/CMakeCCompilerId.o + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:36 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" failed. + Compiler: D:/ARM_GCC/bin/arm-none-eabi-g++.exe + Build flags: -mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-fno-rtti;-fno-exceptions;-fno-threadsafe-statics + Id flags: + + The output was: + 1 + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ld.exe: d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\\libc.a(lib_a-exit.o): in function `exit': + exit.c:(.text.exit+0x16): undefined reference to `_exit' + collect2.exe: error: ld returned 1 exit status + + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:17 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:64 (__determine_compiler_id_test)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCXXCompiler.cmake:126 (CMAKE_DETERMINE_COMPILER_ID)" + - "CMakeLists.txt:36 (project)" + message: | + Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. + Compiler: D:/ARM_GCC/bin/arm-none-eabi-g++.exe + Build flags: -mcpu=cortex-m4;-mfpu=fpv4-sp-d16;-mfloat-abi=hard;-Wall;-Wextra;-Wpedantic;-fdata-sections;-ffunction-sections;-fno-rtti;-fno-exceptions;-fno-threadsafe-statics + Id flags: -c + + The output was: + 0 + + + Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "CMakeCXXCompilerId.o" + + The CXX compiler identification is GNU, found in: + E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/3.31.2/CompilerIdCXX/CMakeCXXCompilerId.o + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + checks: + - "Detecting C compiler ABI info" + directories: + source: "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-euhsgj" + binary: "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-euhsgj" + cmakeVariables: + CMAKE_C_FLAGS: " -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections" + CMAKE_C_FLAGS_DEBUG: "-O0 -g3" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_C_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-euhsgj' + + Run Build Command(s): C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Scripts/ninja.exe -v cmTC_356df + [1/2] D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -std=gnu11 -v -o CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj -c C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCCompilerABI.c + Using built-in specs. + COLLECT_GCC=D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe + Target: arm-none-eabi + Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile + Thread model: single + Supported LTO compression algorithms: zlib + gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) + COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1.exe -quiet -v -imultilib thumb/v7e-m+fp/hard -iprefix d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\arm_gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -mlibarch=armv7e-m+fp -march=armv7e-m+fp -auxbase-strip CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj -Wall -Wextra -Wpedantic -std=gnu11 -version -fdata-sections -ffunction-sections -o C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccpVPVsk.s + GNU C11 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include" + ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/usr/include" + #include "..." search starts here: + #include <...> search starts here: + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include + End of search list. + GNU C11 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: f3937ce18b4177bfd408ca565336596a + COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv7e-m -mfloat-abi=hard -mfloat-abi=hard -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mfpu=fpv4-sp-d16 -mfpu=fpv4-sp-d16 -meabi=5 -o CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccpVPVsk.s + GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621 + COMPILER_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/arm_gcc/bin/../lib/gcc/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ + LIBRARY_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../arm-none-eabi/lib/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/arm_gcc/bin/../lib/gcc/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/;d:/arm_gcc/bin/../arm-none-eabi/lib/ + COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + [2/2] C:\\windows\\system32\\cmd.exe /C "cd . && C:\\Users\\ZHIZHANKEJI\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\cmake\\data\\bin\\cmake.exe -E rm -f libcmTC_356df.a && D:\\ARM_GCC\\bin\\arm-none-eabi-ar.exe qc libcmTC_356df.a CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj && D:\\ARM_GCC\\bin\\arm-none-eabi-ranlib.exe libcmTC_356df.a && cd ." + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Parsed C implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + end of search list found + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include] ==> [D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] ==> [D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include-fixed] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] ==> [D:/ARM_GCC/arm-none-eabi/include] + implicit include dirs: [D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include;D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/ARM_GCC/arm-none-eabi/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Parsed C implicit link information: + link line regex: [^( *|.*[/\\])(arm-none-eabi-g\\+\\+\\.exe|;ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(arm-none-eabi-g\\+\\+\\.exe|;ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-euhsgj'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Scripts/ninja.exe -v cmTC_356df] + ignore line: [[1/2] D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -std=gnu11 -v -o CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj -c C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCCompilerABI.c] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) ] + ignore line: [COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [ d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1.exe -quiet -v -imultilib thumb/v7e-m+fp/hard -iprefix d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\arm_gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -mlibarch=armv7e-m+fp -march=armv7e-m+fp -auxbase-strip CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj -Wall -Wextra -Wpedantic -std=gnu11 -version -fdata-sections -ffunction-sections -o C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccpVPVsk.s] + ignore line: [GNU C11 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include"] + ignore line: [ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"] + ignore line: [ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/usr/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C11 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: f3937ce18b4177bfd408ca565336596a] + ignore line: [COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [ d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv7e-m -mfloat-abi=hard -mfloat-abi=hard -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mfpu=fpv4-sp-d16 -mfpu=fpv4-sp-d16 -meabi=5 -o CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccpVPVsk.s] + ignore line: [GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621] + ignore line: [COMPILER_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../arm-none-eabi/lib/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/] + ignore line: [d:/arm_gcc/bin/../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-std=gnu11' '-v' '-o' 'CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [[2/2] C:\\windows\\system32\\cmd.exe /C "cd . && C:\\Users\\ZHIZHANKEJI\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\cmake\\data\\bin\\cmake.exe -E rm -f libcmTC_356df.a && D:\\ARM_GCC\\bin\\arm-none-eabi-ar.exe qc libcmTC_356df.a CMakeFiles/cmTC_356df.dir/CMakeCCompilerABI.c.obj && D:\\ARM_GCC\\bin\\arm-none-eabi-ranlib.exe libcmTC_356df.a && cd ."] + ignore line: [] + ignore line: [] + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + + - + kind: "try_compile-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:74 (try_compile)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + checks: + - "Detecting CXX compiler ABI info" + directories: + source: "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-m36q5t" + binary: "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-m36q5t" + cmakeVariables: + CMAKE_CXX_FLAGS: "-mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics" + CMAKE_CXX_FLAGS_DEBUG: "-O0 -g3" + CMAKE_CXX_SCAN_FOR_MODULES: "OFF" + CMAKE_EXE_LINKER_FLAGS: "" + buildResult: + variable: "CMAKE_CXX_ABI_COMPILED" + cached: true + stdout: | + Change Dir: 'E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-m36q5t' + + Run Build Command(s): C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Scripts/ninja.exe -v cmTC_0c77c + [1/2] D:\\ARM_GCC\\bin\\arm-none-eabi-g++.exe -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics -v -o CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXCompilerABI.cpp + Using built-in specs. + COLLECT_GCC=D:\\ARM_GCC\\bin\\arm-none-eabi-g++.exe + Target: arm-none-eabi + Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile + Thread model: single + Supported LTO compression algorithms: zlib + gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) + COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1plus.exe -quiet -v -imultilib thumb/v7e-m+fp/hard -iprefix d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\arm_gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -mlibarch=armv7e-m+fp -march=armv7e-m+fp -auxbase-strip CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj -Wall -Wextra -Wpedantic -version -fdata-sections -ffunction-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics -o C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccowI7ez.s + GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include" + ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed" + ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include" + ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/usr/include" + #include "..." search starts here: + #include <...> search starts here: + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1 + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed + d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include + End of search list. + GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi) + compiled by GNU C version 7.3-win32 20180312, GMP version 6.1.0, MPFR version 3.1.4, MPC version 1.0.3, isl version isl-0.18-GMP + + GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 + Compiler executable checksum: f8787892a7c5aa84cea58dce52be7118 + COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv7e-m -mfloat-abi=hard -mfpu=fpv4-sp-d16 -meabi=5 -o CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccowI7ez.s + GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621 + COMPILER_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/arm_gcc/bin/../lib/gcc/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/ + LIBRARY_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../arm-none-eabi/lib/thumb/v7e-m+fp/hard/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/;d:/arm_gcc/bin/../lib/gcc/;d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/;d:/arm_gcc/bin/../arm-none-eabi/lib/ + COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp' + [2/2] C:\\windows\\system32\\cmd.exe /C "cd . && C:\\Users\\ZHIZHANKEJI\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\cmake\\data\\bin\\cmake.exe -E rm -f libcmTC_0c77c.a && D:\\ARM_GCC\\bin\\arm-none-eabi-ar.exe qc libcmTC_0c77c.a CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj && D:\\ARM_GCC\\bin\\arm-none-eabi-ranlib.exe libcmTC_0c77c.a && cd ." + + exitCode: 0 + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:182 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Parsed CXX implicit include dir info: rv=done + found start of include info + found start of implicit include info + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + add: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + end of search list found + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] ==> [D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard] ==> [D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] ==> [D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1/backward] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include] ==> [D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/include-fixed] ==> [D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include-fixed] + collapse include dir [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] ==> [D:/ARM_GCC/arm-none-eabi/include] + implicit include dirs: [D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1;D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard;D:/ARM_GCC/arm-none-eabi/include/c++/10.3.1/backward;D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include;D:/ARM_GCC/lib/gcc/arm-none-eabi/10.3.1/include-fixed;D:/ARM_GCC/arm-none-eabi/include] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:218 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Parsed CXX implicit link information: + link line regex: [^( *|.*[/\\])(arm-none-eabi-g\\+\\+\\.exe|;ld[0-9]*(\\.[a-z]+)?|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\\]+-)?ld|collect2)[^/\\]*( |$)] + linker tool regex: [^[ ]*(->|")?[ ]*(([^"]*[/\\])?(arm-none-eabi-g\\+\\+\\.exe|;ld[0-9]*(\\.[a-z]+)?))("|,| |$)] + ignore line: [Change Dir: 'E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug/CMakeFiles/CMakeScratch/TryCompile-m36q5t'] + ignore line: [] + ignore line: [Run Build Command(s): C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Scripts/ninja.exe -v cmTC_0c77c] + ignore line: [[1/2] D:\\ARM_GCC\\bin\\arm-none-eabi-g++.exe -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics -v -o CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj -c C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Using built-in specs.] + ignore line: [COLLECT_GCC=D:\\ARM_GCC\\bin\\arm-none-eabi-g++.exe] + ignore line: [Target: arm-none-eabi] + ignore line: [Configured with: /mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/src/gcc/configure --build=x86_64-linux-gnu --host=i686-w64-mingw32 --target=arm-none-eabi --prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw --libexecdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib --infodir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/info --mandir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/man --htmldir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/html --pdfdir=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/share/doc/gcc-arm-none-eabi/pdf --enable-languages=c,c++ --enable-mingw-wildcard --disable-decimal-float --disable-libffi --disable-libgomp --disable-libmudflap --disable-libquadmath --disable-libssp --disable-libstdcxx-pch --disable-nls --disable-shared --disable-threads --disable-tls --with-gnu-as --with-gnu-ld --with-headers=yes --with-newlib --with-python-dir=share/gcc-arm-none-eabi --with-sysroot=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/arm-none-eabi --with-libiconv-prefix=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-gmp=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpfr=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-mpc=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-isl=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-libelf=/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/build-mingw/host-libs/usr --with-host-libstdcxx='-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm' --with-pkgversion='GNU Arm Embedded Toolchain 10.3-2021.10' --with-multilib-list=rmprofile,aprofile] + ignore line: [Thread model: single] + ignore line: [Supported LTO compression algorithms: zlib] + ignore line: [gcc version 10.3.1 20210824 (release) (GNU Arm Embedded Toolchain 10.3-2021.10) ] + ignore line: [COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [ d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/cc1plus.exe -quiet -v -imultilib thumb/v7e-m+fp/hard -iprefix d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/ -isysroot d:\\arm_gcc\\bin\\../arm-none-eabi -D__USES_INITFINI__ C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -mlibarch=armv7e-m+fp -march=armv7e-m+fp -auxbase-strip CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj -Wall -Wextra -Wpedantic -version -fdata-sections -ffunction-sections -fno-rtti -fno-exceptions -fno-threadsafe-statics -o C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccowI7ez.s] + ignore line: [GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include"] + ignore line: [ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/mnt/workspace/workspace/GCC-10-pipeline/jenkins-GCC-10-pipeline-338_20211018_1634516203/install-mingw/lib/gcc/arm-none-eabi/10.3.1/../../../../include"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/include-fixed"] + ignore line: [ignoring duplicate directory "d:/arm_gcc/lib/gcc/../../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include"] + ignore line: [ignoring nonexistent directory "d:\\arm_gcc\\bin\\../arm-none-eabi/usr/include"] + ignore line: [#include "..." search starts here:] + ignore line: [#include <...> search starts here:] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/arm-none-eabi/thumb/v7e-m+fp/hard] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include/c++/10.3.1/backward] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/include-fixed] + ignore line: [ d:\\arm_gcc\\bin\\../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/include] + ignore line: [End of search list.] + ignore line: [GNU C++14 (GNU Arm Embedded Toolchain 10.3-2021.10) version 10.3.1 20210824 (release) (arm-none-eabi)] + ignore line: [ compiled by GNU C version 7.3-win32 20180312 GMP version 6.1.0 MPFR version 3.1.4 MPC version 1.0.3 isl version isl-0.18-GMP] + ignore line: [] + ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] + ignore line: [Compiler executable checksum: f8787892a7c5aa84cea58dce52be7118] + ignore line: [COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [ d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/as.exe -v -march=armv7e-m -mfloat-abi=hard -mfpu=fpv4-sp-d16 -meabi=5 -o CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj C:\\Users\\ZHIZHA~1\\AppData\\Local\\Temp\\ccowI7ez.s] + ignore line: [GNU assembler version 2.36.1 (arm-none-eabi) using BFD version (GNU Arm Embedded Toolchain 10.3-2021.10) 2.36.1.20210621] + ignore line: [COMPILER_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/bin/] + ignore line: [LIBRARY_PATH=d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../arm-none-eabi/lib/thumb/v7e-m+fp/hard/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/] + ignore line: [d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/] + ignore line: [d:/arm_gcc/bin/../arm-none-eabi/lib/] + ignore line: [COLLECT_GCC_OPTIONS='-mcpu=cortex-m4' '-mfpu=fpv4-sp-d16' '-mfloat-abi=hard' '-Wall' '-Wextra' '-Wpedantic' '-fdata-sections' '-ffunction-sections' '-fno-rtti' '-fno-exceptions' '-fno-threadsafe-statics' '-v' '-o' 'CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-mthumb' '-mlibarch=armv7e-m+fp' '-march=armv7e-m+fp'] + ignore line: [[2/2] C:\\windows\\system32\\cmd.exe /C "cd . && C:\\Users\\ZHIZHANKEJI\\AppData\\Local\\Programs\\Python\\Python311\\Lib\\site-packages\\cmake\\data\\bin\\cmake.exe -E rm -f libcmTC_0c77c.a && D:\\ARM_GCC\\bin\\arm-none-eabi-ar.exe qc libcmTC_0c77c.a CMakeFiles/cmTC_0c77c.dir/CMakeCXXCompilerABI.cpp.obj && D:\\ARM_GCC\\bin\\arm-none-eabi-ranlib.exe libcmTC_0c77c.a && cd ."] + ignore line: [] + ignore line: [] + linker tool for 'CXX': [1/2] D:/ARM_GCC/bin/arm-none-eabi-g++.exe + implicit libs: [] + implicit objs: [] + implicit dirs: [] + implicit fwks: [] + + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Running the CXX compiler's linker: "[1/2] D:/ARM_GCC/bin/arm-none-eabi-g++.exe" "-v" + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Running the CXX compiler's linker: "[1/2] D:/ARM_GCC/bin/arm-none-eabi-g++.exe" "-V" + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/Internal/CMakeDetermineLinkerId.cmake:40 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerABI.cmake:255 (cmake_determine_linker_id)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeTestCXXCompiler.cmake:26 (CMAKE_DETERMINE_COMPILER_ABI)" + - "CMakeLists.txt:36 (project)" + message: | + Running the CXX compiler's linker: "[1/2] D:/ARM_GCC/bin/arm-none-eabi-g++.exe" "--version" + + - + kind: "message-v1" + backtrace: + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineCompilerId.cmake:1237 (message)" + - "C:/Users/ZHIZHANKEJI/AppData/Local/Programs/Python/Python311/Lib/site-packages/cmake/data/share/cmake-3.31/Modules/CMakeDetermineASMCompiler.cmake:135 (CMAKE_DETERMINE_COMPILER_ID_VENDOR)" + - "CMakeLists.txt:43 (enable_language)" + message: | + Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)": + arm-none-eabi-gcc.exe (GNU Arm Embedded Toolchain 10.3-2021.10) 10.3.1 20210824 (release) + Copyright (C) 2020 Free Software Foundation, Inc. + This is free software; see the source for copying conditions. There is NO + warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. + +... diff --git a/build/Debug/stm32f407vet6_cmake.elf b/build/Debug/stm32f407vet6_cmake.elf index 245014a..afe6e69 100644 Binary files a/build/Debug/stm32f407vet6_cmake.elf and b/build/Debug/stm32f407vet6_cmake.elf differ diff --git a/build/Debug/stm32f407vet6_cmake.map b/build/Debug/stm32f407vet6_cmake.map index 9a05e34..c9c5125 100644 --- a/build/Debug/stm32f407vet6_cmake.map +++ b/build/Debug/stm32f407vet6_cmake.map @@ -4097,7 +4097,7 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o 0x08000000 g_pfnVectors 0x08000188 . = ALIGN (0x4) -.text 0x08000190 0x6f0c +.text 0x08000190 0x6f68 0x08000190 . = ALIGN (0x4) *(.text) .text 0x08000190 0x40 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o @@ -4278,612 +4278,627 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o 0x080033e0 0xb2 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj .text.ETH_DMARxDescListInit 0x08003492 0xde cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .text.main 0x08003570 0x474 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.main 0x08003570 0x26 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj 0x08003570 main + *fill* 0x08003596 0x2 + .text.system_peripherals_init + 0x08003598 0x58 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.ethernet_init + 0x080035f0 0x110 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.led_init_system + 0x08003700 0x3c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.w25qxx_init_system + 0x0800373c 0xbc CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.key_events_handler + 0x080037f8 0x154 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.led_blink_handler + 0x0800394c 0x3c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .text.ethernet_status_handler + 0x08003988 0xb8 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj .text.SystemClock_Config - 0x080039e4 0xbc CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - 0x080039e4 SystemClock_Config + 0x08003a40 0xbc CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + 0x08003a40 SystemClock_Config .text.Error_Handler - 0x08003aa0 0xa CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - 0x08003aa0 Error_Handler + 0x08003afc 0xa CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + 0x08003afc Error_Handler .text.NMI_Handler - 0x08003aaa 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003aaa NMI_Handler + 0x08003b06 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b06 NMI_Handler .text.HardFault_Handler - 0x08003ab0 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ab0 HardFault_Handler + 0x08003b0c 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b0c HardFault_Handler .text.MemManage_Handler - 0x08003ab6 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ab6 MemManage_Handler + 0x08003b12 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b12 MemManage_Handler .text.BusFault_Handler - 0x08003abc 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003abc BusFault_Handler + 0x08003b18 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b18 BusFault_Handler .text.UsageFault_Handler - 0x08003ac2 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ac2 UsageFault_Handler + 0x08003b1e 0x6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b1e UsageFault_Handler .text.SVC_Handler - 0x08003ac8 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ac8 SVC_Handler + 0x08003b24 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b24 SVC_Handler .text.DebugMon_Handler - 0x08003ad6 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ad6 DebugMon_Handler + 0x08003b32 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b32 DebugMon_Handler .text.PendSV_Handler - 0x08003ae4 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003ae4 PendSV_Handler + 0x08003b40 0xe CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b40 PendSV_Handler .text.SysTick_Handler - 0x08003af2 0xc CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - 0x08003af2 SysTick_Handler - *fill* 0x08003afe 0x2 + 0x08003b4e 0xc CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x08003b4e SysTick_Handler + *fill* 0x08003b5a 0x2 .text.HAL_MspInit - 0x08003b00 0x50 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - 0x08003b00 HAL_MspInit - .text._sbrk 0x08003b50 0x6c CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - 0x08003b50 _sbrk + 0x08003b5c 0x50 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + 0x08003b5c HAL_MspInit + .text._sbrk 0x08003bac 0x6c CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + 0x08003bac _sbrk .text.Reset_Handler - 0x08003bbc 0x50 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - 0x08003bbc Reset_Handler + 0x08003c18 0x50 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + 0x08003c18 Reset_Handler .text.Default_Handler - 0x08003c0c 0x2 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - 0x08003c0c RTC_Alarm_IRQHandler - 0x08003c0c HASH_RNG_IRQHandler - 0x08003c0c EXTI2_IRQHandler - 0x08003c0c TIM8_CC_IRQHandler - 0x08003c0c TIM1_CC_IRQHandler - 0x08003c0c DMA2_Stream5_IRQHandler - 0x08003c0c DMA1_Stream5_IRQHandler - 0x08003c0c PVD_IRQHandler - 0x08003c0c SDIO_IRQHandler - 0x08003c0c TAMP_STAMP_IRQHandler - 0x08003c0c CAN2_RX1_IRQHandler - 0x08003c0c EXTI3_IRQHandler - 0x08003c0c TIM8_TRG_COM_TIM14_IRQHandler - 0x08003c0c TIM1_UP_TIM10_IRQHandler - 0x08003c0c TIM8_UP_TIM13_IRQHandler - 0x08003c0c I2C3_ER_IRQHandler - 0x08003c0c EXTI0_IRQHandler - 0x08003c0c I2C2_EV_IRQHandler - 0x08003c0c DMA1_Stream2_IRQHandler - 0x08003c0c CAN1_RX0_IRQHandler - 0x08003c0c FPU_IRQHandler - 0x08003c0c OTG_HS_WKUP_IRQHandler - 0x08003c0c CAN2_SCE_IRQHandler - 0x08003c0c DMA2_Stream2_IRQHandler - 0x08003c0c SPI1_IRQHandler - 0x08003c0c TIM6_DAC_IRQHandler - 0x08003c0c TIM1_BRK_TIM9_IRQHandler - 0x08003c0c DCMI_IRQHandler - 0x08003c0c CAN2_RX0_IRQHandler - 0x08003c0c DMA2_Stream3_IRQHandler - 0x08003c0c USART6_IRQHandler - 0x08003c0c USART3_IRQHandler - 0x08003c0c CAN1_RX1_IRQHandler - 0x08003c0c UART5_IRQHandler - 0x08003c0c DMA2_Stream0_IRQHandler - 0x08003c0c TIM4_IRQHandler - 0x08003c0c I2C1_EV_IRQHandler - 0x08003c0c DMA1_Stream6_IRQHandler - 0x08003c0c DMA1_Stream1_IRQHandler - 0x08003c0c UART4_IRQHandler - 0x08003c0c TIM3_IRQHandler - 0x08003c0c RCC_IRQHandler - 0x08003c0c TIM8_BRK_TIM12_IRQHandler - 0x08003c0c Default_Handler - 0x08003c0c EXTI15_10_IRQHandler - 0x08003c0c ADC_IRQHandler - 0x08003c0c DMA1_Stream7_IRQHandler - 0x08003c0c TIM7_IRQHandler - 0x08003c0c CAN2_TX_IRQHandler - 0x08003c0c TIM5_IRQHandler - 0x08003c0c DMA2_Stream7_IRQHandler - 0x08003c0c I2C3_EV_IRQHandler - 0x08003c0c EXTI9_5_IRQHandler - 0x08003c0c RTC_WKUP_IRQHandler - 0x08003c0c ETH_WKUP_IRQHandler - 0x08003c0c SPI2_IRQHandler - 0x08003c0c OTG_HS_EP1_IN_IRQHandler - 0x08003c0c DMA1_Stream0_IRQHandler - 0x08003c0c CAN1_TX_IRQHandler - 0x08003c0c EXTI4_IRQHandler - 0x08003c0c FSMC_IRQHandler - 0x08003c0c OTG_HS_EP1_OUT_IRQHandler - 0x08003c0c WWDG_IRQHandler - 0x08003c0c TIM2_IRQHandler - 0x08003c0c OTG_FS_WKUP_IRQHandler - 0x08003c0c TIM1_TRG_COM_TIM11_IRQHandler - 0x08003c0c OTG_HS_IRQHandler - 0x08003c0c EXTI1_IRQHandler - 0x08003c0c USART2_IRQHandler - 0x08003c0c I2C2_ER_IRQHandler - 0x08003c0c DMA2_Stream1_IRQHandler - 0x08003c0c CAN1_SCE_IRQHandler - 0x08003c0c FLASH_IRQHandler - 0x08003c0c DMA2_Stream4_IRQHandler - 0x08003c0c USART1_IRQHandler - 0x08003c0c OTG_FS_IRQHandler - 0x08003c0c SPI3_IRQHandler - 0x08003c0c DMA1_Stream4_IRQHandler - 0x08003c0c I2C1_ER_IRQHandler - 0x08003c0c DMA2_Stream6_IRQHandler - 0x08003c0c DMA1_Stream3_IRQHandler + 0x08003c68 0x2 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + 0x08003c68 RTC_Alarm_IRQHandler + 0x08003c68 HASH_RNG_IRQHandler + 0x08003c68 EXTI2_IRQHandler + 0x08003c68 TIM8_CC_IRQHandler + 0x08003c68 TIM1_CC_IRQHandler + 0x08003c68 DMA2_Stream5_IRQHandler + 0x08003c68 DMA1_Stream5_IRQHandler + 0x08003c68 PVD_IRQHandler + 0x08003c68 SDIO_IRQHandler + 0x08003c68 TAMP_STAMP_IRQHandler + 0x08003c68 CAN2_RX1_IRQHandler + 0x08003c68 EXTI3_IRQHandler + 0x08003c68 TIM8_TRG_COM_TIM14_IRQHandler + 0x08003c68 TIM1_UP_TIM10_IRQHandler + 0x08003c68 TIM8_UP_TIM13_IRQHandler + 0x08003c68 I2C3_ER_IRQHandler + 0x08003c68 EXTI0_IRQHandler + 0x08003c68 I2C2_EV_IRQHandler + 0x08003c68 DMA1_Stream2_IRQHandler + 0x08003c68 CAN1_RX0_IRQHandler + 0x08003c68 FPU_IRQHandler + 0x08003c68 OTG_HS_WKUP_IRQHandler + 0x08003c68 CAN2_SCE_IRQHandler + 0x08003c68 DMA2_Stream2_IRQHandler + 0x08003c68 SPI1_IRQHandler + 0x08003c68 TIM6_DAC_IRQHandler + 0x08003c68 TIM1_BRK_TIM9_IRQHandler + 0x08003c68 DCMI_IRQHandler + 0x08003c68 CAN2_RX0_IRQHandler + 0x08003c68 DMA2_Stream3_IRQHandler + 0x08003c68 USART6_IRQHandler + 0x08003c68 USART3_IRQHandler + 0x08003c68 CAN1_RX1_IRQHandler + 0x08003c68 UART5_IRQHandler + 0x08003c68 DMA2_Stream0_IRQHandler + 0x08003c68 TIM4_IRQHandler + 0x08003c68 I2C1_EV_IRQHandler + 0x08003c68 DMA1_Stream6_IRQHandler + 0x08003c68 DMA1_Stream1_IRQHandler + 0x08003c68 UART4_IRQHandler + 0x08003c68 TIM3_IRQHandler + 0x08003c68 RCC_IRQHandler + 0x08003c68 TIM8_BRK_TIM12_IRQHandler + 0x08003c68 Default_Handler + 0x08003c68 EXTI15_10_IRQHandler + 0x08003c68 ADC_IRQHandler + 0x08003c68 DMA1_Stream7_IRQHandler + 0x08003c68 TIM7_IRQHandler + 0x08003c68 CAN2_TX_IRQHandler + 0x08003c68 TIM5_IRQHandler + 0x08003c68 DMA2_Stream7_IRQHandler + 0x08003c68 I2C3_EV_IRQHandler + 0x08003c68 EXTI9_5_IRQHandler + 0x08003c68 RTC_WKUP_IRQHandler + 0x08003c68 ETH_WKUP_IRQHandler + 0x08003c68 SPI2_IRQHandler + 0x08003c68 OTG_HS_EP1_IN_IRQHandler + 0x08003c68 DMA1_Stream0_IRQHandler + 0x08003c68 CAN1_TX_IRQHandler + 0x08003c68 EXTI4_IRQHandler + 0x08003c68 FSMC_IRQHandler + 0x08003c68 OTG_HS_EP1_OUT_IRQHandler + 0x08003c68 WWDG_IRQHandler + 0x08003c68 TIM2_IRQHandler + 0x08003c68 OTG_FS_WKUP_IRQHandler + 0x08003c68 TIM1_TRG_COM_TIM11_IRQHandler + 0x08003c68 OTG_HS_IRQHandler + 0x08003c68 EXTI1_IRQHandler + 0x08003c68 USART2_IRQHandler + 0x08003c68 I2C2_ER_IRQHandler + 0x08003c68 DMA2_Stream1_IRQHandler + 0x08003c68 CAN1_SCE_IRQHandler + 0x08003c68 FLASH_IRQHandler + 0x08003c68 DMA2_Stream4_IRQHandler + 0x08003c68 USART1_IRQHandler + 0x08003c68 OTG_FS_IRQHandler + 0x08003c68 SPI3_IRQHandler + 0x08003c68 DMA1_Stream4_IRQHandler + 0x08003c68 I2C1_ER_IRQHandler + 0x08003c68 DMA2_Stream6_IRQHandler + 0x08003c68 DMA1_Stream3_IRQHandler .text.bsp_init - 0x08003c0e 0x312 BSP/libbsp.a(bsp_init.c.obj) - 0x08003c0e bsp_init + 0x08003c6a 0x312 BSP/libbsp.a(bsp_init.c.obj) + 0x08003c6a bsp_init .text.bsp_get_board_config - 0x08003f20 0xe BSP/libbsp.a(bsp_init.c.obj) - 0x08003f20 bsp_get_board_config + 0x08003f7c 0xe BSP/libbsp.a(bsp_init.c.obj) + 0x08003f7c bsp_get_board_config .text.default_led_init - 0x08003f2e 0x3e BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08003f8a 0x3e BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_button_init - 0x08003f6c 0x72 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08003fc8 0x72 BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_uart_init - 0x08003fde 0x3e BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x0800403a 0x3e BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_spi_init - 0x0800401c 0x4a BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08004078 0x4a BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_i2c_init - 0x08004066 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x080040c2 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_can_init - 0x0800407c 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x080040d8 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_adc_init - 0x08004092 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x080040ee 0x16 BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_w25qxx_init - 0x080040a8 0x68 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08004104 0x68 BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.default_eth_init - 0x08004110 0x1c BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x0800416c 0x1c BSP/libbsp.a(stm32f407vet6_board.c.obj) .text.bsp_board_get_config - 0x0800412c 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) - 0x0800412c bsp_board_get_config + 0x08004188 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08004188 bsp_board_get_config .text.w25qxx_spi_send - 0x08004140 0x2c BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x0800419c 0x2c BSP/libbsp.a(bsp_w25qxx.c.obj) .text.w25qxx_spi_receive - 0x0800416c 0x2c BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x080041c8 0x2c BSP/libbsp.a(bsp_w25qxx.c.obj) .text.w25qxx_spi_transceive - 0x08004198 0x2e BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x080041f4 0x2e BSP/libbsp.a(bsp_w25qxx.c.obj) .text.w25qxx_cs_set - 0x080041c6 0x24 BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x08004222 0x24 BSP/libbsp.a(bsp_w25qxx.c.obj) .text.w25qxx_delay_ms - 0x080041ea 0x16 BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x08004246 0x16 BSP/libbsp.a(bsp_w25qxx.c.obj) .text.bsp_w25qxx_init - 0x08004200 0x6c BSP/libbsp.a(bsp_w25qxx.c.obj) - 0x08004200 bsp_w25qxx_init + 0x0800425c 0x6c BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x0800425c bsp_w25qxx_init .text.bsp_w25qxx_get_device_info - 0x0800426c 0x18 BSP/libbsp.a(bsp_w25qxx.c.obj) - 0x0800426c bsp_w25qxx_get_device_info + 0x080042c8 0x18 BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x080042c8 bsp_w25qxx_get_device_info .text.bsp_key_get_button_config - 0x08004284 0x38 BSP/libbsp.a(bsp_key.c.obj) + 0x080042e0 0x38 BSP/libbsp.a(bsp_key.c.obj) .text.bsp_key_read_raw - 0x080042bc 0x64 BSP/libbsp.a(bsp_key.c.obj) + 0x08004318 0x64 BSP/libbsp.a(bsp_key.c.obj) .text.bsp_key_get_time_ms - 0x08004320 0xe BSP/libbsp.a(bsp_key.c.obj) - *fill* 0x0800432e 0x2 + 0x0800437c 0xe BSP/libbsp.a(bsp_key.c.obj) + *fill* 0x0800438a 0x2 .text.bsp_key_init - 0x08004330 0x13c BSP/libbsp.a(bsp_key.c.obj) - 0x08004330 bsp_key_init + 0x0800438c 0x13c BSP/libbsp.a(bsp_key.c.obj) + 0x0800438c bsp_key_init .text.bsp_key_update - 0x0800446c 0x150 BSP/libbsp.a(bsp_key.c.obj) - 0x0800446c bsp_key_update + 0x080044c8 0x150 BSP/libbsp.a(bsp_key.c.obj) + 0x080044c8 bsp_key_update .text.bsp_key_get_press_event - 0x080045bc 0x44 BSP/libbsp.a(bsp_key.c.obj) - 0x080045bc bsp_key_get_press_event + 0x08004618 0x44 BSP/libbsp.a(bsp_key.c.obj) + 0x08004618 bsp_key_get_press_event .text.bsp_key_get_release_event - 0x08004600 0x44 BSP/libbsp.a(bsp_key.c.obj) - 0x08004600 bsp_key_get_release_event + 0x0800465c 0x44 BSP/libbsp.a(bsp_key.c.obj) + 0x0800465c bsp_key_get_release_event .text.bsp_key_get_long_press_event - 0x08004644 0x34 BSP/libbsp.a(bsp_key.c.obj) - 0x08004644 bsp_key_get_long_press_event + 0x080046a0 0x34 BSP/libbsp.a(bsp_key.c.obj) + 0x080046a0 bsp_key_get_long_press_event .text.bsp_key_get_repeat_event - 0x08004678 0x44 BSP/libbsp.a(bsp_key.c.obj) - 0x08004678 bsp_key_get_repeat_event + 0x080046d4 0x44 BSP/libbsp.a(bsp_key.c.obj) + 0x080046d4 bsp_key_get_repeat_event .text.bsp_key_get_short_press_event - 0x080046bc 0x44 BSP/libbsp.a(bsp_key.c.obj) - 0x080046bc bsp_key_get_short_press_event + 0x08004718 0x44 BSP/libbsp.a(bsp_key.c.obj) + 0x08004718 bsp_key_get_short_press_event .text.bsp_eth_init - 0x08004700 0xd0 BSP/libbsp.a(bsp_eth.c.obj) - 0x08004700 bsp_eth_init + 0x0800475c 0xd0 BSP/libbsp.a(bsp_eth.c.obj) + 0x0800475c bsp_eth_init .text.bsp_eth_get_status - 0x080047d0 0xa4 BSP/libbsp.a(bsp_eth.c.obj) - 0x080047d0 bsp_eth_get_status + 0x0800482c 0xa4 BSP/libbsp.a(bsp_eth.c.obj) + 0x0800482c bsp_eth_get_status .text.bsp_eth_get_mac_addr - 0x08004874 0x48 BSP/libbsp.a(bsp_eth.c.obj) - 0x08004874 bsp_eth_get_mac_addr + 0x080048d0 0x48 BSP/libbsp.a(bsp_eth.c.obj) + 0x080048d0 bsp_eth_get_mac_addr .text.bsp_eth_check_link - 0x080048bc 0x48 BSP/libbsp.a(bsp_eth.c.obj) - 0x080048bc bsp_eth_check_link + 0x08004918 0x48 BSP/libbsp.a(bsp_eth.c.obj) + 0x08004918 bsp_eth_check_link .text.bsp_eth_read_phy_reg - 0x08004904 0x50 BSP/libbsp.a(bsp_eth.c.obj) - 0x08004904 bsp_eth_read_phy_reg + 0x08004960 0x50 BSP/libbsp.a(bsp_eth.c.obj) + 0x08004960 bsp_eth_read_phy_reg .text.bsp_eth_write_phy_reg - 0x08004954 0x48 BSP/libbsp.a(bsp_eth.c.obj) - 0x08004954 bsp_eth_write_phy_reg + 0x080049b0 0x48 BSP/libbsp.a(bsp_eth.c.obj) + 0x080049b0 bsp_eth_write_phy_reg .text.bsp_eth_detect_phy - 0x0800499c 0x80 BSP/libbsp.a(bsp_eth.c.obj) - 0x0800499c bsp_eth_detect_phy + 0x080049f8 0x80 BSP/libbsp.a(bsp_eth.c.obj) + 0x080049f8 bsp_eth_detect_phy .text.bsp_eth_configure_phy - 0x08004a1c 0xe4 BSP/libbsp.a(bsp_eth.c.obj) - 0x08004a1c bsp_eth_configure_phy + 0x08004a78 0xe4 BSP/libbsp.a(bsp_eth.c.obj) + 0x08004a78 bsp_eth_configure_phy .text.hal_init - 0x08004b00 0x44 HAL/libhal.a(hal.c.obj) - 0x08004b00 hal_init + 0x08004b5c 0x44 HAL/libhal.a(hal.c.obj) + 0x08004b5c hal_init .text.hal_error_init - 0x08004b44 0x30 HAL/libhal.a(hal.c.obj) - 0x08004b44 hal_error_init + 0x08004ba0 0x30 HAL/libhal.a(hal.c.obj) + 0x08004ba0 hal_error_init .text.hal_gpio_configure_pin - 0x08004b74 0x22 HAL/libhal.a(hal_gpio.c.obj) - 0x08004b74 hal_gpio_configure_pin + 0x08004bd0 0x22 HAL/libhal.a(hal_gpio.c.obj) + 0x08004bd0 hal_gpio_configure_pin .text.hal_gpio_write_pin - 0x08004b96 0x3c HAL/libhal.a(hal_gpio.c.obj) - 0x08004b96 hal_gpio_write_pin + 0x08004bf2 0x3c HAL/libhal.a(hal_gpio.c.obj) + 0x08004bf2 hal_gpio_write_pin .text.hal_gpio_toggle_pin - 0x08004bd2 0x3a HAL/libhal.a(hal_gpio.c.obj) - 0x08004bd2 hal_gpio_toggle_pin + 0x08004c2e 0x3a HAL/libhal.a(hal_gpio.c.obj) + 0x08004c2e hal_gpio_toggle_pin .text.hal_gpio_read_pin - 0x08004c0c 0x28 HAL/libhal.a(hal_gpio.c.obj) - 0x08004c0c hal_gpio_read_pin + 0x08004c68 0x28 HAL/libhal.a(hal_gpio.c.obj) + 0x08004c68 hal_gpio_read_pin .text.hal_delay_init - 0x08004c34 0xc HAL/libhal.a(hal_delay.c.obj) - 0x08004c34 hal_delay_init + 0x08004c90 0xc HAL/libhal.a(hal_delay.c.obj) + 0x08004c90 hal_delay_init .text.hal_delay_ms - 0x08004c40 0x16 HAL/libhal.a(hal_delay.c.obj) - 0x08004c40 hal_delay_ms + 0x08004c9c 0x16 HAL/libhal.a(hal_delay.c.obj) + 0x08004c9c hal_delay_ms .text.hal_get_tick - 0x08004c56 0xe HAL/libhal.a(hal_delay.c.obj) - 0x08004c56 hal_get_tick + 0x08004cb2 0xe HAL/libhal.a(hal_delay.c.obj) + 0x08004cb2 hal_get_tick .text.hal_uart_init - 0x08004c64 0xe HAL/libhal.a(hal_uart.c.obj) - 0x08004c64 hal_uart_init + 0x08004cc0 0xe HAL/libhal.a(hal_uart.c.obj) + 0x08004cc0 hal_uart_init .text.hal_uart_config - 0x08004c72 0x2e HAL/libhal.a(hal_uart.c.obj) - 0x08004c72 hal_uart_config + 0x08004cce 0x2e HAL/libhal.a(hal_uart.c.obj) + 0x08004cce hal_uart_config .text.hal_uart_send - 0x08004ca0 0x3e HAL/libhal.a(hal_uart.c.obj) - 0x08004ca0 hal_uart_send + 0x08004cfc 0x3e HAL/libhal.a(hal_uart.c.obj) + 0x08004cfc hal_uart_send .text.hal_spi_init - 0x08004cde 0x3a HAL/libhal.a(hal_spi.c.obj) - 0x08004cde hal_spi_init + 0x08004d3a 0x3a HAL/libhal.a(hal_spi.c.obj) + 0x08004d3a hal_spi_init .text.hal_spi_transmit - 0x08004d18 0x46 HAL/libhal.a(hal_spi.c.obj) - 0x08004d18 hal_spi_transmit + 0x08004d74 0x46 HAL/libhal.a(hal_spi.c.obj) + 0x08004d74 hal_spi_transmit .text.hal_spi_receive - 0x08004d5e 0x46 HAL/libhal.a(hal_spi.c.obj) - 0x08004d5e hal_spi_receive + 0x08004dba 0x46 HAL/libhal.a(hal_spi.c.obj) + 0x08004dba hal_spi_receive .text.hal_spi_transmit_receive - 0x08004da4 0x50 HAL/libhal.a(hal_spi.c.obj) - 0x08004da4 hal_spi_transmit_receive + 0x08004e00 0x50 HAL/libhal.a(hal_spi.c.obj) + 0x08004e00 hal_spi_transmit_receive .text.hal_eth_init - 0x08004df4 0x74 HAL/libhal.a(hal_eth.c.obj) - 0x08004df4 hal_eth_init + 0x08004e50 0x74 HAL/libhal.a(hal_eth.c.obj) + 0x08004e50 hal_eth_init .text.hal_eth_get_status - 0x08004e68 0x50 HAL/libhal.a(hal_eth.c.obj) - 0x08004e68 hal_eth_get_status + 0x08004ec4 0x50 HAL/libhal.a(hal_eth.c.obj) + 0x08004ec4 hal_eth_get_status .text.hal_eth_get_mac_addr - 0x08004eb8 0x50 HAL/libhal.a(hal_eth.c.obj) - 0x08004eb8 hal_eth_get_mac_addr + 0x08004f14 0x50 HAL/libhal.a(hal_eth.c.obj) + 0x08004f14 hal_eth_get_mac_addr .text.hal_eth_check_link - 0x08004f08 0x50 HAL/libhal.a(hal_eth.c.obj) - 0x08004f08 hal_eth_check_link + 0x08004f64 0x50 HAL/libhal.a(hal_eth.c.obj) + 0x08004f64 hal_eth_check_link .text.hal_eth_read_phy_reg - 0x08004f58 0x58 HAL/libhal.a(hal_eth.c.obj) - 0x08004f58 hal_eth_read_phy_reg + 0x08004fb4 0x58 HAL/libhal.a(hal_eth.c.obj) + 0x08004fb4 hal_eth_read_phy_reg .text.hal_eth_write_phy_reg - 0x08004fb0 0x5c HAL/libhal.a(hal_eth.c.obj) - 0x08004fb0 hal_eth_write_phy_reg + 0x0800500c 0x5c HAL/libhal.a(hal_eth.c.obj) + 0x0800500c hal_eth_write_phy_reg .text.hal_stm32f4_init - 0x0800500c 0x14 HAL/libhal.a(hal_stm32f4.c.obj) - 0x0800500c hal_stm32f4_init + 0x08005068 0x14 HAL/libhal.a(hal_stm32f4.c.obj) + 0x08005068 hal_stm32f4_init .text.hal_gpio_port_to_stm32 - 0x08005020 0x94 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x0800507c 0x94 HAL/libhal.a(hal_stm32f4_gpio.c.obj) .text.hal_gpio_pin_to_stm32 - 0x080050b4 0x20 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x08005110 0x20 HAL/libhal.a(hal_stm32f4_gpio.c.obj) .text.hal_gpio_state_to_stm32 - 0x080050d4 0x22 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x08005130 0x22 HAL/libhal.a(hal_stm32f4_gpio.c.obj) .text.hal_stm32f4_gpio_init - 0x080050f6 0xe HAL/libhal.a(hal_stm32f4_gpio.c.obj) - 0x080050f6 hal_stm32f4_gpio_init + 0x08005152 0xe HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x08005152 hal_stm32f4_gpio_init .text.hal_stm32f4_gpio_write_pin - 0x08005104 0x50 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - 0x08005104 hal_stm32f4_gpio_write_pin + 0x08005160 0x50 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x08005160 hal_stm32f4_gpio_write_pin .text.hal_stm32f4_gpio_toggle_pin - 0x08005154 0x40 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - 0x08005154 hal_stm32f4_gpio_toggle_pin + 0x080051b0 0x40 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x080051b0 hal_stm32f4_gpio_toggle_pin .text.hal_stm32f4_gpio_read_pin - 0x08005194 0x52 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - 0x08005194 hal_stm32f4_gpio_read_pin - *fill* 0x080051e6 0x2 + 0x080051f0 0x52 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x080051f0 hal_stm32f4_gpio_read_pin + *fill* 0x08005242 0x2 .text.hal_stm32f4_gpio_configure_pin - 0x080051e8 0x284 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - 0x080051e8 hal_stm32f4_gpio_configure_pin + 0x08005244 0x284 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x08005244 hal_stm32f4_gpio_configure_pin .text.hal_stm32f4_uart_init - 0x0800546c 0xec HAL/libhal.a(hal_stm32f4_uart.c.obj) - 0x0800546c hal_stm32f4_uart_init + 0x080054c8 0xec HAL/libhal.a(hal_stm32f4_uart.c.obj) + 0x080054c8 hal_stm32f4_uart_init .text.hal_stm32f4_uart_config - 0x08005558 0x94 HAL/libhal.a(hal_stm32f4_uart.c.obj) - 0x08005558 hal_stm32f4_uart_config + 0x080055b4 0x94 HAL/libhal.a(hal_stm32f4_uart.c.obj) + 0x080055b4 hal_stm32f4_uart_config .text.hal_stm32f4_uart_send - 0x080055ec 0x40 HAL/libhal.a(hal_stm32f4_uart.c.obj) - 0x080055ec hal_stm32f4_uart_send + 0x08005648 0x40 HAL/libhal.a(hal_stm32f4_uart.c.obj) + 0x08005648 hal_stm32f4_uart_send .text.hal_stm32f4_delay_init - 0x0800562c 0x34 HAL/libhal.a(hal_stm32f4_delay.c.obj) - 0x0800562c hal_stm32f4_delay_init + 0x08005688 0x34 HAL/libhal.a(hal_stm32f4_delay.c.obj) + 0x08005688 hal_stm32f4_delay_init .text.hal_stm32f4_delay_ms - 0x08005660 0x16 HAL/libhal.a(hal_stm32f4_delay.c.obj) - 0x08005660 hal_stm32f4_delay_ms + 0x080056bc 0x16 HAL/libhal.a(hal_stm32f4_delay.c.obj) + 0x080056bc hal_stm32f4_delay_ms .text.hal_stm32f4_get_tick - 0x08005676 0xe HAL/libhal.a(hal_stm32f4_delay.c.obj) - 0x08005676 hal_stm32f4_get_tick + 0x080056d2 0xe HAL/libhal.a(hal_stm32f4_delay.c.obj) + 0x080056d2 hal_stm32f4_get_tick .text.get_spi_handle - 0x08005684 0x70 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x080056e0 0x70 HAL/libhal.a(hal_stm32f4_spi.c.obj) .text.hal_stm32f4_spi_init - 0x080056f4 0x288 HAL/libhal.a(hal_stm32f4_spi.c.obj) - 0x080056f4 hal_stm32f4_spi_init + 0x08005750 0x288 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x08005750 hal_stm32f4_spi_init .text.hal_stm32f4_spi_transmit - 0x0800597c 0x62 HAL/libhal.a(hal_stm32f4_spi.c.obj) - 0x0800597c hal_stm32f4_spi_transmit + 0x080059d8 0x62 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x080059d8 hal_stm32f4_spi_transmit .text.hal_stm32f4_spi_receive - 0x080059de 0x62 HAL/libhal.a(hal_stm32f4_spi.c.obj) - 0x080059de hal_stm32f4_spi_receive + 0x08005a3a 0x62 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x08005a3a hal_stm32f4_spi_receive .text.hal_stm32f4_spi_transmit_receive - 0x08005a40 0x70 HAL/libhal.a(hal_stm32f4_spi.c.obj) - 0x08005a40 hal_stm32f4_spi_transmit_receive + 0x08005a9c 0x70 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x08005a9c hal_stm32f4_spi_transmit_receive .text.hal_stm32f4_eth_gpio_config - 0x08005ab0 0x1c8 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08005ab0 hal_stm32f4_eth_gpio_config + 0x08005b0c 0x1c8 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08005b0c hal_stm32f4_eth_gpio_config .text.hal_stm32f4_eth_init - 0x08005c78 0x19c HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08005c78 hal_stm32f4_eth_init + 0x08005cd4 0x19c HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08005cd4 hal_stm32f4_eth_init .text.hal_stm32f4_eth_get_status - 0x08005e14 0x118 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08005e14 hal_stm32f4_eth_get_status + 0x08005e70 0x118 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08005e70 hal_stm32f4_eth_get_status .text.hal_stm32f4_eth_get_mac_addr - 0x08005f2c 0x5c HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08005f2c hal_stm32f4_eth_get_mac_addr + 0x08005f88 0x5c HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08005f88 hal_stm32f4_eth_get_mac_addr .text.hal_stm32f4_eth_check_link - 0x08005f88 0x78 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08005f88 hal_stm32f4_eth_check_link + 0x08005fe4 0x78 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08005fe4 hal_stm32f4_eth_check_link .text.hal_stm32f4_eth_reset_phy - 0x08006000 0xb0 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08006000 hal_stm32f4_eth_reset_phy + 0x0800605c 0xb0 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x0800605c hal_stm32f4_eth_reset_phy .text.hal_stm32f4_eth_read_phy_reg - 0x080060b0 0x74 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x080060b0 hal_stm32f4_eth_read_phy_reg + 0x0800610c 0x74 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x0800610c hal_stm32f4_eth_read_phy_reg .text.hal_stm32f4_eth_write_phy_reg - 0x08006124 0x70 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08006124 hal_stm32f4_eth_write_phy_reg + 0x08006180 0x70 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08006180 hal_stm32f4_eth_write_phy_reg .text.ETH_IRQHandler - 0x08006194 0x14 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x08006194 ETH_IRQHandler + 0x080061f0 0x14 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x080061f0 ETH_IRQHandler .text.HAL_ETH_RxCpltCallback - 0x080061a8 0x28 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x080061a8 HAL_ETH_RxCpltCallback + 0x08006204 0x28 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08006204 HAL_ETH_RxCpltCallback .text.HAL_ETH_TxCpltCallback - 0x080061d0 0x28 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x080061d0 HAL_ETH_TxCpltCallback + 0x0800622c 0x28 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x0800622c HAL_ETH_TxCpltCallback .text.HAL_ETH_ErrorCallback - 0x080061f8 0x34 HAL/libhal.a(hal_stm32f4_eth.c.obj) - 0x080061f8 HAL_ETH_ErrorCallback + 0x08006254 0x34 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x08006254 HAL_ETH_ErrorCallback .text.led_init - 0x0800622c 0x3e Modules/led/libled.a(led.c.obj) - 0x0800622c led_init + 0x08006288 0x3e Modules/led/libled.a(led.c.obj) + 0x08006288 led_init .text.led_toggle - 0x0800626a 0x3c Modules/led/libled.a(led.c.obj) - 0x0800626a led_toggle + 0x080062c6 0x3c Modules/led/libled.a(led.c.obj) + 0x080062c6 led_toggle .text.delay_init - 0x080062a6 0xc Modules/delay/libdelay.a(delay.c.obj) - 0x080062a6 delay_init + 0x08006302 0xc Modules/delay/libdelay.a(delay.c.obj) + 0x08006302 delay_init .text.delay_ms - 0x080062b2 0x16 Modules/delay/libdelay.a(delay.c.obj) - 0x080062b2 delay_ms + 0x0800630e 0x16 Modules/delay/libdelay.a(delay.c.obj) + 0x0800630e delay_ms .text.delay_get_tick - 0x080062c8 0xe Modules/delay/libdelay.a(delay.c.obj) - 0x080062c8 delay_get_tick - *fill* 0x080062d6 0x2 + 0x08006324 0xe Modules/delay/libdelay.a(delay.c.obj) + 0x08006324 delay_get_tick + *fill* 0x08006332 0x2 .text.log_level_to_string - 0x080062d8 0x68 Middlewares/logging/liblogging.a(logging.c.obj) + 0x08006334 0x68 Middlewares/logging/liblogging.a(logging.c.obj) .text.logging_init - 0x08006340 0x20 Middlewares/logging/liblogging.a(logging.c.obj) - 0x08006340 logging_init + 0x0800639c 0x20 Middlewares/logging/liblogging.a(logging.c.obj) + 0x0800639c logging_init .text.logging_set_level - 0x08006360 0x34 Middlewares/logging/liblogging.a(logging.c.obj) - 0x08006360 logging_set_level + 0x080063bc 0x34 Middlewares/logging/liblogging.a(logging.c.obj) + 0x080063bc logging_set_level .text.log_internal - 0x08006394 0xe8 Middlewares/logging/liblogging.a(logging.c.obj) + 0x080063f0 0xe8 Middlewares/logging/liblogging.a(logging.c.obj) .text.log_debug - 0x0800647c 0x26 Middlewares/logging/liblogging.a(logging.c.obj) - 0x0800647c log_debug + 0x080064d8 0x26 Middlewares/logging/liblogging.a(logging.c.obj) + 0x080064d8 log_debug .text.log_info - 0x080064a2 0x26 Middlewares/logging/liblogging.a(logging.c.obj) - 0x080064a2 log_info + 0x080064fe 0x26 Middlewares/logging/liblogging.a(logging.c.obj) + 0x080064fe log_info .text.log_error - 0x080064c8 0x26 Middlewares/logging/liblogging.a(logging.c.obj) - 0x080064c8 log_error - *fill* 0x080064ee 0x2 + 0x08006524 0x26 Middlewares/logging/liblogging.a(logging.c.obj) + 0x08006524 log_error + *fill* 0x0800654a 0x2 .text.w25qxx_init - 0x080064f0 0x16c Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - 0x080064f0 w25qxx_init + 0x0800654c 0x16c Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + 0x0800654c w25qxx_init .text.w25qxx_get_device_info - 0x0800665c 0x34 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - 0x0800665c w25qxx_get_device_info + 0x080066b8 0x34 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + 0x080066b8 w25qxx_get_device_info .text.uart_init - 0x08006690 0x3c Modules/uart/libuart.a(uart.c.obj) - 0x08006690 uart_init + 0x080066ec 0x3c Modules/uart/libuart.a(uart.c.obj) + 0x080066ec uart_init .text.uart_send_string - 0x080066cc 0x34 Modules/uart/libuart.a(uart.c.obj) - 0x080066cc uart_send_string - .text.__errno 0x08006700 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-errno.o) - 0x08006700 __errno - .text.memcpy 0x0800670c 0x1c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memcpy-stub.o) - 0x0800670c memcpy + 0x08006728 0x34 Modules/uart/libuart.a(uart.c.obj) + 0x08006728 uart_send_string + .text.__errno 0x0800675c 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-errno.o) + 0x0800675c __errno + .text.memcpy 0x08006768 0x1c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memcpy-stub.o) + 0x08006768 memcpy .text.snprintf - 0x08006728 0x68 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-snprintf.o) - 0x08006728 sniprintf - 0x08006728 snprintf + 0x08006784 0x68 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-snprintf.o) + 0x08006784 sniprintf + 0x08006784 snprintf .text._vsnprintf_r - 0x08006790 0x56 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) - 0x08006790 _vsniprintf_r - 0x08006790 _vsnprintf_r - *fill* 0x080067e6 0x2 + 0x080067ec 0x56 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) + 0x080067ec _vsniprintf_r + 0x080067ec _vsnprintf_r + *fill* 0x08006842 0x2 .text.vsnprintf - 0x080067e8 0x1c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) - 0x080067e8 vsniprintf - 0x080067e8 vsnprintf + 0x08006844 0x1c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) + 0x08006844 vsniprintf + 0x08006844 vsnprintf .text.__ssputs_r - 0x08006804 0xb6 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) - 0x08006804 __ssputs_r - *fill* 0x080068ba 0x2 + 0x08006860 0xb6 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) + 0x08006860 __ssputs_r + *fill* 0x08006916 0x2 .text._svfprintf_r - 0x080068bc 0x200 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) - 0x080068bc _svfiprintf_r - 0x080068bc _svfprintf_r + 0x08006918 0x200 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) + 0x08006918 _svfiprintf_r + 0x08006918 _svfprintf_r .text._printf_common - 0x08006abc 0xda d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) - 0x08006abc _printf_common - *fill* 0x08006b96 0x2 + 0x08006b18 0xda d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) + 0x08006b18 _printf_common + *fill* 0x08006bf2 0x2 .text._printf_i - 0x08006b98 0x24c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) - 0x08006b98 _printf_i - .text.memmove 0x08006de4 0x34 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memmove.o) - 0x08006de4 memmove - .text._free_r 0x08006e18 0x98 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-freer.o) - 0x08006e18 _free_r + 0x08006bf4 0x24c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) + 0x08006bf4 _printf_i + .text.memmove 0x08006e40 0x34 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memmove.o) + 0x08006e40 memmove + .text._free_r 0x08006e74 0x98 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-freer.o) + 0x08006e74 _free_r .text.sbrk_aligned - 0x08006eb0 0x40 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) + 0x08006f0c 0x40 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) .text._malloc_r - 0x08006ef0 0xe8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) - 0x08006ef0 _malloc_r + 0x08006f4c 0xe8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) + 0x08006f4c _malloc_r .text._realloc_r - 0x08006fd8 0x5e d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-reallocr.o) - 0x08006fd8 _realloc_r - *fill* 0x08007036 0x2 - .text._sbrk_r 0x08007038 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-sbrkr.o) - 0x08007038 _sbrk_r + 0x08007034 0x5e d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-reallocr.o) + 0x08007034 _realloc_r + *fill* 0x08007092 0x2 + .text._sbrk_r 0x08007094 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-sbrkr.o) + 0x08007094 _sbrk_r .text.__malloc_lock - 0x08007058 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) - 0x08007058 __malloc_lock + 0x080070b4 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) + 0x080070b4 __malloc_lock .text.__malloc_unlock - 0x08007064 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) - 0x08007064 __malloc_unlock + 0x080070c0 0xc d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) + 0x080070c0 __malloc_unlock .text._malloc_usable_size_r - 0x08007070 0x10 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-msizer.o) - 0x08007070 _malloc_usable_size_r + 0x080070cc 0x10 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-msizer.o) + 0x080070cc _malloc_usable_size_r .text.__retarget_lock_acquire_recursive - 0x08007080 0x2 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) - 0x08007080 __retarget_lock_acquire_recursive + 0x080070dc 0x2 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) + 0x080070dc __retarget_lock_acquire_recursive .text.__retarget_lock_release_recursive - 0x08007082 0x2 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) - 0x08007082 __retarget_lock_release_recursive + 0x080070de 0x2 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) + 0x080070de __retarget_lock_release_recursive *(.glue_7) - .glue_7 0x08007084 0x0 linker stubs + .glue_7 0x080070e0 0x0 linker stubs *(.glue_7t) - .glue_7t 0x08007084 0x0 linker stubs + .glue_7t 0x080070e0 0x0 linker stubs *(.eh_frame) - .eh_frame 0x08007084 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .eh_frame 0x080070e0 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o *(.init) - .init 0x08007084 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o - 0x08007084 _init - .init 0x08007088 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + .init 0x080070e0 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + 0x080070e0 _init + .init 0x080070e4 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o *(.fini) - .fini 0x08007090 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o - 0x08007090 _fini - .fini 0x08007094 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o - 0x0800709c . = ALIGN (0x4) - 0x0800709c _etext = . + .fini 0x080070ec 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crti.o + 0x080070ec _fini + .fini 0x080070f0 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o + 0x080070f8 . = ALIGN (0x4) + 0x080070f8 _etext = . -.vfp11_veneer 0x0800709c 0x0 - .vfp11_veneer 0x0800709c 0x0 linker stubs +.vfp11_veneer 0x080070f8 0x0 + .vfp11_veneer 0x080070f8 0x0 linker stubs -.v4_bx 0x0800709c 0x0 - .v4_bx 0x0800709c 0x0 linker stubs +.v4_bx 0x080070f8 0x0 + .v4_bx 0x080070f8 0x0 linker stubs -.iplt 0x0800709c 0x0 - .iplt 0x0800709c 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.iplt 0x080070f8 0x0 + .iplt 0x080070f8 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.rodata 0x0800709c 0x6c4 - 0x0800709c . = ALIGN (0x4) +.rodata 0x080070f8 0x698 + 0x080070f8 . = ALIGN (0x4) *(.rodata) - .rodata 0x0800709c 0x467 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - *fill* 0x08007503 0x1 - .rodata 0x08007504 0x35 BSP/libbsp.a(stm32f407vet6_board.c.obj) - *fill* 0x08007539 0x3 - .rodata 0x0800753c 0x8 BSP/libbsp.a(bsp_w25qxx.c.obj) - .rodata 0x08007544 0x20 HAL/libhal.a(hal_stm32f4_spi.c.obj) - .rodata 0x08007564 0x6e Middlewares/logging/liblogging.a(logging.c.obj) - *fill* 0x080075d2 0x2 - .rodata 0x080075d4 0x3 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .rodata 0x080070f8 0x43a CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + *fill* 0x08007532 0x2 + .rodata 0x08007534 0x35 BSP/libbsp.a(stm32f407vet6_board.c.obj) + *fill* 0x08007569 0x3 + .rodata 0x0800756c 0x8 BSP/libbsp.a(bsp_w25qxx.c.obj) + .rodata 0x08007574 0x20 HAL/libhal.a(hal_stm32f4_spi.c.obj) + .rodata 0x08007594 0x6e Middlewares/logging/liblogging.a(logging.c.obj) + *fill* 0x08007602 0x2 + .rodata 0x08007604 0x3 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) *(.rodata*) - *fill* 0x080075d7 0x1 + *fill* 0x08007607 0x1 .rodata.AHBPrescTable - 0x080075d8 0x10 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj - 0x080075d8 AHBPrescTable + 0x08007608 0x10 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj + 0x08007608 AHBPrescTable .rodata.APBPrescTable - 0x080075e8 0x8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj - 0x080075e8 APBPrescTable + 0x08007618 0x8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj + 0x08007618 APBPrescTable .rodata.stm32f407vet6_buttons - 0x080075f0 0x18 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08007620 0x18 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_uarts - 0x08007608 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08007638 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_spis - 0x0800761c 0x18 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x0800764c 0x18 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_i2cs - 0x08007634 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08007664 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_cans - 0x08007648 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08007678 0x14 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_adc_channels - 0x0800765c 0x4 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x0800768c 0x4 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_adcs - 0x08007660 0xc BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x08007690 0xc BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_leds - 0x0800766c 0x10 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x0800769c 0x10 BSP/libbsp.a(stm32f407vet6_board.c.obj) .rodata.stm32f407vet6_board_config - 0x0800767c 0xb0 BSP/libbsp.a(stm32f407vet6_board.c.obj) - 0x0800767c stm32f407vet6_board_config + 0x080076ac 0xb0 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x080076ac stm32f407vet6_board_config .rodata._svfprintf_r.str1.1 - 0x0800772c 0x11 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) + 0x0800775c 0x11 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) .rodata._printf_i.str1.1 - 0x0800773d 0x22 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) - 0x08007760 . = ALIGN (0x4) - *fill* 0x0800775f 0x1 + 0x0800776d 0x22 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) + 0x08007790 . = ALIGN (0x4) + *fill* 0x0800778f 0x1 -.ARM.extab 0x08007760 0x0 - 0x08007760 . = ALIGN (0x4) +.ARM.extab 0x08007790 0x0 + 0x08007790 . = ALIGN (0x4) *(.ARM.extab* .gnu.linkonce.armextab.*) - 0x08007760 . = ALIGN (0x4) + 0x08007790 . = ALIGN (0x4) -.ARM 0x08007760 0x8 - 0x08007760 . = ALIGN (0x4) - 0x08007760 __exidx_start = . +.ARM 0x08007790 0x8 + 0x08007790 . = ALIGN (0x4) + 0x08007790 __exidx_start = . *(.ARM.exidx*) - .ARM.exidx 0x08007760 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) - 0x08007768 __exidx_end = . - 0x08007768 . = ALIGN (0x4) + .ARM.exidx 0x08007790 0x8 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + 0x08007798 __exidx_end = . + 0x08007798 . = ALIGN (0x4) -.rel.dyn 0x08007768 0x0 - .rel.iplt 0x08007768 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o +.rel.dyn 0x08007798 0x0 + .rel.iplt 0x08007798 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.preinit_array 0x08007768 0x0 - 0x08007768 . = ALIGN (0x4) - 0x08007768 PROVIDE (__preinit_array_start = .) +.preinit_array 0x08007798 0x0 + 0x08007798 . = ALIGN (0x4) + 0x08007798 PROVIDE (__preinit_array_start = .) *(.preinit_array*) - 0x08007768 PROVIDE (__preinit_array_end = .) - 0x08007768 . = ALIGN (0x4) + 0x08007798 PROVIDE (__preinit_array_end = .) + 0x08007798 . = ALIGN (0x4) -.init_array 0x08007768 0x4 - 0x08007768 . = ALIGN (0x4) - 0x08007768 PROVIDE (__init_array_start = .) +.init_array 0x08007798 0x4 + 0x08007798 . = ALIGN (0x4) + 0x08007798 PROVIDE (__init_array_start = .) *(SORT_BY_NAME(.init_array.*)) *(.init_array*) - .init_array 0x08007768 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o - 0x0800776c PROVIDE (__init_array_end = .) - 0x0800776c . = ALIGN (0x4) + .init_array 0x08007798 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + 0x0800779c PROVIDE (__init_array_end = .) + 0x0800779c . = ALIGN (0x4) -.fini_array 0x0800776c 0x4 - 0x0800776c . = ALIGN (0x4) +.fini_array 0x0800779c 0x4 + 0x0800779c . = ALIGN (0x4) [!provide] PROVIDE (__fini_array_start = .) *(SORT_BY_NAME(.fini_array.*)) *(.fini_array*) - .fini_array 0x0800776c 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o + .fini_array 0x0800779c 0x4 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o [!provide] PROVIDE (__fini_array_end = .) - 0x08007770 . = ALIGN (0x4) - 0x08007770 _sidata = LOADADDR (.data) + 0x080077a0 . = ALIGN (0x4) + 0x080077a0 _sidata = LOADADDR (.data) -.data 0x20000000 0xac load address 0x08007770 +.data 0x20000000 0xac load address 0x080077a0 0x20000000 . = ALIGN (0x4) 0x20000000 _sdata = . *(.data) @@ -4914,12 +4929,12 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o 0x200000ac . = ALIGN (0x4) *fill* 0x200000a9 0x3 0x200000ac _edata = . - 0x0800781c _siccmram = LOADADDR (.ccmram) + 0x0800784c _siccmram = LOADADDR (.ccmram) -.igot.plt 0x200000ac 0x0 load address 0x0800781c +.igot.plt 0x200000ac 0x0 load address 0x0800784c .igot.plt 0x200000ac 0x0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtbegin.o -.ccmram 0x10000000 0x0 load address 0x0800781c +.ccmram 0x10000000 0x0 load address 0x0800784c 0x10000000 . = ALIGN (0x4) 0x10000000 _sccmram = . *(.ccmram) @@ -4940,9 +4955,9 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard/crtn.o *fill* 0x200000d2 0x2 .bss.led_toggle_timer 0x200000d4 0x4 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .bss.eth_check_timer.1 + .bss.eth_check_timer 0x200000d8 0x4 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .bss.last_link_status.0 + .bss.last_link_status 0x200000dc 0x1 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj *fill* 0x200000dd 0x3 .bss.__sbrk_heap_end @@ -5176,7 +5191,7 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .comment 0x00000049 0x4a Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) .comment 0x00000049 0x4a Modules/uart/libuart.a(uart.c.obj) -.debug_frame 0x00000000 0x48f8 +.debug_frame 0x00000000 0x49dc .debug_frame 0x00000000 0x2c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(lib_a-init.o) .debug_frame 0x0000002c 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libc_nano.a(lib_a-memset.o) .debug_frame 0x0000004c 0x58 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj @@ -5187,51 +5202,51 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_frame 0x00000c60 0x954 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_frame 0x000015b4 0x828 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_frame 0x00001ddc 0x8c0 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_frame 0x0000269c 0x70 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_frame 0x0000270c 0x104 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_frame 0x00002810 0x38 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_frame 0x00002848 0x34 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_frame 0x0000287c 0x98 BSP/libbsp.a(bsp_init.c.obj) - .debug_frame 0x00002914 0x1a0 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_frame 0x00002ab4 0x1dc BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_frame 0x00002c90 0x1f8 BSP/libbsp.a(bsp_key.c.obj) - .debug_frame 0x00002e88 0x190 BSP/libbsp.a(bsp_eth.c.obj) - .debug_frame 0x00003018 0x2d0 HAL/libhal.a(hal.c.obj) - .debug_frame 0x000032e8 0xbc HAL/libhal.a(hal_gpio.c.obj) - .debug_frame 0x000033a4 0x90 HAL/libhal.a(hal_delay.c.obj) - .debug_frame 0x00003434 0xe0 HAL/libhal.a(hal_uart.c.obj) - .debug_frame 0x00003514 0xc4 HAL/libhal.a(hal_spi.c.obj) - .debug_frame 0x000035d8 0x17c HAL/libhal.a(hal_eth.c.obj) - .debug_frame 0x00003754 0x2c HAL/libhal.a(hal_stm32f4.c.obj) - .debug_frame 0x00003780 0x13c HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_frame 0x000038bc 0xe8 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_frame 0x000039a4 0xb4 HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_frame 0x00003a58 0xf4 HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_frame 0x00003b4c 0x234 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_frame 0x00003d80 0xc8 Modules/led/libled.a(led.c.obj) - .debug_frame 0x00003e48 0x90 Modules/delay/libdelay.a(delay.c.obj) - .debug_frame 0x00003ed8 0x1ec Middlewares/logging/liblogging.a(logging.c.obj) - .debug_frame 0x000040c4 0x25c Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_frame 0x00004320 0x108 Modules/uart/libuart.a(uart.c.obj) - .debug_frame 0x00004428 0x2c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) - .debug_frame 0x00004454 0x34 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) - .debug_frame 0x00004488 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-errno.o) - .debug_frame 0x000044a8 0x28 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memcpy-stub.o) - .debug_frame 0x000044d0 0x7c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-snprintf.o) - .debug_frame 0x0000454c 0x4c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) - .debug_frame 0x00004598 0x90 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) - .debug_frame 0x00004628 0x60 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) - .debug_frame 0x00004688 0x28 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memmove.o) - .debug_frame 0x000046b0 0x38 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-freer.o) - .debug_frame 0x000046e8 0x4c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) - .debug_frame 0x00004734 0x3c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-reallocr.o) - .debug_frame 0x00004770 0x2c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-sbrkr.o) - .debug_frame 0x0000479c 0x30 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) - .debug_frame 0x000047cc 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-msizer.o) - .debug_frame 0x000047ec 0x5c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-reent.o) - .debug_frame 0x00004848 0xb0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) + .debug_frame 0x0000269c 0x154 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_frame 0x000027f0 0x104 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_frame 0x000028f4 0x38 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_frame 0x0000292c 0x34 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_frame 0x00002960 0x98 BSP/libbsp.a(bsp_init.c.obj) + .debug_frame 0x000029f8 0x1a0 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_frame 0x00002b98 0x1dc BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_frame 0x00002d74 0x1f8 BSP/libbsp.a(bsp_key.c.obj) + .debug_frame 0x00002f6c 0x190 BSP/libbsp.a(bsp_eth.c.obj) + .debug_frame 0x000030fc 0x2d0 HAL/libhal.a(hal.c.obj) + .debug_frame 0x000033cc 0xbc HAL/libhal.a(hal_gpio.c.obj) + .debug_frame 0x00003488 0x90 HAL/libhal.a(hal_delay.c.obj) + .debug_frame 0x00003518 0xe0 HAL/libhal.a(hal_uart.c.obj) + .debug_frame 0x000035f8 0xc4 HAL/libhal.a(hal_spi.c.obj) + .debug_frame 0x000036bc 0x17c HAL/libhal.a(hal_eth.c.obj) + .debug_frame 0x00003838 0x2c HAL/libhal.a(hal_stm32f4.c.obj) + .debug_frame 0x00003864 0x13c HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_frame 0x000039a0 0xe8 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_frame 0x00003a88 0xb4 HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_frame 0x00003b3c 0xf4 HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_frame 0x00003c30 0x234 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_frame 0x00003e64 0xc8 Modules/led/libled.a(led.c.obj) + .debug_frame 0x00003f2c 0x90 Modules/delay/libdelay.a(delay.c.obj) + .debug_frame 0x00003fbc 0x1ec Middlewares/logging/liblogging.a(logging.c.obj) + .debug_frame 0x000041a8 0x25c Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_frame 0x00004404 0x108 Modules/uart/libuart.a(uart.c.obj) + .debug_frame 0x0000450c 0x2c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_aeabi_uldivmod.o) + .debug_frame 0x00004538 0x34 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a(_udivmoddi4.o) + .debug_frame 0x0000456c 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-errno.o) + .debug_frame 0x0000458c 0x28 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memcpy-stub.o) + .debug_frame 0x000045b4 0x7c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-snprintf.o) + .debug_frame 0x00004630 0x4c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-vsnprintf.o) + .debug_frame 0x0000467c 0x90 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-svfprintf.o) + .debug_frame 0x0000470c 0x60 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-vfprintf_i.o) + .debug_frame 0x0000476c 0x28 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-memmove.o) + .debug_frame 0x00004794 0x38 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-freer.o) + .debug_frame 0x000047cc 0x4c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-mallocr.o) + .debug_frame 0x00004818 0x3c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-reallocr.o) + .debug_frame 0x00004854 0x2c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-sbrkr.o) + .debug_frame 0x00004880 0x30 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-mlock.o) + .debug_frame 0x000048b0 0x20 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-nano-msizer.o) + .debug_frame 0x000048d0 0x5c d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-reent.o) + .debug_frame 0x0000492c 0xb0 d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/../../../../arm-none-eabi/lib/thumb/v7e-m+fp/hard\libg_nano.a(lib_a-lock.o) -.debug_info 0x00000000 0x16b93 +.debug_info 0x00000000 0x16c13 .debug_info 0x00000000 0x523 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_info 0x00000523 0x937 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj .debug_info 0x00000e5a 0x76a cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj @@ -5240,35 +5255,35 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_info 0x00002d50 0x30c0 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_info 0x00005e10 0x1609 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_info 0x00007419 0x2326 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_info 0x0000973f 0x17e9 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_info 0x0000af28 0x119 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_info 0x0000b041 0x2a8 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_info 0x0000b2e9 0x15f CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_info 0x0000b448 0x22 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - .debug_info 0x0000b46a 0x1248 BSP/libbsp.a(bsp_init.c.obj) - .debug_info 0x0000c6b2 0x16f8 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_info 0x0000ddaa 0x87c BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_info 0x0000e626 0x15b3 BSP/libbsp.a(bsp_key.c.obj) - .debug_info 0x0000fbd9 0x6e0 BSP/libbsp.a(bsp_eth.c.obj) - .debug_info 0x000102b9 0x873 HAL/libhal.a(hal.c.obj) - .debug_info 0x00010b2c 0x46b HAL/libhal.a(hal_gpio.c.obj) - .debug_info 0x00010f97 0x13f HAL/libhal.a(hal_delay.c.obj) - .debug_info 0x000110d6 0x42c HAL/libhal.a(hal_uart.c.obj) - .debug_info 0x00011502 0x404 HAL/libhal.a(hal_spi.c.obj) - .debug_info 0x00011906 0x5cf HAL/libhal.a(hal_eth.c.obj) - .debug_info 0x00011ed5 0xbc HAL/libhal.a(hal_stm32f4.c.obj) - .debug_info 0x00011f91 0x8c3 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_info 0x00012854 0xb60 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_info 0x000133b4 0x30f HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_info 0x000136c3 0xdb1 HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_info 0x00014474 0x15c5 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_info 0x00015a39 0x2dd Modules/led/libled.a(led.c.obj) - .debug_info 0x00015d16 0xfa Modules/delay/libdelay.a(delay.c.obj) - .debug_info 0x00015e10 0x30f Middlewares/logging/liblogging.a(logging.c.obj) - .debug_info 0x0001611f 0x6b4 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_info 0x000167d3 0x3c0 Modules/uart/libuart.a(uart.c.obj) + .debug_info 0x0000973f 0x1869 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_info 0x0000afa8 0x119 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_info 0x0000b0c1 0x2a8 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_info 0x0000b369 0x15f CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_info 0x0000b4c8 0x22 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + .debug_info 0x0000b4ea 0x1248 BSP/libbsp.a(bsp_init.c.obj) + .debug_info 0x0000c732 0x16f8 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_info 0x0000de2a 0x87c BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_info 0x0000e6a6 0x15b3 BSP/libbsp.a(bsp_key.c.obj) + .debug_info 0x0000fc59 0x6e0 BSP/libbsp.a(bsp_eth.c.obj) + .debug_info 0x00010339 0x873 HAL/libhal.a(hal.c.obj) + .debug_info 0x00010bac 0x46b HAL/libhal.a(hal_gpio.c.obj) + .debug_info 0x00011017 0x13f HAL/libhal.a(hal_delay.c.obj) + .debug_info 0x00011156 0x42c HAL/libhal.a(hal_uart.c.obj) + .debug_info 0x00011582 0x404 HAL/libhal.a(hal_spi.c.obj) + .debug_info 0x00011986 0x5cf HAL/libhal.a(hal_eth.c.obj) + .debug_info 0x00011f55 0xbc HAL/libhal.a(hal_stm32f4.c.obj) + .debug_info 0x00012011 0x8c3 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_info 0x000128d4 0xb60 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_info 0x00013434 0x30f HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_info 0x00013743 0xdb1 HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_info 0x000144f4 0x15c5 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_info 0x00015ab9 0x2dd Modules/led/libled.a(led.c.obj) + .debug_info 0x00015d96 0xfa Modules/delay/libdelay.a(delay.c.obj) + .debug_info 0x00015e90 0x30f Middlewares/logging/liblogging.a(logging.c.obj) + .debug_info 0x0001619f 0x6b4 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_info 0x00016853 0x3c0 Modules/uart/libuart.a(uart.c.obj) -.debug_abbrev 0x00000000 0x3409 +.debug_abbrev 0x00000000 0x346b .debug_abbrev 0x00000000 0x116 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_abbrev 0x00000116 0x262 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj .debug_abbrev 0x00000378 0x1c4 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj @@ -5277,35 +5292,35 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_abbrev 0x00000a23 0x2b3 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_abbrev 0x00000cd6 0x23a cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_abbrev 0x00000f10 0x306 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_abbrev 0x00001216 0x1e1 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_abbrev 0x000013f7 0x61 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_abbrev 0x00001458 0xd4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_abbrev 0x0000152c 0xa6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_abbrev 0x000015d2 0x12 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - .debug_abbrev 0x000015e4 0x1a7 BSP/libbsp.a(bsp_init.c.obj) - .debug_abbrev 0x0000178b 0x1f6 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_abbrev 0x00001981 0x17a BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_abbrev 0x00001afb 0x24a BSP/libbsp.a(bsp_key.c.obj) - .debug_abbrev 0x00001d45 0x16f BSP/libbsp.a(bsp_eth.c.obj) - .debug_abbrev 0x00001eb4 0x211 HAL/libhal.a(hal.c.obj) - .debug_abbrev 0x000020c5 0x116 HAL/libhal.a(hal_gpio.c.obj) - .debug_abbrev 0x000021db 0xb9 HAL/libhal.a(hal_delay.c.obj) - .debug_abbrev 0x00002294 0xeb HAL/libhal.a(hal_uart.c.obj) - .debug_abbrev 0x0000237f 0xb7 HAL/libhal.a(hal_spi.c.obj) - .debug_abbrev 0x00002436 0x112 HAL/libhal.a(hal_eth.c.obj) - .debug_abbrev 0x00002548 0x74 HAL/libhal.a(hal_stm32f4.c.obj) - .debug_abbrev 0x000025bc 0x1cc HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_abbrev 0x00002788 0x1a4 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_abbrev 0x0000292c 0x11b HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_abbrev 0x00002a47 0x1c8 HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_abbrev 0x00002c0f 0x277 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_abbrev 0x00002e86 0xed Modules/led/libled.a(led.c.obj) - .debug_abbrev 0x00002f73 0x9f Modules/delay/libdelay.a(delay.c.obj) - .debug_abbrev 0x00003012 0x15b Middlewares/logging/liblogging.a(logging.c.obj) - .debug_abbrev 0x0000316d 0x18d Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_abbrev 0x000032fa 0x10f Modules/uart/libuart.a(uart.c.obj) + .debug_abbrev 0x00001216 0x243 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_abbrev 0x00001459 0x61 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_abbrev 0x000014ba 0xd4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_abbrev 0x0000158e 0xa6 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_abbrev 0x00001634 0x12 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + .debug_abbrev 0x00001646 0x1a7 BSP/libbsp.a(bsp_init.c.obj) + .debug_abbrev 0x000017ed 0x1f6 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_abbrev 0x000019e3 0x17a BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_abbrev 0x00001b5d 0x24a BSP/libbsp.a(bsp_key.c.obj) + .debug_abbrev 0x00001da7 0x16f BSP/libbsp.a(bsp_eth.c.obj) + .debug_abbrev 0x00001f16 0x211 HAL/libhal.a(hal.c.obj) + .debug_abbrev 0x00002127 0x116 HAL/libhal.a(hal_gpio.c.obj) + .debug_abbrev 0x0000223d 0xb9 HAL/libhal.a(hal_delay.c.obj) + .debug_abbrev 0x000022f6 0xeb HAL/libhal.a(hal_uart.c.obj) + .debug_abbrev 0x000023e1 0xb7 HAL/libhal.a(hal_spi.c.obj) + .debug_abbrev 0x00002498 0x112 HAL/libhal.a(hal_eth.c.obj) + .debug_abbrev 0x000025aa 0x74 HAL/libhal.a(hal_stm32f4.c.obj) + .debug_abbrev 0x0000261e 0x1cc HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_abbrev 0x000027ea 0x1a4 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_abbrev 0x0000298e 0x11b HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_abbrev 0x00002aa9 0x1c8 HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_abbrev 0x00002c71 0x277 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_abbrev 0x00002ee8 0xed Modules/led/libled.a(led.c.obj) + .debug_abbrev 0x00002fd5 0x9f Modules/delay/libdelay.a(delay.c.obj) + .debug_abbrev 0x00003074 0x15b Middlewares/logging/liblogging.a(logging.c.obj) + .debug_abbrev 0x000031cf 0x18d Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_abbrev 0x0000335c 0x10f Modules/uart/libuart.a(uart.c.obj) -.debug_aranges 0x00000000 0x11b8 +.debug_aranges 0x00000000 0x11f0 .debug_aranges 0x00000000 0x28 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_aranges @@ -5323,61 +5338,61 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_aranges 0x00000700 0x1e8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj .debug_aranges - 0x000008e8 0x30 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + 0x000008e8 0x68 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj .debug_aranges - 0x00000918 0x60 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + 0x00000950 0x60 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj .debug_aranges - 0x00000978 0x20 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + 0x000009b0 0x20 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj .debug_aranges - 0x00000998 0x20 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + 0x000009d0 0x20 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj .debug_aranges - 0x000009b8 0x28 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + 0x000009f0 0x28 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj .debug_aranges - 0x000009e0 0x38 BSP/libbsp.a(bsp_init.c.obj) + 0x00000a18 0x38 BSP/libbsp.a(bsp_init.c.obj) .debug_aranges - 0x00000a18 0x70 BSP/libbsp.a(stm32f407vet6_board.c.obj) + 0x00000a50 0x70 BSP/libbsp.a(stm32f407vet6_board.c.obj) .debug_aranges - 0x00000a88 0x80 BSP/libbsp.a(bsp_w25qxx.c.obj) + 0x00000ac0 0x80 BSP/libbsp.a(bsp_w25qxx.c.obj) .debug_aranges - 0x00000b08 0x80 BSP/libbsp.a(bsp_key.c.obj) + 0x00000b40 0x80 BSP/libbsp.a(bsp_key.c.obj) .debug_aranges - 0x00000b88 0x70 BSP/libbsp.a(bsp_eth.c.obj) + 0x00000bc0 0x70 BSP/libbsp.a(bsp_eth.c.obj) .debug_aranges - 0x00000bf8 0xb8 HAL/libhal.a(hal.c.obj) + 0x00000c30 0xb8 HAL/libhal.a(hal.c.obj) .debug_aranges - 0x00000cb0 0x40 HAL/libhal.a(hal_gpio.c.obj) + 0x00000ce8 0x40 HAL/libhal.a(hal_gpio.c.obj) .debug_aranges - 0x00000cf0 0x38 HAL/libhal.a(hal_delay.c.obj) + 0x00000d28 0x38 HAL/libhal.a(hal_delay.c.obj) .debug_aranges - 0x00000d28 0x48 HAL/libhal.a(hal_uart.c.obj) + 0x00000d60 0x48 HAL/libhal.a(hal_uart.c.obj) .debug_aranges - 0x00000d70 0x40 HAL/libhal.a(hal_spi.c.obj) + 0x00000da8 0x40 HAL/libhal.a(hal_spi.c.obj) .debug_aranges - 0x00000db0 0x68 HAL/libhal.a(hal_eth.c.obj) + 0x00000de8 0x68 HAL/libhal.a(hal_eth.c.obj) .debug_aranges - 0x00000e18 0x20 HAL/libhal.a(hal_stm32f4.c.obj) + 0x00000e50 0x20 HAL/libhal.a(hal_stm32f4.c.obj) .debug_aranges - 0x00000e38 0x58 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + 0x00000e70 0x58 HAL/libhal.a(hal_stm32f4_gpio.c.obj) .debug_aranges - 0x00000e90 0x48 HAL/libhal.a(hal_stm32f4_uart.c.obj) + 0x00000ec8 0x48 HAL/libhal.a(hal_stm32f4_uart.c.obj) .debug_aranges - 0x00000ed8 0x40 HAL/libhal.a(hal_stm32f4_delay.c.obj) + 0x00000f10 0x40 HAL/libhal.a(hal_stm32f4_delay.c.obj) .debug_aranges - 0x00000f18 0x48 HAL/libhal.a(hal_stm32f4_spi.c.obj) + 0x00000f50 0x48 HAL/libhal.a(hal_stm32f4_spi.c.obj) .debug_aranges - 0x00000f60 0x90 HAL/libhal.a(hal_stm32f4_eth.c.obj) + 0x00000f98 0x90 HAL/libhal.a(hal_stm32f4_eth.c.obj) .debug_aranges - 0x00000ff0 0x40 Modules/led/libled.a(led.c.obj) + 0x00001028 0x40 Modules/led/libled.a(led.c.obj) .debug_aranges - 0x00001030 0x38 Modules/delay/libdelay.a(delay.c.obj) + 0x00001068 0x38 Modules/delay/libdelay.a(delay.c.obj) .debug_aranges - 0x00001068 0x68 Middlewares/logging/liblogging.a(logging.c.obj) + 0x000010a0 0x68 Middlewares/logging/liblogging.a(logging.c.obj) .debug_aranges - 0x000010d0 0x98 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + 0x00001108 0x98 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) .debug_aranges - 0x00001168 0x50 Modules/uart/libuart.a(uart.c.obj) + 0x000011a0 0x50 Modules/uart/libuart.a(uart.c.obj) -.debug_ranges 0x00000000 0xff0 +.debug_ranges 0x00000000 0x1028 .debug_ranges 0x00000000 0x18 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_ranges 0x00000018 0x78 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj .debug_ranges 0x00000090 0x48 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj @@ -5386,35 +5401,35 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_ranges 0x000002d8 0x228 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_ranges 0x00000500 0x1c0 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_ranges 0x000006c0 0x1d8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_ranges 0x00000898 0x20 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_ranges 0x000008b8 0x50 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_ranges 0x00000908 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_ranges 0x00000918 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_ranges 0x00000928 0x20 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - .debug_ranges 0x00000948 0x28 BSP/libbsp.a(bsp_init.c.obj) - .debug_ranges 0x00000970 0x78 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_ranges 0x000009e8 0x70 BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_ranges 0x00000a58 0x70 BSP/libbsp.a(bsp_key.c.obj) - .debug_ranges 0x00000ac8 0x78 BSP/libbsp.a(bsp_eth.c.obj) - .debug_ranges 0x00000b40 0xa8 HAL/libhal.a(hal.c.obj) - .debug_ranges 0x00000be8 0x30 HAL/libhal.a(hal_gpio.c.obj) - .debug_ranges 0x00000c18 0x28 HAL/libhal.a(hal_delay.c.obj) - .debug_ranges 0x00000c40 0x38 HAL/libhal.a(hal_uart.c.obj) - .debug_ranges 0x00000c78 0x30 HAL/libhal.a(hal_spi.c.obj) - .debug_ranges 0x00000ca8 0x58 HAL/libhal.a(hal_eth.c.obj) - .debug_ranges 0x00000d00 0x10 HAL/libhal.a(hal_stm32f4.c.obj) - .debug_ranges 0x00000d10 0x48 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_ranges 0x00000d58 0x38 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_ranges 0x00000d90 0x30 HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_ranges 0x00000dc0 0x38 HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_ranges 0x00000df8 0x80 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_ranges 0x00000e78 0x30 Modules/led/libled.a(led.c.obj) - .debug_ranges 0x00000ea8 0x28 Modules/delay/libdelay.a(delay.c.obj) - .debug_ranges 0x00000ed0 0x58 Middlewares/logging/liblogging.a(logging.c.obj) - .debug_ranges 0x00000f28 0x88 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_ranges 0x00000fb0 0x40 Modules/uart/libuart.a(uart.c.obj) + .debug_ranges 0x00000898 0x58 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_ranges 0x000008f0 0x50 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_ranges 0x00000940 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_ranges 0x00000950 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_ranges 0x00000960 0x20 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + .debug_ranges 0x00000980 0x28 BSP/libbsp.a(bsp_init.c.obj) + .debug_ranges 0x000009a8 0x78 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_ranges 0x00000a20 0x70 BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_ranges 0x00000a90 0x70 BSP/libbsp.a(bsp_key.c.obj) + .debug_ranges 0x00000b00 0x78 BSP/libbsp.a(bsp_eth.c.obj) + .debug_ranges 0x00000b78 0xa8 HAL/libhal.a(hal.c.obj) + .debug_ranges 0x00000c20 0x30 HAL/libhal.a(hal_gpio.c.obj) + .debug_ranges 0x00000c50 0x28 HAL/libhal.a(hal_delay.c.obj) + .debug_ranges 0x00000c78 0x38 HAL/libhal.a(hal_uart.c.obj) + .debug_ranges 0x00000cb0 0x30 HAL/libhal.a(hal_spi.c.obj) + .debug_ranges 0x00000ce0 0x58 HAL/libhal.a(hal_eth.c.obj) + .debug_ranges 0x00000d38 0x10 HAL/libhal.a(hal_stm32f4.c.obj) + .debug_ranges 0x00000d48 0x48 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_ranges 0x00000d90 0x38 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_ranges 0x00000dc8 0x30 HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_ranges 0x00000df8 0x38 HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_ranges 0x00000e30 0x80 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_ranges 0x00000eb0 0x30 Modules/led/libled.a(led.c.obj) + .debug_ranges 0x00000ee0 0x28 Modules/delay/libdelay.a(delay.c.obj) + .debug_ranges 0x00000f08 0x58 Middlewares/logging/liblogging.a(logging.c.obj) + .debug_ranges 0x00000f60 0x88 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_ranges 0x00000fe8 0x40 Modules/uart/libuart.a(uart.c.obj) -.debug_macro 0x00000000 0x247b3 +.debug_macro 0x00000000 0x247b2 .debug_macro 0x00000000 0x1d8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_macro 0x000001d8 0xa78 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_macro 0x00000c50 0x2e cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj @@ -5463,82 +5478,82 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_macro 0x0001fbac 0x1d9 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_macro 0x0001fd85 0x1e7 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_macro 0x0001ff6c 0x2b2 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_macro 0x0002021e 0x457 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020675 0x78 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000206ed 0x64 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020751 0x1e CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x0002076f 0x35 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000207a4 0x34 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000207d8 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000207ee 0x35 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020823 0x341 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020b64 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020b74 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020b8a 0x43 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020bcd 0x34 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020c01 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020c11 0x58 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020c69 0x182 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020deb 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020dfb 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020e17 0x52 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020e69 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020e8b 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020e9b 0x52 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020eed 0xd5 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020fc2 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00020fde 0x3d CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x0002101b 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00021031 0x16f CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000211a0 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000211c2 0xa0 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x00021262 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x0002127e 0x49 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000212c7 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000212e9 0xee CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000213d7 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_macro 0x000213ed 0x1ec CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_macro 0x000215d9 0x1e2 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_macro 0x000217bb 0xec CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x000218a7 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x000218b7 0x5e CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x00021915 0x94 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x000219a9 0x57 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x00021a00 0x23b CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_macro 0x00021c3b 0x1c2 BSP/libbsp.a(bsp_init.c.obj) - .debug_macro 0x00021dfd 0x10 BSP/libbsp.a(bsp_init.c.obj) - .debug_macro 0x00021e0d 0x260 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_macro 0x0002206d 0xc8 BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_macro 0x00022135 0x2c9 BSP/libbsp.a(bsp_key.c.obj) - .debug_macro 0x000223fe 0x97 BSP/libbsp.a(bsp_key.c.obj) - .debug_macro 0x00022495 0xfd BSP/libbsp.a(bsp_key.c.obj) - .debug_macro 0x00022592 0x43 BSP/libbsp.a(bsp_key.c.obj) - .debug_macro 0x000225d5 0x16 BSP/libbsp.a(bsp_key.c.obj) - .debug_macro 0x000225eb 0x8f BSP/libbsp.a(bsp_eth.c.obj) - .debug_macro 0x0002267a 0x72 BSP/libbsp.a(bsp_eth.c.obj) - .debug_macro 0x000226ec 0x9a BSP/libbsp.a(bsp_eth.c.obj) - .debug_macro 0x00022786 0x131 HAL/libhal.a(hal.c.obj) - .debug_macro 0x000228b7 0x89 HAL/libhal.a(hal_gpio.c.obj) - .debug_macro 0x00022940 0x7c HAL/libhal.a(hal_delay.c.obj) - .debug_macro 0x000229bc 0x89 HAL/libhal.a(hal_uart.c.obj) - .debug_macro 0x00022a45 0x9c HAL/libhal.a(hal_spi.c.obj) - .debug_macro 0x00022ae1 0x1ff HAL/libhal.a(hal_eth.c.obj) - .debug_macro 0x00022ce0 0x72 HAL/libhal.a(hal_stm32f4.c.obj) - .debug_macro 0x00022d52 0x1f5 HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_macro 0x00022f47 0x1f9 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_macro 0x00023140 0x1f1 HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_macro 0x00023331 0x20c HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_macro 0x0002353d 0x2af HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_macro 0x000237ec 0x56 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_macro 0x00023842 0x89 Modules/led/libled.a(led.c.obj) - .debug_macro 0x000238cb 0x77 Modules/delay/libdelay.a(delay.c.obj) - .debug_macro 0x00023942 0x1f4 Middlewares/logging/liblogging.a(logging.c.obj) - .debug_macro 0x00023b36 0xa66 Middlewares/logging/liblogging.a(logging.c.obj) - .debug_macro 0x0002459c 0x4c Middlewares/logging/liblogging.a(logging.c.obj) - .debug_macro 0x000245e8 0x84 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_macro 0x0002466c 0x147 Modules/uart/libuart.a(uart.c.obj) + .debug_macro 0x0002021e 0x456 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020674 0x78 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000206ec 0x64 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020750 0x1e CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x0002076e 0x35 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000207a3 0x34 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000207d7 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000207ed 0x35 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020822 0x341 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020b63 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020b73 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020b89 0x43 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020bcc 0x34 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020c00 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020c10 0x58 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020c68 0x182 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020dea 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020dfa 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020e16 0x52 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020e68 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020e8a 0x10 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020e9a 0x52 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020eec 0xd5 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020fc1 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00020fdd 0x3d CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x0002101a 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00021030 0x16f CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x0002119f 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000211c1 0xa0 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x00021261 0x1c CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x0002127d 0x49 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000212c6 0x22 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000212e8 0xee CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000213d6 0x16 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_macro 0x000213ec 0x1ec CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_macro 0x000215d8 0x1e2 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_macro 0x000217ba 0xec CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x000218a6 0x10 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x000218b6 0x5e CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x00021914 0x94 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x000219a8 0x57 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x000219ff 0x23b CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_macro 0x00021c3a 0x1c2 BSP/libbsp.a(bsp_init.c.obj) + .debug_macro 0x00021dfc 0x10 BSP/libbsp.a(bsp_init.c.obj) + .debug_macro 0x00021e0c 0x260 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_macro 0x0002206c 0xc8 BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_macro 0x00022134 0x2c9 BSP/libbsp.a(bsp_key.c.obj) + .debug_macro 0x000223fd 0x97 BSP/libbsp.a(bsp_key.c.obj) + .debug_macro 0x00022494 0xfd BSP/libbsp.a(bsp_key.c.obj) + .debug_macro 0x00022591 0x43 BSP/libbsp.a(bsp_key.c.obj) + .debug_macro 0x000225d4 0x16 BSP/libbsp.a(bsp_key.c.obj) + .debug_macro 0x000225ea 0x8f BSP/libbsp.a(bsp_eth.c.obj) + .debug_macro 0x00022679 0x72 BSP/libbsp.a(bsp_eth.c.obj) + .debug_macro 0x000226eb 0x9a BSP/libbsp.a(bsp_eth.c.obj) + .debug_macro 0x00022785 0x131 HAL/libhal.a(hal.c.obj) + .debug_macro 0x000228b6 0x89 HAL/libhal.a(hal_gpio.c.obj) + .debug_macro 0x0002293f 0x7c HAL/libhal.a(hal_delay.c.obj) + .debug_macro 0x000229bb 0x89 HAL/libhal.a(hal_uart.c.obj) + .debug_macro 0x00022a44 0x9c HAL/libhal.a(hal_spi.c.obj) + .debug_macro 0x00022ae0 0x1ff HAL/libhal.a(hal_eth.c.obj) + .debug_macro 0x00022cdf 0x72 HAL/libhal.a(hal_stm32f4.c.obj) + .debug_macro 0x00022d51 0x1f5 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_macro 0x00022f46 0x1f9 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_macro 0x0002313f 0x1f1 HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_macro 0x00023330 0x20c HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_macro 0x0002353c 0x2af HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_macro 0x000237eb 0x56 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_macro 0x00023841 0x89 Modules/led/libled.a(led.c.obj) + .debug_macro 0x000238ca 0x77 Modules/delay/libdelay.a(delay.c.obj) + .debug_macro 0x00023941 0x1f4 Middlewares/logging/liblogging.a(logging.c.obj) + .debug_macro 0x00023b35 0xa66 Middlewares/logging/liblogging.a(logging.c.obj) + .debug_macro 0x0002459b 0x4c Middlewares/logging/liblogging.a(logging.c.obj) + .debug_macro 0x000245e7 0x84 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_macro 0x0002466b 0x147 Modules/uart/libuart.a(uart.c.obj) -.debug_line 0x00000000 0x12490 +.debug_line 0x00000000 0x12553 .debug_line 0x00000000 0x662 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj .debug_line 0x00000662 0xc69 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj .debug_line 0x000012cb 0xa4b cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj @@ -5547,35 +5562,35 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a .debug_line 0x000031be 0x27c8 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj .debug_line 0x00005986 0x1bd0 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj .debug_line 0x00007556 0x18b9 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj - .debug_line 0x00008e0f 0xcba CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - .debug_line 0x00009ac9 0x6f4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj - .debug_line 0x0000a1bd 0x631 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj - .debug_line 0x0000a7ee 0x231 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj - .debug_line 0x0000aa1f 0xb0 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj - .debug_line 0x0000aacf 0x7a8 BSP/libbsp.a(bsp_init.c.obj) - .debug_line 0x0000b277 0x5c4 BSP/libbsp.a(stm32f407vet6_board.c.obj) - .debug_line 0x0000b83b 0x45f BSP/libbsp.a(bsp_w25qxx.c.obj) - .debug_line 0x0000bc9a 0x7ee BSP/libbsp.a(bsp_key.c.obj) - .debug_line 0x0000c488 0x517 BSP/libbsp.a(bsp_eth.c.obj) - .debug_line 0x0000c99f 0x587 HAL/libhal.a(hal.c.obj) - .debug_line 0x0000cf26 0x286 HAL/libhal.a(hal_gpio.c.obj) - .debug_line 0x0000d1ac 0x22c HAL/libhal.a(hal_delay.c.obj) - .debug_line 0x0000d3d8 0x2df HAL/libhal.a(hal_uart.c.obj) - .debug_line 0x0000d6b7 0x32a HAL/libhal.a(hal_spi.c.obj) - .debug_line 0x0000d9e1 0x848 HAL/libhal.a(hal_eth.c.obj) - .debug_line 0x0000e229 0x1e9 HAL/libhal.a(hal_stm32f4.c.obj) - .debug_line 0x0000e412 0x7ff HAL/libhal.a(hal_stm32f4_gpio.c.obj) - .debug_line 0x0000ec11 0x7a4 HAL/libhal.a(hal_stm32f4_uart.c.obj) - .debug_line 0x0000f3b5 0x6d7 HAL/libhal.a(hal_stm32f4_delay.c.obj) - .debug_line 0x0000fa8c 0x91a HAL/libhal.a(hal_stm32f4_spi.c.obj) - .debug_line 0x000103a6 0xb68 HAL/libhal.a(hal_stm32f4_eth.c.obj) - .debug_line 0x00010f0e 0x2e0 Modules/led/libled.a(led.c.obj) - .debug_line 0x000111ee 0x280 Modules/delay/libdelay.a(delay.c.obj) - .debug_line 0x0001146e 0x50f Middlewares/logging/liblogging.a(logging.c.obj) - .debug_line 0x0001197d 0x74f Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) - .debug_line 0x000120cc 0x3c4 Modules/uart/libuart.a(uart.c.obj) + .debug_line 0x00008e0f 0xd7d CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + .debug_line 0x00009b8c 0x6f4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_line 0x0000a280 0x631 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_line 0x0000a8b1 0x231 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_line 0x0000aae2 0xb0 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + .debug_line 0x0000ab92 0x7a8 BSP/libbsp.a(bsp_init.c.obj) + .debug_line 0x0000b33a 0x5c4 BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_line 0x0000b8fe 0x45f BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_line 0x0000bd5d 0x7ee BSP/libbsp.a(bsp_key.c.obj) + .debug_line 0x0000c54b 0x517 BSP/libbsp.a(bsp_eth.c.obj) + .debug_line 0x0000ca62 0x587 HAL/libhal.a(hal.c.obj) + .debug_line 0x0000cfe9 0x286 HAL/libhal.a(hal_gpio.c.obj) + .debug_line 0x0000d26f 0x22c HAL/libhal.a(hal_delay.c.obj) + .debug_line 0x0000d49b 0x2df HAL/libhal.a(hal_uart.c.obj) + .debug_line 0x0000d77a 0x32a HAL/libhal.a(hal_spi.c.obj) + .debug_line 0x0000daa4 0x848 HAL/libhal.a(hal_eth.c.obj) + .debug_line 0x0000e2ec 0x1e9 HAL/libhal.a(hal_stm32f4.c.obj) + .debug_line 0x0000e4d5 0x7ff HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_line 0x0000ecd4 0x7a4 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_line 0x0000f478 0x6d7 HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_line 0x0000fb4f 0x91a HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_line 0x00010469 0xb68 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_line 0x00010fd1 0x2e0 Modules/led/libled.a(led.c.obj) + .debug_line 0x000112b1 0x280 Modules/delay/libdelay.a(delay.c.obj) + .debug_line 0x00011531 0x50f Middlewares/logging/liblogging.a(logging.c.obj) + .debug_line 0x00011a40 0x74f Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_line 0x0001218f 0x3c4 Modules/uart/libuart.a(uart.c.obj) -.debug_str 0x00000000 0xd0175 +.debug_str 0x00000000 0xd01fb .debug_str 0x00000000 0xc3ac9 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 0xc3d47 (size before relaxing) .debug_str 0x000c3ac9 0x485 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj @@ -5592,57 +5607,57 @@ LOAD d:/arm_gcc/bin/../lib/gcc/arm-none-eabi/10.3.1/thumb/v7e-m+fp/hard\libgcc.a 0xc45c9 (size before relaxing) .debug_str 0x000c6169 0x1804 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_eth.c.obj 0xc5619 (size before relaxing) - .debug_str 0x000c796d 0x60fd CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj - 0xca01c (size before relaxing) - .debug_str 0x000cda6a 0xf4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj + .debug_str 0x000c796d 0x6183 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj + 0xca0a2 (size before relaxing) + .debug_str 0x000cdaf0 0xf4 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 0xc3c11 (size before relaxing) - .debug_str 0x000cdb5e 0x57 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj + .debug_str 0x000cdbe4 0x57 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj 0xc3c97 (size before relaxing) - .debug_str 0x000cdbb5 0x509 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj + .debug_str 0x000cdc3b 0x509 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj 0x582f (size before relaxing) - .debug_str 0x000ce0be 0x5e CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj + .debug_str 0x000ce144 0x5e CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 0xa4 (size before relaxing) - .debug_str 0x000ce11c 0xe3 BSP/libbsp.a(bsp_init.c.obj) + .debug_str 0x000ce1a2 0xe3 BSP/libbsp.a(bsp_init.c.obj) 0x83cf (size before relaxing) - .debug_str 0x000ce1ff 0x47a BSP/libbsp.a(stm32f407vet6_board.c.obj) + .debug_str 0x000ce285 0x47a BSP/libbsp.a(stm32f407vet6_board.c.obj) 0x9f05 (size before relaxing) - .debug_str 0x000ce679 0x187 BSP/libbsp.a(bsp_w25qxx.c.obj) + .debug_str 0x000ce6ff 0x187 BSP/libbsp.a(bsp_w25qxx.c.obj) 0x51f9 (size before relaxing) - .debug_str 0x000ce800 0x322 BSP/libbsp.a(bsp_key.c.obj) + .debug_str 0x000ce886 0x322 BSP/libbsp.a(bsp_key.c.obj) 0x9e6c (size before relaxing) - .debug_str 0x000ceb22 0x181 BSP/libbsp.a(bsp_eth.c.obj) + .debug_str 0x000ceba8 0x181 BSP/libbsp.a(bsp_eth.c.obj) 0x4800 (size before relaxing) - .debug_str 0x000ceca3 0x4ff HAL/libhal.a(hal.c.obj) + .debug_str 0x000ced29 0x4ff HAL/libhal.a(hal.c.obj) 0x7291 (size before relaxing) - .debug_str 0x000cf1a2 0x131 HAL/libhal.a(hal_gpio.c.obj) + .debug_str 0x000cf228 0x131 HAL/libhal.a(hal_gpio.c.obj) 0x49b0 (size before relaxing) - .debug_str 0x000cf2d3 0xda HAL/libhal.a(hal_delay.c.obj) + .debug_str 0x000cf359 0xda HAL/libhal.a(hal_delay.c.obj) 0x40f0 (size before relaxing) - .debug_str 0x000cf3ad 0x154 HAL/libhal.a(hal_uart.c.obj) + .debug_str 0x000cf433 0x154 HAL/libhal.a(hal_uart.c.obj) 0x47ef (size before relaxing) - .debug_str 0x000cf501 0xd4 HAL/libhal.a(hal_spi.c.obj) + .debug_str 0x000cf587 0xd4 HAL/libhal.a(hal_spi.c.obj) 0x47cd (size before relaxing) - .debug_str 0x000cf5d5 0x14c HAL/libhal.a(hal_eth.c.obj) + .debug_str 0x000cf65b 0x14c HAL/libhal.a(hal_eth.c.obj) 0xc4409 (size before relaxing) - .debug_str 0x000cf721 0x5d HAL/libhal.a(hal_stm32f4.c.obj) + .debug_str 0x000cf7a7 0x5d HAL/libhal.a(hal_stm32f4.c.obj) 0x40a6 (size before relaxing) - .debug_str 0x000cf77e 0xc8 HAL/libhal.a(hal_stm32f4_gpio.c.obj) + .debug_str 0x000cf804 0xc8 HAL/libhal.a(hal_stm32f4_gpio.c.obj) 0xc45fa (size before relaxing) - .debug_str 0x000cf846 0x69 HAL/libhal.a(hal_stm32f4_uart.c.obj) + .debug_str 0x000cf8cc 0x69 HAL/libhal.a(hal_stm32f4_uart.c.obj) 0xc4807 (size before relaxing) - .debug_str 0x000cf8af 0x139 HAL/libhal.a(hal_stm32f4_delay.c.obj) + .debug_str 0x000cf935 0x139 HAL/libhal.a(hal_stm32f4_delay.c.obj) 0xc40f8 (size before relaxing) - .debug_str 0x000cf9e8 0x14b HAL/libhal.a(hal_stm32f4_spi.c.obj) + .debug_str 0x000cfa6e 0x14b HAL/libhal.a(hal_stm32f4_spi.c.obj) 0xc48be (size before relaxing) - .debug_str 0x000cfb33 0x1b9 HAL/libhal.a(hal_stm32f4_eth.c.obj) + .debug_str 0x000cfbb9 0x1b9 HAL/libhal.a(hal_stm32f4_eth.c.obj) 0xc78c5 (size before relaxing) - .debug_str 0x000cfcec 0x78 Modules/led/libled.a(led.c.obj) + .debug_str 0x000cfd72 0x78 Modules/led/libled.a(led.c.obj) 0x45e0 (size before relaxing) - .debug_str 0x000cfd64 0x63 Modules/delay/libdelay.a(delay.c.obj) + .debug_str 0x000cfdea 0x63 Modules/delay/libdelay.a(delay.c.obj) 0x3ca5 (size before relaxing) - .debug_str 0x000cfdc7 0x1d2 Middlewares/logging/liblogging.a(logging.c.obj) + .debug_str 0x000cfe4d 0x1d2 Middlewares/logging/liblogging.a(logging.c.obj) 0x7df1 (size before relaxing) - .debug_str 0x000cff99 0x172 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) + .debug_str 0x000d001f 0x172 Modules/w25qxx/libw25qxx.a(w25qxx.c.obj) 0x46f8 (size before relaxing) - .debug_str 0x000d010b 0x6a Modules/uart/libuart.a(uart.c.obj) + .debug_str 0x000d0191 0x6a Modules/uart/libuart.a(uart.c.obj) 0x6e23 (size before relaxing) diff --git a/cmake/stm32cubemx/cmake_install.cmake b/cmake/stm32cubemx/cmake_install.cmake index 7abb988..6dcd1bd 100644 --- a/cmake/stm32cubemx/cmake_install.cmake +++ b/cmake/stm32cubemx/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/cmake/stm32cubemx +# Install script for directory: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/stm32cubemx # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files/stm32f407vet6_cmake") + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/stm32f407vet6_cmake") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -32,8 +32,14 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING) set(CMAKE_CROSSCOMPILING "TRUE") endif() -# Set default install directory permissions. +# Set path to fallback-tool for dependency-resolution. if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/ST/STM32CubeCLT_1.18.0/GNU-tools-for-STM32/bin/arm-none-eabi-objdump.exe") + set(CMAKE_OBJDUMP "D:/ARM_GCC/bin/arm-none-eabi-objdump.exe") endif() +string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT + "${CMAKE_INSTALL_MANIFEST_FILES}") +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/stm32cubemx/install_local_manifest.txt" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/cmake_install.cmake b/cmake_install.cmake index 3b3fb12..e59794c 100644 --- a/cmake_install.cmake +++ b/cmake_install.cmake @@ -1,8 +1,8 @@ -# Install script for directory: C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake +# Install script for directory: E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake # Set the install prefix if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "C:/Program Files/stm32f407vet6_cmake") + set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/stm32f407vet6_cmake") endif() string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") @@ -32,23 +32,55 @@ if(NOT DEFINED CMAKE_CROSSCOMPILING) set(CMAKE_CROSSCOMPILING "TRUE") endif() -# Set default install directory permissions. +# Set path to fallback-tool for dependency-resolution. if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "C:/ST/STM32CubeCLT_1.18.0/GNU-tools-for-STM32/bin/arm-none-eabi-objdump.exe") + set(CMAKE_OBJDUMP "D:/ARM_GCC/bin/arm-none-eabi-objdump.exe") endif() if(NOT CMAKE_INSTALL_LOCAL_ONLY) # Include the install script for the subdirectory. - include("C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/cmake/stm32cubemx/cmake_install.cmake") + include("E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/stm32cubemx/cmake_install.cmake") endif() -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/cmake_install.cmake") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + # Include the install script for the subdirectory. + include("E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/cmake_install.cmake") endif() string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/${CMAKE_INSTALL_MANIFEST}" +if(CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/install_local_manifest.txt" "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() +if(CMAKE_INSTALL_COMPONENT) + if(CMAKE_INSTALL_COMPONENT MATCHES "^[a-zA-Z0-9_.+-]+$") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") + else() + string(MD5 CMAKE_INST_COMP_HASH "${CMAKE_INSTALL_COMPONENT}") + set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INST_COMP_HASH}.txt") + unset(CMAKE_INST_COMP_HASH) + endif() +else() + set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") +endif() + +if(NOT CMAKE_INSTALL_LOCAL_ONLY) + file(WRITE "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/${CMAKE_INSTALL_MANIFEST}" + "${CMAKE_INSTALL_MANIFEST_CONTENT}") +endif() diff --git a/compile_commands.json b/compile_commands.json index f958282..ffef56e 100644 --- a/compile_commands.json +++ b/compile_commands.json @@ -1,122 +1,278 @@ [ { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\main.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\main.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\main.c", - "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\main.c.obj" + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\APP\\Src\\main.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\APP\\Src\\main.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\APP\\Src\\main.c", + "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\APP\\Src\\main.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_it.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_it.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_it.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_it.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_it.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_it.c", "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_it.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_hal_msp.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_hal_msp.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_hal_msp.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_hal_msp.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_hal_msp.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_hal_msp.c", "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_hal_msp.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\sysmem.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\sysmem.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\sysmem.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\sysmem.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\sysmem.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\sysmem.c", "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\sysmem.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\syscalls.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\syscalls.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\syscalls.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\syscalls.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\syscalls.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\syscalls.c", "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\syscalls.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -x assembler-with-cpp -MMD -MP -g -o CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\startup_stm32f407xx.s", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\startup_stm32f407xx.s", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -x assembler-with-cpp -MMD -MP -g3 -finput-charset=GBK -fexec-charset=GBK -o CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\startup_stm32f407xx.s", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\startup_stm32f407xx.s", "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Core\\Src\\system_stm32f4xx.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\system_stm32f4xx.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Core\\Src\\system_stm32f4xx.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Core\\Src\\system_stm32f4xx.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\system_stm32f4xx.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\system_stm32f4xx.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Core\\Src\\system_stm32f4xx.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c.obj" }, { - "directory": "C:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake", - "command": "C:\\ST\\STM32CubeCLT_1.18.0\\GNU-tools-for-STM32\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Core/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IC:/Users/bico/Desktop/stm32f407vet6_cmake/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c.obj -c C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c", - "file": "C:\\Users\\bico\\Desktop\\stm32f407vet6_cmake\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c", + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c", "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_uart.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_uart.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_uart.c", + "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_uart.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_spi.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_spi.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_spi.c", + "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_spi.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_eth.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_eth.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_eth.c", + "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_eth.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal_gpio.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_gpio.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_gpio.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_gpio.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal_delay.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_delay.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_delay.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_delay.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal_uart.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_uart.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_uart.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_uart.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal_spi.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_spi.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_spi.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_spi.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\hal_eth.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_eth.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal_eth.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_eth.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_gpio.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_gpio.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_gpio.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_gpio.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_uart.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_uart.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_uart.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_uart.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_delay.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_delay.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_delay.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_delay.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_spi.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_spi.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_spi.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_spi.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_eth.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_eth.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\arch\\stm32f4\\hal_stm32f4_eth.c", + "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_eth.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_init.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_init.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_init.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_init.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\stm32f407vet6_board.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\stm32f407vet6_board.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\stm32f407vet6_board.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\stm32f407vet6_board.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_board_manager.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_board_manager.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_board_manager.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_board_manager.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_w25qxx.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_w25qxx.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_w25qxx.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_w25qxx.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_key.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_key.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_key.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_key.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/BSP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_eth.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_eth.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\BSP\\Src\\bsp_eth.c", + "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_eth.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/led/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o Modules\\led\\CMakeFiles\\led.dir\\src\\led.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\led\\src\\led.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\led\\src\\led.c", + "output": "Modules\\led\\CMakeFiles\\led.dir\\src\\led.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/delay/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o Modules\\delay\\CMakeFiles\\delay.dir\\src\\delay.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\delay\\src\\delay.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\delay\\src\\delay.c", + "output": "Modules\\delay\\CMakeFiles\\delay.dir\\src\\delay.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o Modules\\uart\\CMakeFiles\\uart.dir\\src\\uart.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\uart\\src\\uart.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\uart\\src\\uart.c", + "output": "Modules\\uart\\CMakeFiles\\uart.dir\\src\\uart.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -DDEBUG -DSTM32F407xx -DUSE_HAL_DRIVER -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/w25qxx/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/APP/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Core/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Device/ST/STM32F4xx/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Drivers/CMSIS/Include -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o Modules\\w25qxx\\CMakeFiles\\w25qxx.dir\\Src\\w25qxx.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\w25qxx\\Src\\w25qxx.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Modules\\w25qxx\\Src\\w25qxx.c", + "output": "Modules\\w25qxx\\CMakeFiles\\w25qxx.dir\\Src\\w25qxx.c.obj" +}, +{ + "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake", + "command": "D:\\ARM_GCC\\bin\\arm-none-eabi-gcc.exe -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Middlewares/logging/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/Modules/uart/inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc -IE:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/HAL/Inc/arch/stm32f4 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -finput-charset=GBK -fexec-charset=GBK -o Middlewares\\logging\\CMakeFiles\\logging.dir\\src\\logging.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Middlewares\\logging\\src\\logging.c", + "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Middlewares\\logging\\src\\logging.c", + "output": "Middlewares\\logging\\CMakeFiles\\logging.dir\\src\\logging.c.obj" } ] \ No newline at end of file