Skip to content

Commit

Permalink
fix tx screen
Browse files Browse the repository at this point in the history
  • Loading branch information
stepansnigirev committed Mar 26, 2021
1 parent ea5daa0 commit afe4ad5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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.5.0-rc1 - use odd rc for main firmware and even for debug
# v1.5.1-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>0100500001</version:tag10>"
version = "<version:tag10>0100500101</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 @@ -6,10 +6,10 @@
pwr = pyb.Pin("B15", pyb.Pin.OUT)
pwr.on()

# v1.5.0-rc99 - use odd rc for main firmware and even for debug
# v1.5.1-rc99 - 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>0100500099</version:tag10>"
version = "<version:tag10>0100500199</version:tag10>"

# get i2c
i2c = pyb.I2C(1)
Expand Down
2 changes: 1 addition & 1 deletion src/gui/screens/transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def __init__(self, title, meta):
shlbl.align(lbl, lv.ALIGN.OUT_BOTTOM_LEFT, 0, 5)
shlbl.set_x(60)
shlbl.set_style(0, style_warning)
lbl = shlbl
lbl = shlbl
obj = lbl

lbl = add_label("%d OUTPUTS" % len(meta["outputs"]), scr=self.page2)
Expand Down

0 comments on commit afe4ad5

Please sign in to comment.