Skip to main content
Associate
August 19, 2024
Question

arm-none-eabi-size STM32CubeIDE Version: 1.16.0

  • August 19, 2024
  • 3 replies
  • 1077 views

I USE STM32CubeIDE Version: 1.16.0 when build the project massage

arm-none-eabi-size and the hex elf or bin files after download to stm32f107vct6 no actions nothing

also i use cubemx last ver for generation code

thanks

This topic has been closed for replies.

3 replies

TDK
August 19, 2024

Debug your code, see where execution is stuck. The CPU is almost certainly running something, perhaps stuck in a loop somewhere. What actions are you expecting? Is this a custom board? Is BOOT0 pulled low?

"If you feel a post has answered your question, please click ""Accept as Solution""."
EG_itAuthor
Associate
August 19, 2024

yes it custom board and  BOOT0 pulled low with in series 100kohm as EasyMx PRO v7 for STM32 ARM

from mikroelektronika

EG_itAuthor
Associate
August 19, 2024

this my loop

 

while (1)
{

HAL_GPIO_TogglePin (GPIOD, GPIO_PIN_3);
HAL_Delay (100); /* Insert delay 100 ms */


}