mirror of
https://github.com/odriverobotics/ODrive.git
synced 2026-08-18 18:20:15 +08:00
6 lines
240 B
Bash
Executable File
6 lines
240 B
Bash
Executable File
#!/usr/bin/env bash
|
|
openocd -d3 -f board/stm32f4discovery.cfg -c "hla_serial wrong_serial" 2>&1 | \
|
|
xxd -p | \
|
|
tr -d '\n' | \
|
|
sed -n 's/^.*6e756d6265722027\([0-9a-f]*\)2720646f65736e27.*$/\1/p' | sed -e 's/.\{2\}/\\x&/g'; echo
|