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
I'm able to build and flash the code. Once I try to debug, I get the following:
(gdb) target remote :1337
Remote debugging using :1337
warning: while parsing target description (at line 4): Target description specified unknown architecture "armv7"
warning: Could not load XML target description; ignoring
0x00000000 in __vector_table ()
Notice 0x00000000 in __vector_table ()
After adding a break point, and continuing, it just hangs:
(gdb) b main
Breakpoint 1 at 0x15c: file src/05-led-roulette/src/main.rs, line 9.
Note: automatically using hardware breakpoints for read-only addresses.
(gdb) continue
Continuing.
I've also tried step, which gives
(gdb) step
Single stepping until exit from function __vector_table,
which has no line number information.
Program received signal SIGINT, Interrupt.
0x00000000 in __vector_table ()
And I've tried stepi, which gives
(gdb) stepi
Program received signal SIGINT, Interrupt.
0x00000000 in __vector_table ()
Any ideas of how else to debug or get further?
The text was updated successfully, but these errors were encountered:
Running on Kali Linux
I'm able to build and flash the code. Once I try to debug, I get the following:
Notice
0x00000000 in __vector_table ()
After adding a break point, and continuing, it just hangs:
I've also tried
step
, which givesAnd I've tried
stepi
, which givesAny ideas of how else to debug or get further?
The text was updated successfully, but these errors were encountered: