File tree 2 files changed +13
-3
lines changed
2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -95,12 +95,22 @@ pause()
95
95
Programming Bootloader
96
96
----------------------
97
97
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)
99
99
100
100
* Use the following command to program the bootloader:
101
101
102
102
```
103
103
openocd -f ~/Repositories/pico/openocd/tcl/interface/raspberrypi-swd.cfg -f ~/Repositories/pico/openocd/tcl/target/rp2040.cfg -c "program bootloader.elf verify reset exit"
104
104
```
105
105
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 7
7
from setuptools import setup , Extension
8
8
from os import getenv
9
9
10
- LIB_VERSION = "0.3.2 "
10
+ LIB_VERSION = "0.4.0 "
11
11
12
12
with open ("README.md" ) as readme :
13
13
long_description = readme .read ()
You can’t perform that action at this time.
0 commit comments