2024-08-19 07:32 AM
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
2024-08-19 07:52 AM
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?
2024-08-19 08:16 AM
yes it custom board and BOOT0 pulled low with in series 100kohm as EasyMx PRO v7 for STM32 ARM
from mikroelektronika
2024-08-19 08:21 AM
this my loop
while (1)
{
HAL_GPIO_TogglePin (GPIOD, GPIO_PIN_3);
HAL_Delay (100); /* Insert delay 100 ms */
}