From efbd77f9c1fd27a718a4bd6ea448456f3832a2d6 Mon Sep 17 00:00:00 2001 From: Stepan Snigirev Date: Thu, 23 Dec 2021 11:38:36 +0100 Subject: [PATCH] bump version --- boot/debug/boot.py | 4 ++-- boot/main/boot.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/boot/debug/boot.py b/boot/debug/boot.py index c872294..4389c0a 100755 --- a/boot/debug/boot.py +++ b/boot/debug/boot.py @@ -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 = "0100600101" +version = "0100600201" leds = [pyb.LED(i) for i in range(1,5)] # poweroff on button press diff --git a/boot/main/boot.py b/boot/main/boot.py index 5208ab6..3037035 100755 --- a/boot/main/boot.py +++ b/boot/main/boot.py @@ -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 = "0100600199" +version = "0100600299" # get i2c i2c = pyb.I2C(1)