Information
Proxmark 3 client
Flash the Proxmark using a BusPirate
- Get OpenOCD and compile it for the BusPirate
git clone git://openocd.git.sourceforge.net/gitroot/openocd/openocd
cd openocd
./configure --enable-buspirate --enable-maintainer-mode --disable-werror --disable-shared
make && sudo make install
- Build the proxmark roms (bootrom and fullimage), see above
- Wire the BusPirate to the Proxmark3
- Pin 20 is GND and the the closest to the center of the board
- Connect GND, TDO, TMS, TDI, TCK using these pinouts, respectively p3 and buspirate
- Connect to the bus pirate
wget https://raw.githubusercontent.com/hewittc/proxmark3lcd/master/tools/at91sam7s512-buspirate.cfg
openocd -f at91sam7s512-buspirate.cfg
- Connect the p3 by USB
- Connect to openocd and flash
nc localhost 4444
> halt
> flash erase_sector 0 0 15
> flash erase_sector 1 0 15
> flash write_image /full/path/to/armsrc/obj/fullimage.elf
> flash write_image /full/path/to/bootrom/obj/bootrom.elf
See Also