调整适配目录层级

This commit is contained in:
冯佳
2026-01-28 13:08:52 +08:00
parent 62345ccfdf
commit e879b18602
32 changed files with 901 additions and 904 deletions

View File

@ -105,8 +105,8 @@ int main(void)
/* Get LED configuration from board config */ /* Get LED configuration from board config */
const bsp_board_config_t* board_config = bsp_get_board_config(); const bsp_board_config_t* board_config = bsp_get_board_config();
led_config_t led_config = { led_config_t led_config = {
.gpio_port = board_config->led.port, .gpio_port = board_config->leds.leds[0].port,
.gpio_pin = board_config->led.pin .gpio_pin = board_config->leds.leds[0].pin
}; };
led_init(&led, &led_config); led_init(&led, &led_config);

View File

@ -39,6 +39,15 @@ typedef struct {
hal_gpio_pull_t pull; /*!< LED GPIO pull configuration */ hal_gpio_pull_t pull; /*!< LED GPIO pull configuration */
} bsp_led_config_t; } bsp_led_config_t;
/**
* @brief Board LEDs configuration structure
*/
typedef struct {
uint8_t enable; /*!< LEDs enable flag */
uint8_t count; /*!< Number of LEDs */
const bsp_led_config_t* leds; /*!< Pointer to LEDs configuration array */
} bsp_leds_config_t;
/** /**
* @brief Board button configuration structure * @brief Board button configuration structure
*/ */
@ -278,7 +287,7 @@ typedef struct {
bsp_board_hw_info_t hw_info; /*!< Hardware information */ bsp_board_hw_info_t hw_info; /*!< Hardware information */
/* Peripheral configurations */ /* Peripheral configurations */
bsp_led_config_t led; /*!< LED configuration */ bsp_leds_config_t leds; /*!< LEDs configuration */
bsp_buttons_config_t buttons; /*!< Buttons configuration */ bsp_buttons_config_t buttons; /*!< Buttons configuration */
bsp_w25qxx_config_t w25qxx; /*!< W25QXX configuration */ bsp_w25qxx_config_t w25qxx; /*!< W25QXX configuration */

View File

@ -32,24 +32,28 @@ hal_ret_t bsp_init(void) {
/* Initialize peripherals based on configuration */ /* Initialize peripherals based on configuration */
/* Initialize LED */ /* Initialize LEDs */
if (board_config->led.enable && board_config->init_funcs.led_init != NULL) { if (board_config->leds.enable) {
status = board_config->init_funcs.led_init(&board_config->led); for (i = 0; i < board_config->leds.count; i++) {
if (status != HAL_RET_OK) { if (board_config->init_funcs.led_init != NULL) {
return status; status = board_config->init_funcs.led_init(&board_config->leds.leds[i]);
} if (status != HAL_RET_OK) {
} else if (board_config->led.enable) { return status;
/* Use default initialization if no function provided */ }
hal_gpio_config_t gpio_config = { } else {
.port = board_config->led.port, /* Use default initialization if no function provided */
.pin = board_config->led.pin, hal_gpio_config_t gpio_config = {
.mode = board_config->led.mode, .port = board_config->leds.leds[i].port,
.speed = board_config->led.speed, .pin = board_config->leds.leds[i].pin,
.pull = board_config->led.pull .mode = board_config->leds.leds[i].mode,
}; .speed = board_config->leds.leds[i].speed,
status = hal_gpio_configure_pin(&gpio_config); .pull = board_config->leds.leds[i].pull
if (status != HAL_RET_OK) { };
return status; status = hal_gpio_configure_pin(&gpio_config);
if (status != HAL_RET_OK) {
return status;
}
}
} }
} }
@ -142,18 +146,20 @@ hal_ret_t bsp_gpio_init(void) {
hal_ret_t status = HAL_RET_OK; hal_ret_t status = HAL_RET_OK;
uint8_t i; uint8_t i;
/* Initialize LED GPIO */ /* Initialize LED GPIOs */
if (board_config->led.enable) { if (board_config->leds.enable) {
hal_gpio_config_t gpio_config = { for (i = 0; i < board_config->leds.count; i++) {
.port = board_config->led.port, hal_gpio_config_t gpio_config = {
.pin = board_config->led.pin, .port = board_config->leds.leds[i].port,
.mode = board_config->led.mode, .pin = board_config->leds.leds[i].pin,
.speed = board_config->led.speed, .mode = board_config->leds.leds[i].mode,
.pull = board_config->led.pull .speed = board_config->leds.leds[i].speed,
}; .pull = board_config->leds.leds[i].pull
status = hal_gpio_configure_pin(&gpio_config); };
if (status != HAL_RET_OK) { status = hal_gpio_configure_pin(&gpio_config);
return status; if (status != HAL_RET_OK) {
return status;
}
} }
} }

View File

@ -306,6 +306,30 @@ static const bsp_adc_config_t stm32f407vet6_adcs[] = {
} }
}; };
/**
* @brief STM32F407VET6 board LED configurations
*/
static const bsp_led_config_t stm32f407vet6_leds[] = {
/* LED0 - PA6 */
{
.enable = 1,
.port = HAL_GPIO_PORT_A,
.pin = HAL_GPIO_PIN_6,
.mode = HAL_GPIO_MODE_OUTPUT_PP,
.speed = HAL_GPIO_SPEED_MEDIUM,
.pull = HAL_GPIO_PULL_NO
},
/* LED1 - PA7 */
{
.enable = 1,
.port = HAL_GPIO_PORT_A,
.pin = HAL_GPIO_PIN_7,
.mode = HAL_GPIO_MODE_OUTPUT_PP,
.speed = HAL_GPIO_SPEED_MEDIUM,
.pull = HAL_GPIO_PULL_NO
}
};
/** /**
* @brief STM32F407VET6 board configuration * @brief STM32F407VET6 board configuration
*/ */
@ -343,13 +367,10 @@ const bsp_board_config_t stm32f407vet6_board_config = {
}, },
/* Peripheral configurations */ /* Peripheral configurations */
.led = { .leds = {
.enable = 1, .enable = 1,
.port = HAL_GPIO_PORT_E, .count = sizeof(stm32f407vet6_leds) / sizeof(bsp_led_config_t),
.pin = HAL_GPIO_PIN_5, .leds = stm32f407vet6_leds
.mode = HAL_GPIO_MODE_OUTPUT_PP,
.speed = HAL_GPIO_SPEED_MEDIUM,
.pull = HAL_GPIO_PULL_NO
}, },
.buttons = stm32f407vet6_buttons_config, .buttons = stm32f407vet6_buttons_config,
.w25qxx = { .w25qxx = {

Binary file not shown.

View File

@ -1,51 +1,101 @@
# ninja log v7 # ninja log v7
35 176 7912703542182885 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 56b236be5577e847 70 253 7912753856352294 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 56b236be5577e847
17 184 7912703542004119 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj 872e2ff6704dd355 52 180 7912753856166626 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj 872e2ff6704dd355
9 199 7912703541927517 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj 8664d5778e2ad76c 44 204 7912753856086177 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj 8664d5778e2ad76c
14 207 7912703541973894 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 149e2e1d936f56fd 49 213 7912753856138102 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 149e2e1d936f56fd
12 223 7912703541942773 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 3c05057e8269737e 46 225 7912753856116917 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 3c05057e8269737e
7 230 7912703541896977 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 8f1917ba961e28ff 41 265 7912753856065931 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 8f1917ba961e28ff
42 246 7912703542256021 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 5a78b7b9fb89447 78 282 7912753856433995 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 5a78b7b9fb89447
177 319 7912703543602624 Modules/led/CMakeFiles/led.dir/src/led.c.obj ccf2a27bf5ed3936 180 421 7912753857457878 Modules/led/CMakeFiles/led.dir/src/led.c.obj ccf2a27bf5ed3936
3 353 7912703541870921 HAL/CMakeFiles/hal.dir/Src/hal.c.obj ac5f81c72ee68d23 37 242 7912753856030749 HAL/CMakeFiles/hal.dir/Src/hal.c.obj ac5f81c72ee68d23
48 367 7912703542314383 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj a8d32090eccf4f24 9 188 7912797965576556 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj a8d32090eccf4f24
60 373 7912703542434587 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 81d983be30d5caa8 18 187 7912797965662743 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 81d983be30d5caa8
24 407 7912703542076156 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 61a1b302001580a6 58 471 7912753856234415 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 61a1b302001580a6
31 414 7912703542149013 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 92b60c41a11a7d0f 66 488 7912753856316467 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 92b60c41a11a7d0f
66 419 7912703542498199 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj ff75693cb3ea9f89 104 367 7912753856695520 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj ff75693cb3ea9f89
20 436 7912703542032969 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj 97575dfa3fea0b54 55 412 7912753856213831 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj 97575dfa3fea0b54
230 446 7912703544139652 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj f2e3433c3d79e5d5 253 500 7912753858181157 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj f2e3433c3d79e5d5
54 474 7912703542372614 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj 90588eee76946044 14 189 7912797965622092 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj 90588eee76946044
184 554 7912703543678729 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 27a298347d3faf6 204 437 7912753857691524 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 27a298347d3faf6
38 565 7912703542221123 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 9beccc385d888c1a 74 259 7912753856388203 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 9beccc385d888c1a
319 574 7912703545025390 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj e17b9b15f9a25423 319 574 7912703545025390 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj e17b9b15f9a25423
72 604 7912703542557278 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 79110b6d960c0717 24 189 7912797965724106 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 79110b6d960c0717
207 619 7912703543911699 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 51381dee47310dd1 225 693 7912753857900411 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 51381dee47310dd1
223 623 7912703544058703 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj 43e90c3a5e5dc8ad 242 687 7912753858069842 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj 43e90c3a5e5dc8ad
28 628 7912703542108441 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj 5280c9d98ed3655a 62 445 7912753856274948 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj 5280c9d98ed3655a
246 638 7912703544297865 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 5115f6cdfe76adb5 259 509 7912753858238489 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 5115f6cdfe76adb5
199 685 7912703543832486 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/main.c.obj a73eeca20c8ad43b 30 290 7912797965781888 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/main.c.obj a73eeca20c8ad43b
353 761 7912703545355896 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 3736d3217f559c96 265 708 7912753858303200 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 3736d3217f559c96
373 773 7912703545564552 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj ba10ffdc9f5ceffa 298 708 7912753858634105 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj ba10ffdc9f5ceffa
367 797 7912703545508355 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj 596b28c505c23c1a 282 698 7912753858476971 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj 596b28c505c23c1a
407 798 7912703545908104 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 9c9f0bd1ef36cd31 304 740 7912753858700468 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 9c9f0bd1ef36cd31
419 823 7912703546024243 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 9a1317dc49b7a46b 367 809 7912753859329478 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 9a1317dc49b7a46b
414 857 7912703545976979 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 32aeb5ff85893ec6 320 735 7912753858861343 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 32aeb5ff85893ec6
436 865 7912703546198653 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 5b89b46e944eeb22 412 861 7912753859772677 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj 5b89b46e944eeb22
446 879 7912703546290629 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 5b44b53a159fb751 421 860 7912753859864874 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 5b44b53a159fb751
474 895 7912703546576964 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj ae45482fd7ff642d 437 1013 7912753860031644 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj ae45482fd7ff642d
629 902 7912703548124112 HAL/libhal.a 1cac9cc1eea4712c 488 833 7912753860535924 HAL/libhal.a 1cac9cc1eea4712c
554 940 7912703547373970 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e58812042caf42ae 445 830 7912753860113015 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e58812042caf42ae
574 941 7912703547581005 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 60546464c3923ef0 471 819 7912753860361888 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 60546464c3923ef0
619 955 7912703548030075 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 33f4b35d347cbda1 509 961 7912753860745733 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 33f4b35d347cbda1
565 965 7912703547488300 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj a5257bb900664816 460 803 7912753860257372 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj a5257bb900664816
604 966 7912703547879888 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj edc60a7057d8deba 501 947 7912753860658985 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj edc60a7057d8deba
909 986 7912703550921390 Modules/uart/libuart.a f980800b2f79773c 840 936 7912753864047968 Modules/uart/libuart.a f980800b2f79773c
902 992 7912703550863340 Modules/delay/libdelay.a fa50f3f1c7df37b 833 981 7912753863986406 Modules/delay/libdelay.a fa50f3f1c7df37b
916 992 7912703550995054 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c 847 917 7912753864111126 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c
923 1034 7912703551058814 Modules/led/libled.a 4975295d4e0f5144 854 944 7912753864188655 Modules/led/libled.a 4975295d4e0f5144
639 1045 7912703548225412 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj c8dfb4e6e3c6db83 693 1108 7912753862588187 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj c8dfb4e6e3c6db83
986 1055 7912703551693860 Middlewares/logging/liblogging.a df543b4167ac9a8e 936 1046 7912753865009973 Middlewares/logging/liblogging.a df543b4167ac9a8e
992 1057 7912703551759070 BSP/libbsp.a e0765276282a1d70 189 257 7912797967380849 BSP/libbsp.a e0765276282a1d70
623 1117 7912703548071144 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj d0e730ee33600327 687 1154 7912753862523670 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj d0e730ee33600327
1117 1397 7912703553005941 stm32f407vet6_cmake.elf 9045aee99d4d90c9 290 526 7912797968382798 stm32f407vet6_cmake.elf 9045aee99d4d90c9
37 164 7912800834423560 Modules/delay/CMakeFiles/delay.dir/src/delay.c.obj 26bf75277b3a6f97
10 169 7912800834158499 HAL/CMakeFiles/hal.dir/Src/hal_delay.c.obj f7ed58542e885692
16 174 7912800834216580 HAL/CMakeFiles/hal.dir/Src/hal_spi.c.obj 8a7978fd4bbb8138
4 180 7912800834094958 HAL/CMakeFiles/hal.dir/Src/hal.c.obj e4949ba37d831425
13 216 7912800834188685 HAL/CMakeFiles/hal.dir/Src/hal_uart.c.obj 9539d7c56f2172a5
19 225 7912800834248202 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4.c.obj ad6d0ca858ff9fd6
7 231 7912800834125253 HAL/CMakeFiles/hal.dir/Src/hal_gpio.c.obj 62b5fd3fc12a56ec
40 250 7912800834458879 Modules/uart/CMakeFiles/uart.dir/src/uart.c.obj 6e3afd2d96cd96f6
68 281 7912800834731412 BSP/CMakeFiles/bsp.dir/Src/bsp_w25qxx.c.obj 2bcc927ced55ce7e
62 285 7912800834673361 BSP/CMakeFiles/bsp.dir/Src/bsp_board_manager.c.obj 8f418e92fedc44fd
57 289 7912800834621919 BSP/CMakeFiles/bsp.dir/Src/stm32f407vet6_board.c.obj f1e5fe9bebf9e02
45 329 7912800834504304 Modules/w25qxx/CMakeFiles/w25qxx.dir/Src/w25qxx.c.obj 822d4b2e91a026bb
51 336 7912800834561951 BSP/CMakeFiles/bsp.dir/Src/bsp_init.c.obj d5eeac43f4ec50ea
23 353 7912800834284058 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_gpio.c.obj b338571a161a0c05
30 377 7912800834342175 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_delay.c.obj d88822697976a923
164 401 7912800835701535 Modules/led/CMakeFiles/led.dir/src/led.c.obj 361c0065047668c7
26 407 7912800834311665 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_uart.c.obj 959718d65736c9b8
74 414 7912800834798905 BSP/CMakeFiles/bsp.dir/Src/bsp_key.c.obj 9e57a4dd4022963a
225 420 7912800836305929 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/sysmem.c.obj cb5c7263e77f8f30
34 424 7912800834394771 HAL/CMakeFiles/hal.dir/Src/arch/stm32f4/hal_stm32f4_spi.c.obj 2876067dae4cbc08
169 433 7912800835731715 Middlewares/logging/CMakeFiles/logging.dir/src/logging.c.obj 86b0f61c89236124
250 443 7912800836553605 CMakeFiles/stm32f407vet6_cmake.dir/startup_stm32f407xx.s.obj 3352bb6321aecc50
231 487 7912800836367149 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/syscalls.c.obj 1cc09fc1ce7816fd
180 605 7912800835857254 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_it.c.obj 9611a8c19b40aae4
174 649 7912800835795415 CMakeFiles/stm32f407vet6_cmake.dir/APP/Src/main.c.obj ac82fd5b4b4de416
216 653 7912800836217421 CMakeFiles/stm32f407vet6_cmake.dir/Core/Src/stm32f4xx_hal_msp.c.obj c3bbce33b0b94778
281 693 7912800836866400 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Core/Src/system_stm32f4xx.c.obj 2fecb60abe437fd4
336 703 7912800837417042 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.c.obj 6808052da57aca4
289 704 7912800836945661 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c.obj 218cb40779246324
285 731 7912800836906940 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c.obj c501785e017c114f
377 773 7912800837827782 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.c.obj f8f0c6839c7ab1ce
353 779 7912800837587336 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.c.obj 893450a2eac32131
420 779 7912800838257894 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c.obj 76711d5ea0da574a
329 780 7912800837339961 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.c.obj 2a91ea98adea2812
407 782 7912800838128116 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.c.obj 4cff397e5a4886f8
424 823 7912800838301761 HAL/libhal.a 1cac9cc1eea4712c
414 851 7912800838195010 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.c.obj e4f00c48fc0b0584
433 852 7912800838380705 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.c.obj 9a176c76dab639f
401 904 7912800838066880 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.c.obj 22b8b5194dc4de2
488 967 7912800838934093 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.c.obj 560bfe4b0f4f6bf9
443 968 7912800838481725 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.c.obj 52aa8800389330b7
823 986 7912800842281271 Modules/delay/libdelay.a fa50f3f1c7df37b
829 986 7912800842343787 Modules/uart/libuart.a f980800b2f79773c
844 991 7912800842496296 Modules/led/libled.a 4975295d4e0f5144
836 993 7912800842421162 Modules/w25qxx/libw25qxx.a 6740ff1d64083f6c
986 1061 7912800843914798 Middlewares/logging/liblogging.a df543b4167ac9a8e
993 1078 7912800843990519 BSP/libbsp.a e0765276282a1d70
605 1094 7912800840100440 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c.obj ba7ee8080eb94038
649 1119 7912800840552747 cmake/stm32cubemx/CMakeFiles/STM32_Drivers.dir/__/__/Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_spi.c.obj ca8829d822319459
1119 1332 7912800845238850 stm32f407vet6_cmake.elf a5a01af5341e41e4

View File

@ -217,8 +217,8 @@ CMAKE_STRIP:FILEPATH=D:/ARM_GCC/bin/arm-none-eabi-strip.exe
//Path to a program. //Path to a program.
CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND CMAKE_TAPI:FILEPATH=CMAKE_TAPI-NOTFOUND
//The CMake toolchain file //No help, variable specified on the command line.
CMAKE_TOOLCHAIN_FILE:FILEPATH=E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/cmake/gcc-arm-none-eabi.cmake 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 //If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console // .SILENT directive, and all commands will be echoed to the console

File diff suppressed because one or more lines are too long

View File

@ -1,253 +1,253 @@
[ [
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\main.c", "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 -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\\Core\\Src\\main.c", "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\APP\\Src\\main.c",
"output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\main.c.obj" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\APP\\Src\\main.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_it.c", "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 -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", "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" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_it.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\stm32f4xx_hal_msp.c", "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 -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", "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" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\stm32f4xx_hal_msp.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\sysmem.c", "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 -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", "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" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\sysmem.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\syscalls.c", "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 -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", "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" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\Core\\Src\\syscalls.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -o CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\startup_stm32f407xx.s", "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 -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", "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\startup_stm32f407xx.s",
"output": "CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj" "output": "CMakeFiles\\stm32f407vet6_cmake.dir\\startup_stm32f407xx.s.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Core\\Src\\system_stm32f4xx.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Core\\Src\\system_stm32f4xx.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_rcc_ex.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ex.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_flash_ramfunc.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_gpio.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma_ex.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_dma.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_pwr_ex.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_cortex.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c", "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 -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", "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" "output": "cmake\\stm32cubemx\\CMakeFiles\\STM32_Drivers.dir\\__\\__\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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 E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_exti.c", "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 -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", "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" "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/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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_uart.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_uart.c", "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 -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", "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" "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/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -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_spi.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\Drivers\\STM32F4xx_HAL_Driver\\Src\\stm32f4xx_hal_spi.c", "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 -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", "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" "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/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -o HAL\\CMakeFiles\\hal.dir\\Src\\hal.c.obj -c E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal.c", "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 -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", "file": "E:\\Jfen_work\\local_git_code\\test_port\\stm32f407vet6_cmake\\HAL\\Src\\hal.c",
"output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal.c.obj" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_gpio.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_delay.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_uart.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\hal_spi.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_gpio.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_uart.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_delay.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "HAL\\CMakeFiles\\hal.dir\\Src\\arch\\stm32f4\\hal_stm32f4_spi.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_init.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\stm32f407vet6_board.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_board_manager.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_w25qxx.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "BSP\\CMakeFiles\\bsp.dir\\Src\\bsp_key.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "Modules\\led\\CMakeFiles\\led.dir\\src\\led.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "Modules\\delay\\CMakeFiles\\delay.dir\\src\\delay.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "Modules\\uart\\CMakeFiles\\uart.dir\\src\\uart.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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/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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "Modules\\w25qxx\\CMakeFiles\\w25qxx.dir\\Src\\w25qxx.c.obj"
}, },
{ {
"directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug", "directory": "E:/Jfen_work/local_git_code/test_port/stm32f407vet6_cmake/build/Debug",
"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 -mcpu=cortex-m4 -mfpu=fpv4-sp-d16 -mfloat-abi=hard -Wall -Wextra -Wpedantic -fdata-sections -ffunction-sections -O0 -g3 -std=gnu11 -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", "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 -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", "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" "output": "Middlewares\\logging\\CMakeFiles\\logging.dir\\src\\logging.c.obj"
} }

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -10,6 +10,7 @@ set(MX_Defines_Syms
# STM32CubeMX generated include paths # STM32CubeMX generated include paths
set(MX_Include_Dirs set(MX_Include_Dirs
${CMAKE_SOURCE_DIR}/APP/Inc
${CMAKE_SOURCE_DIR}/Core/Inc ${CMAKE_SOURCE_DIR}/Core/Inc
${CMAKE_SOURCE_DIR}/Drivers/STM32F4xx_HAL_Driver/Inc ${CMAKE_SOURCE_DIR}/Drivers/STM32F4xx_HAL_Driver/Inc
${CMAKE_SOURCE_DIR}/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy ${CMAKE_SOURCE_DIR}/Drivers/STM32F4xx_HAL_Driver/Inc/Legacy
@ -19,7 +20,7 @@ set(MX_Include_Dirs
# STM32CubeMX generated application sources # STM32CubeMX generated application sources
set(MX_Application_Src set(MX_Application_Src
${CMAKE_SOURCE_DIR}/Core/Src/main.c ${CMAKE_SOURCE_DIR}/APP/Src/main.c
${CMAKE_SOURCE_DIR}/Core/Src/stm32f4xx_it.c ${CMAKE_SOURCE_DIR}/Core/Src/stm32f4xx_it.c
${CMAKE_SOURCE_DIR}/Core/Src/stm32f4xx_hal_msp.c ${CMAKE_SOURCE_DIR}/Core/Src/stm32f4xx_hal_msp.c
${CMAKE_SOURCE_DIR}/Core/Src/sysmem.c ${CMAKE_SOURCE_DIR}/Core/Src/sysmem.c