Skip to content

Commit

Permalink
Update docs and Dockerfile to use latest version of MicroPython.
Browse files Browse the repository at this point in the history
  • Loading branch information
awonak committed Sep 23, 2023
1 parent bf2b6b6 commit 115a80d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion software/create_custom_firmware_uf2.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ sudo apt install cmake gcc-arm-none-eabi libnewlib-arm-none-eabi build-essenti

# get micropython source from github repo
# choose latest stable version instead of the master branch
$ git clone -b v1.19.1 https://github.com/micropython/micropython.git
$ git clone -b v1.20.0 https://github.com/micropython/micropython.git

# fetch submodules
$ cd micropython
Expand Down
2 changes: 1 addition & 1 deletion software/uf2_build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ENV TERM=xterm DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y \
cmake git-core gcc-arm-none-eabi libnewlib-arm-none-eabi build-essential wget python3

RUN git clone -b v1.19.1 --depth=1 --recursive https://github.com/micropython/micropython.git
RUN git clone -b v1.20.0 --depth=1 --recursive https://github.com/micropython/micropython.git

WORKDIR micropython

Expand Down

0 comments on commit 115a80d

Please sign in to comment.