linux安装openocd
方法1:命令安装(不推荐,因为默认安装的是0.10.0,不支持stlink V3)
sudo apt install openocd
方法2:源码编译安装
git clone https://github.com/openocd-org/openocd.git
进入源码中,执行一下命令安装
./bootstrap ./configure make sudo make install
sudo apt install openocd
git clone https://github.com/openocd-org/openocd.git
进入源码中,执行一下命令安装
./bootstrap ./configure make sudo make install