File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -95,12 +95,22 @@ pause()
9595Programming Bootloader
9696----------------------
9797
98- * Copy pico\_ setup.sh to ~ /Repositories and run (this will install openocd along with tools for building the firmware)
98+ * Copy pico\_ setup.sh to ~ /Repositories on the Pi and run (this will install openocd along with tools for building the firmware)
9999
100100* Use the following command to program the bootloader:
101101
102102```
103103openocd -f ~/Repositories/pico/openocd/tcl/interface/raspberrypi-swd.cfg -f ~/Repositories/pico/openocd/tcl/target/rp2040.cfg -c "program bootloader.elf verify reset exit"
104104```
105105
106- * Currently need to place firmware.bin and signature.bin in /tmp for the Python library to load
106+ (I had to run this several times, to get it to program successfully)
107+
108+ * Currently need to place firmware.bin and signature.bin in /tmp for the Python library to load them
109+
110+ Install
111+ -------
112+
113+ ```
114+ sudo apt install python3-pip
115+ pip3 install build_hat-*.whl
116+ ```
Original file line number Diff line number Diff line change 77from setuptools import setup , Extension
88from os import getenv
99
10- LIB_VERSION = "0.3.2 "
10+ LIB_VERSION = "0.4.0 "
1111
1212with open ("README.md" ) as readme :
1313 long_description = readme .read ()
You can’t perform that action at this time.
0 commit comments