2024-04-23 08:20 PM
I bought a NUCLEO H755ZI board, but I can't make the LED connected to GPIOB pin 14 blink, neither with CMSIS nor with HAL, I saw some tutorials and questions here, but nothing solved it, thank you in advance for your help.
Solved! Go to Solution.
2024-04-25 07:55 AM
Debug your code ... is while toggle run???
2024-04-23 08:52 PM
Single Step the code, or observe with a scope
At several million cycles a second, this is not going to create a perceivable delay, and advances i twice in the loop
void Delay_ms(int ms)
{
uint32_t i;
for(i = 0; i < ms; i++)
{
i++;
}
}// end Delay_ms
2024-04-24 02:00 AM
Did you check if R75 for LD3 is fitted? Do you have the same issue with other leds?
To give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
2024-04-25 07:26 AM
There is a resistor R26 next to LD3, would that be it? Or is it necessary to configure it in some specific way? And the same happens with other LEDs (LD1 and LD2)
2024-04-25 07:55 AM
Debug your code ... is while toggle run???
2024-04-26 09:33 AM
I use the STLINK Utility, and works, but why?