Differences
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision Next revision | Previous revision | ||
|
dt_openocd [2014/02/16 22:25] yusa |
dt_openocd [2014/06/27 09:35] (current) beckmanf added flyswatter usb configuration |
||
|---|---|---|---|
| Line 20: | Line 20: | ||
| <code> | <code> | ||
| git clone git://git.code.sf.net/p/openocd/code openocd-code | git clone git://git.code.sf.net/p/openocd/code openocd-code | ||
| + | </code> | ||
| + | |||
| + | Install the libusb-1.0 package | ||
| + | |||
| + | <code> | ||
| + | sudo apt-get install libusb-1.0-0-dev | ||
| + | ./bootstrap | ||
| + | ./configure --prefix=$HOME/site | ||
| + | make | ||
| + | make install | ||
| + | </code> | ||
| + | |||
| + | Add the file /etc/udev/rules.d/52-flyswatter.rules. This will make the usb device accessible without root permissions. | ||
| + | |||
| + | <code> | ||
| + | # Flyswatter JTAG Debugger | ||
| + | SUBSYSTEMS=="usb", ATTR{idVendor}=="0403", ATTR{idProduct}=="6010", MODE="0666" | ||
| </code> | </code> | ||
| Line 209: | Line 226: | ||
| (gdb) print [var] | (gdb) print [var] | ||
| </code> | </code> | ||
| - | |||