Skip to content

Commit 4775324

Browse files
committed
change readme and bump version to 0.4.0
1 parent 5623931 commit 4775324

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,22 @@ pause()
9595
Programming 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
```
103103
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"
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+
```

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from setuptools import setup, Extension
88
from os import getenv
99

10-
LIB_VERSION="0.3.2"
10+
LIB_VERSION="0.4.0"
1111

1212
with open("README.md") as readme:
1313
long_description = readme.read()

0 commit comments

Comments
 (0)