From 5d9060701358ae5f00dfdcbce77f830ec9988c38 Mon Sep 17 00:00:00 2001 From: MKO1640 Date: Sat, 7 Mar 2020 19:21:14 +0100 Subject: [PATCH] Fix Bug Wifi on Boot if false then false? after this fix we dont must errase all, before update to 1.20.2.rc3-0.8.0-vanilla-squirrel --- boot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot.py b/boot.py index 6102f66..af7a0d2 100644 --- a/boot.py +++ b/boot.py @@ -38,10 +38,10 @@ ############################################################################### if not pycom.wifi_on_boot(): - pycom.wifi_on_boot(False) + pycom.wifi_on_boot(True) ############################################################################### # Finished boot process # ############################################################################### -print("Boot finished.") \ No newline at end of file +print("Boot finished.")