Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
tools:stlink [2020/08/07 03:57]
darron
tools:stlink [2022/12/16 10:11] (current)
darron [Install]
Line 7: Line 7:
  
 === Install === === Install ===
 +
 +==Linux==
 +
 <code> <code>
-mkdir -p /opt/src +cd /opt/src/ 
-cd /opt/src +apt-get install build-essential git cmake libusb-1.0-0-dev 
-git clone https://github.com/texane/stlink.git +rehash 
-cd /opt/src/stlink +git clone https://github.com/stlink-org/stlink 
-sh autogen.sh +cd stlink 
-apt-get install libusb-1.0-0-dev +cmake .
-./configure --prefix=/usr/local+
 make make
 make install make install
-cp 49-stlinkv* /etc/udev/rules.d/ +ldconfig 
-cp stlink_v1.modprobe.conf /etc/modprobe.d/+cp config/udev/rules.d/49-stlinkv* /etc/udev/rules.d/ 
 +cp config/modprobe.d/stlink_v1.conf /etc/modprobe.d/ 
 +udevadm control --reload-rules 
 +udevadm trigger
 </code> </code>
 +
 +On linux we can disable the built in mass storage devices STLINK compatible boards contain, see [[:boards:stm32vl|here]].
 +
 +==Windows==
 +
 +[[https://github.com/stlink-org/stlink/releases/download/v1.7.0/stlink-1.7.0-x86_64-w64-mingw32.zip]]
 +
  
 === Test === === Test ===
  
-A simple way to test a device is to read and discard the data from it.+A simple way to test a device is to read nothing from the device.
  
 <code> <code>
-st-flash read /dev/null 0+st-flash read /dev/null 0
 </code> </code>