The reason you didn't see any variables @14:58 is because you managed to pause outside the scope (inside HAL_GetTick()) of those variables that you expected to see. A singlestep or two would have been enough to get back to main() and the variables would have shown.
very cool videos
Glad you like them. Good to get some response ;)
The reason you didn't see any variables @14:58 is because you managed to pause outside the scope (inside HAL_GetTick()) of those variables that you expected to see. A singlestep or two would have been enough to get back to main() and the variables would have shown.
Yeah that makes sense.