Guest User

Untitled

a guest
Oct 7th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #!/bin/bash
  2. sudo echo ""
  3. sudo openocd -f ti_ek-tm4c123gxl.cfg &> /dev/null &
  4. openocd_pid=$!
  5.  
  6. gdb-multiarch -ex "file objs/lab2binary.axf" -ex "target extended-remote localhost:3333" -ex "b main" -ex "jump ResetISR" -ex "layout split" -tui
  7.  
  8. kill $openocd_pid
  9.  
Advertisement
Add Comment
Please, Sign In to add comment