We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a981150 commit c23d51fCopy full SHA for c23d51f
1 file changed
internal_filesystem/builtin/apps/com.example.wificonf/assets/wificonf.py
@@ -96,6 +96,7 @@ def start_scan_networks():
96
busy_scanning = True
97
scan_button.remove_flag(lv.obj.FLAG.CLICKABLE)
98
scan_button_label.set_text(scan_button_scanning_text)
99
+ _thread.stack_size(12*1024)
100
_thread.start_new_thread(scan_networks, ())
101
102
@@ -137,6 +138,7 @@ def start_attempt_connecting(ssid,password):
137
138
print("Not attempting connect because busy_connecting.")
139
else:
140
busy_connecting = True
141
142
_thread.start_new_thread(attempt_connecting, (ssid,password))
143
144
def show_error(message):
0 commit comments