Should I do this in a sketch or fix some file?void SystemClock_Config() {
return; // <- return on entry, so no clock setting is done
....
}
I also bought the same boards with HSE 25 MHz today, but they will arrive no earlier than in 2 weeks.
Should I do this in a sketch or fix some file?void SystemClock_Config() {
return; // <- return on entry, so no clock setting is done
....
}
inside that variant fileFziegler_076 wrote: Sun Apr 21, 2024 2:48 amShould I do this in a sketch or fix some file?void SystemClock_Config() {
return; // <- return on entry, so no clock setting is done
....
}
I also bought the same boards with HSE 25 MHz today, but they will arrive no earlier than in 2 weeks.
I have corrected the fileoid SystemClock_Config() {
return; // <- return on entry, so no clock setting is done
Code: Select all
oid SystemClock_Config() {
return; // <- return on entry, so no clock setting is done
if that doesn't work, then it is unlikely to be a clock issue, because by returning in void SystemClock_Config(), before clock setting.
it is running on its internal clock, not even on the crystal
Yes, I have 10 boards! I've already checked on 4x and it doesn't no work on all 4x via USB DFUit seem you have a few boards, all of them don't work?
Thanks!Try to debug using Arduino IDE 2.2.1.
The latest version 2.3.x changes the debug configuration way. I will fix this within next release.
Simply enable the optimize for debugging option and you should be able to debug and see where it stucks.