Skip to main content
Visitor II
August 19, 2024
Question

arm-none-eabi-size STM32CubeIDE Version: 1.16.0

  • August 19, 2024
  • 3 replies
  • 1060 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

    Super User
    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?

    EGAuthor
    Visitor II
    August 19, 2024

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

    from mikroelektronika

    EGAuthor
    Visitor II
    August 19, 2024

    this my loop

     

    while (1)
    {

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


    }