microcopy change

This commit is contained in:
Peter D. Gray 2024-02-19 09:52:15 -05:00
parent 989d084075
commit 8cb010ca04
No known key found for this signature in database
GPG Key ID: A2DCD558C2BE5D7C

View File

@ -121,7 +121,7 @@ def wipe_microsd_card():
sd.power(0)
sd.power(1)
dis.fullscreen('Part Erase...')
dis.fullscreen('Formatting...')
cutoff = 1024 # arbitrary
blk = bytearray(512)
ckcc.rng_bytes(blk)
@ -130,8 +130,6 @@ def wipe_microsd_card():
sd.writeblocks(bnum, blk)
dis.progress_bar_show(bnum/cutoff)
dis.fullscreen('Formatting...')
# remount, with newfs option -- this does the formating (very quick)
os.mount(sd, '/sd', readonly=0, mkfs=1)