You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add the "monitor reset halt" command right after
"""
(gdb) break main
Breakpoint 1 at 0x104: file src/05-led-roulette/src/main.rs, line 9.
Note: automatically using hardware breakpoints for read-only addresses.
(gdb) continue
Continuing.
Breakpoint 1, led_roulette::__cortex_m_rt_main_trampoline () at src/05-led-roulette/src/main.rs:9
9 #[entry]
"""
to assist readers who might run into the problem below.
Because all I would see when I entered "continue" was "Continuing," which I would have to press ctrl+c to exit.
The text was updated successfully, but these errors were encountered:
Would it be possible to add the "monitor reset halt" command right after
"""
(gdb) break main
Breakpoint 1 at 0x104: file src/05-led-roulette/src/main.rs, line 9.
Note: automatically using hardware breakpoints for read-only addresses.
(gdb) continue
Continuing.
Breakpoint 1, led_roulette::__cortex_m_rt_main_trampoline () at src/05-led-roulette/src/main.rs:9
9 #[entry]
"""
to assist readers who might run into the problem below.
Because all I would see when I entered "continue" was "Continuing," which I would have to press ctrl+c to exit.
The text was updated successfully, but these errors were encountered: