Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansnigirev committed Dec 23, 2021
1 parent 1946bda commit efbd77f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions boot/debug/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()

# v1.6.1-rc1 - use odd rc for main firmware and even for debug
# v1.6.2-rc1 - use odd rc for main firmware and even for debug
# so it's possible to upgrade from debug to main firmware.
# (rc99 is final version for production)
version = "<version:tag10>0100600101</version:tag10>"
version = "<version:tag10>0100600201</version:tag10>"

leds = [pyb.LED(i) for i in range(1,5)]
# poweroff on button press
Expand Down
4 changes: 2 additions & 2 deletions boot/main/boot.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()

# v1.6.1-rc99 - rc99 is the production release.
# v1.6.2-rc99 - rc99 is the production release.
# Use odd rc for main firmware and even for debug
# so it's possible to upgrade from debug to main firmware.
# (rc99 is final version for production)
version = "<version:tag10>0100600199</version:tag10>"
version = "<version:tag10>0100600299</version:tag10>"

# get i2c
i2c = pyb.I2C(1)
Expand Down

0 comments on commit efbd77f

Please sign in to comment.