Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- sudo echo ""
- sudo openocd -f ti_ek-tm4c123gxl.cfg &> /dev/null &
- openocd_pid=$!
- gdb-multiarch -ex "file objs/lab2binary.axf" -ex "target extended-remote localhost:3333" -ex "b main" -ex "jump ResetISR" -ex "layout split" -tui
- kill $openocd_pid
Advertisement
Add Comment
Please, Sign In to add comment