CubeMX 产生TouchGFX 项目后需要安装 TouchGFXDesigner 绘制界面 产生代码后再编译工程 不然缺文件
portmacro.h
ARM_CM4F\portmacro.h(167): error: unknown type name '__forceinline'
static portFORCE_INLINE void vPortSetBASEPRI( uint32_t ulBASEPRI )
将FreeRTOS源码xxx\FreeRTOSv10.3.1\FreeRTOSv10.3.1\FreeRTOS\Source\portable\GCC\ARM_CM4F 文件夹下的port.c和portmacro.h 替换掉CubeMx工程生成的FreeRTOS相应源码,xxx\FreeRTOS_STM32F407\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F,此时选择ARM compiler 6 及其以上就不会出错了。
L6218E: Undefined symbol __aeabi_vec_ctor_nocookie_nodtor (referred from application.o).
Warning: L6869W: abstractpartition.o requested the Rogue Wave Standard C++ Library which has been removed from the product. This might cause link errors because libc++ is used instead.
/Keil6.x/touchgfx_core_XXXXXXXXXXb 添加到工程中 替换 touchgfx_XXXXXXXb
CUBEMX 产生的工程编译下载无法正常运行 调试查看代码卡死的位置很随机,在莫名其妙的地方卡死
if (HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4) != HAL_OK)
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE0);
CUBEMX->RCC->Parameter Settings -> Produce Revision 选择正确的cpu 版本,CUBEMX 设置正确的 FLASH_LATENCY_4 延迟
RGB565 切换为 RGB888 后 界面不正常 应同时修改LTDC内存大小
Error: L6320W: Ignoring --entry command. Cannot find argument 'Reset_Handler'..\Objects\stm32f4.axf: Warning: L6320W: Ignoring --first command. Cannot find argument '__Vectors'.
Error: L6320W: Ignoring --entry command. Cannot find argument 'Reset_Handler'.
提示找不到启动文件
Warning: L6320W: Ignoring --first command. Cannot find argument '__Vectors'.
缺少startup_stm32h750xx.s
/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/table_verdana_10_4bpp.cpp -o Debug/table_verdana_10_4bpp.o -MD -MF Debug/table_verdana_10_XXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/table_verdana_20_4bpp.cpp -o Debug/table_verdana_20_4bpp.o -MD -MF Debug/table_verdana_20_XXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/table_verdana_40_4bpp.cpp -o Debug/table_verdana_40_4bpp.o -MD -MF Debug/table_verdana_40_XXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/texts/src/texts.cpp -o Debug/texts.o -MD -MF Debug/XXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/texts/src/typedtextdatabase.cpp -o Debug/typedtextdatabase.o -MD -MF Debug/XXXXXXXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/unmappeddatafont.cpp -o Debug/unmappeddatafont.o -MD -MF Debug/XXXXXXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/gui/src/home_screen/homepresenter.cpp -o Debug/homepresenter.o -MD -MF Debug/XXXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/gui/src/home_screen/homeview.cpp -o Debug/homeview.o -MD -MF Debug/XXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/gui/src/settings_screen/settingspresenter.cpp -o Debug/settingspresenter.o -MD -MF Debug/XXXXXXXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/gui/src/settings_screen/settingsview.cpp -o Debug/settingsview.o -MD -MF Debug/XXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/gui_generated/src/home_screen/homeviewbase.cpp -o Debug/homeviewbase.o -MD -MF Debug/XXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/gui_generated/src/settings_screen/settingsviewbase.cpp -o Debug/settingsviewbase.o -MD -MF Debug/XXXXXXXXXXXXXXXXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/font_verdana_20_4bpp_31.cpp -o Debug/font_verdana_20_4bpp_31.o -MD -MF Debug/font_verdana_20_4bpp_XXXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armclang.exe -ggdb -ffunction-sections -fno-exceptions -fno-rtti -O0 --target=arm-arm-none-eabi -fshort-wchar -fshort-enums -funsigned-char -mfloat-abi=hard -mfpu=fpv5-d16 -mcpu=cortex-m7 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I../../TouchGFX/App -I../../Middlewares/ST/touchgfx/framework/include -I../../TouchGFX/generated/gui_generated/include -I../../TouchGFX/generated/images/include -I../../TouchGFX/generated/texts/include -I../../TouchGFX/gui/include -I../../TouchGFX/generated/fonts/include -I../../Middlewares/Third_Party/FreeRTOS/Source/include -I../../Middlewares/Third_Party/FreeRTOS/Source/portable/RVDS/ARM_CM4F -I../../TouchGFX/generated/gui_generated/include/gui_generated/screen_screen -I../../Middlewares/ST/touchgfx/framework/include/touchgfx -I..\..\Core\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc -I..\..\Drivers\STM32H7xx_HAL_Driver\Inc\Legacy -I..\..\Drivers\CMSIS\Device\ST\STM32H7xx\Include -I..\..\Drivers\CMSIS\Include -I..\..\TouchGFX\App -I..\..\TouchGFX\target\generated -I..\..\TouchGFX\target -I..\..\Middlewares\Third_Party\FreeRTOS\Source\include -I..\..\Middlewares\Third_Party\FreeRTOS\Source\CMSIS_RTOS_V2 -I..\..\Middlewares\Third_Party\FreeRTOS\Source\portable\RVDS\ARM_CM4F -I..\..\USB_DEVICE\App -I..\..\USB_DEVICE\Target -I..\..\Middlewares\ST\STM32_USB_Device_Library\Core\Inc -I..\..\Middlewares\ST\STM32_USB_Device_Library\Class\CDC\Inc -I..\..\middlewares\st\touchgfx\framework\include -I..\..\touchgfx\generated\fonts\include -I..\..\touchgfx\generated\gui_generated\include -I..\..\touchgfx\generated\images\include -I..\..\touchgfx\generated\texts\include -I..\..\touchgfx\generated\videos\include -I..\..\touchgfx\gui\include -IC:/Users/Game/AppData/Local/Arm/Packs/Keil/STM32H7xx_DFP/3.0.0/Drivers/CMSIS/Device/ST/STM32H7xx/Include -DUSE_HAL_DRIVER -DSTM32H750xx -DSTM32H750xx -c ../../touchgfx/generated/fonts/src/font_verdana_20_4bpp_4.cpp -o Debug/font_verdana_20_4bpp_4.o -MD -MF Debug/font_verdana_20_4bpp_XXXXp
C:/Keil_v5/ARM/ARMCLANG/bin/armlink.exe -o Debug/EmbeddedProject1.elf --cpu=Cortex-M7.fp.dp --entry Reset_Handler --first __Vectors Debug/main.o Debug/stm32h7xx_it.o Debug/stm32h7xx_hal_msp.o Debug/stm32h7xx_hal_timebase_tim.o Debug/usb_device.o Debug/usbd_desc.o Debug/usbd_cdc_if.o Debug/usbd_conf.o Debug/stm32h7xx_hal_pcd.o Debug/stm32h7xx_hal_pcd_ex.o Debug/stm32h7xx_ll_usb.o Debug/stm32h7xx_hal_rcc.o Debug/stm32h7xx_hal_rcc_ex.o Debug/stm32h7xx_hal_flash.o Debug/stm32h7xx_hal_flash_ex.o Debug/stm32h7xx_hal_gpio.o Debug/stm32h7xx_hal_hsem.o Debug/stm32h7xx_hal_dma.o Debug/stm32h7xx_hal_dma_ex.o Debug/stm32h7xx_hal_mdma.o Debug/stm32h7xx_hal_pwr.o Debug/stm32h7xx_hal_pwr_ex.o Debug/stm32h7xx_hal_cortex.o Debug/stm32h7xx_hal.o Debug/stm32h7xx_hal_i2c.o Debug/stm32h7xx_hal_i2c_ex.o Debug/stm32h7xx_hal_exti.o Debug/stm32h7xx_hal_tim.o Debug/stm32h7xx_hal_tim_ex.o Debug/system_stm32h7xx.o Debug/usbd_core.o Debug/usbd_ctlreq.o Debug/usbd_ioreq.o Debug/usbd_cdc.o Debug/startup_stm32h750xx.o Debug/touch_iic.o Debug/touch_800x480.o Debug/gpio.o Debug/freertos.o Debug/crc.o Debug/dma2d.o Debug/fmc.o Debug/ltdc.o Debug/tim.o Debug/TouchGFXHAL.o Debug/STM32TouchController.o Debug/TouchGFXGPIO.o Debug/TouchGFXConfiguration.o Debug/TouchGFXGeneratedHAL.o Debug/STM32DMA.o Debug/OSWrappers.o Debug/app_touchgfx.o Debug/stm32h7xx_hal_crc.o Debug/stm32h7xx_hal_crc_ex.o Debug/stm32h7xx_hal_dma2d.o Debug/stm32h7xx_ll_fmc.o Debug/stm32h7xx_hal_sdram.o Debug/stm32h7xx_hal_ltdc.o Debug/stm32h7xx_hal_ltdc_ex.o Debug/croutine.o Debug/event_groups.o Debug/list.o Debug/queue.o Debug/stream_buffer.o Debug/tasks.o Debug/timers.o Debug/cmsis_os2.o Debug/heap_4.o Debug/port.o Debug/frontendapplication.o Debug/model.o Debug/applicationfontprovider.o Debug/bitmapdatabase.o Debug/cachedfont.o Debug/font_verdana_10_4bpp_0.o Debug/font_verdana_20_4bpp_0.o Debug/font_verdana_40_4bpp_0.o Debug/fontcache.o Debug/frontendapplicationbase.o Debug/generatedfont.o Debug/image_alternate_theme_images_widgets_button_regular_height_50_medium_rounded_normal.o Debug/image_alternate_theme_images_widgets_button_regular_height_50_medium_rounded_pressed.o Debug/image_alternate_theme_images_widgets_togglebutton_medium_rounded_off_light.o Debug/image_alternate_theme_images_widgets_togglebutton_medium_rounded_on_normal.o Debug/kerning_verdana_10_4bpp.o Debug/kerning_verdana_20_4bpp.o Debug/kerning_verdana_40_4bpp.o Debug/languagegb.o Debug/svgdatabase.o Debug/table_verdana_10_4bpp.o Debug/table_verdana_20_4bpp.o Debug/table_verdana_40_4bpp.o Debug/texts.o Debug/typedtextdatabase.o Debug/unmappeddatafont.o Debug/homepresenter.o Debug/homeview.o Debug/settingspresenter.o Debug/settingsview.o Debug/homeviewbase.o Debug/settingsviewbase.o Debug/font_verdana_20_4bpp_31.o Debug/font_verdana_20_4bpp_4.o ../../Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx-float-abi-hard.a ../../Middlewares/ST/touchgfx/lib/core/cortex_m7/gcc/libtouchgfx.a
Error: L6242E: Cannot link object AbstractPartition.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Container.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object HAL.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object DMA.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object AbstractButton.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object ToggleButton.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TextArea.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Box.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Button.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TextAreaWithWildcard.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object ButtonWithLabel.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object LCD.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Application.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TypedText.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Font.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Drawable.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object ConstFont.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Screen.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TextProvider.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Unicode.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object FontManager.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object LCD32bpp.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Gestures.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TouchCalibration.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object DisplayTransformation.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object TextureMapTypes.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Bitmap.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object stm32_crc_lock.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Error: L6242E: Cannot link object Utils.o as its attributes are incompatible with the image attributes.
... wchart-16 clashes with wchart-32.
Finished: 29 information, 0 warning and 29 error messages.
make: *** [Debug/EmbeddedProject1.elf] Error 1
-------------------------------------------------------------
Command exited with code 2
Executable: C:\Program Files (x86)\Sysprogs\VisualGDB\make.exe
Arguments: CONFIG=Debug -j8
Directory: D:\Project\STM32\GasCannon\VisualGDB\GasCannon
Command-line action failed
========== Project Build Summary ==========
GasCannon built in 00:10
========== Build: 0 Succeeded, 1 Failed, 0 Skipped ==========
[修改于 1年0个月前 - 2023/11/10 03:16:22]
时段 | 个数 |
---|---|
{{f.startingTime}}点 - {{f.endTime}}点 | {{f.fileCount}} |