parallaxinc / Simple-Libraries

Contents of the SimpleIDE workspace folder and its Parallax Learn Simple Libraries subfolder.
http://learn.parallax.com/propeller-c-set-simpleide/update-your-learn-folder
21 stars 21 forks source link

scan.c #199

Open VonSzarvas opened 4 years ago

VonSzarvas commented 4 years ago

similar to #198

line 135 does not re-enable simpleIDE terminal when bytesReady validation fails:

libwifi/scan.c

if(bytesReady == 0) return 0;

could be solved by:

if(bytesReady == 0) {
wifi_simpletermResume();
return 0;
}