Skip to content

Commit

Permalink
Test fix for issue #181 Unwanted wifi library activity on P0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyLindsay committed Jan 7, 2019
1 parent ab8e160 commit 2b0f5a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Binary file modified Learn/Simple Libraries/Network/libwifi/cmm/libwifi.a
Binary file not shown.
2 changes: 1 addition & 1 deletion Learn/Simple Libraries/Network/libwifi/stop.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ void wifi_stop(void)
wifi_pin_do = 0;
wifi_pin_di = 0;
wifi_baud = 0;
wifi_comSelectPin = 0;
wifi_comSelectPin = -100;

simpleterm_fromTxDo = 0;
simpleterm_toRxDi = 0;
Expand Down
4 changes: 2 additions & 2 deletions Learn/Simple Libraries/Network/libwifi/wifi.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fdserial *wifi_fds;
int wifi_pin_do;
int wifi_pin_di;
int wifi_baud;
int wifi_comSelect;
int wifi_comSelectPin;
int simpleterm_fromTxDo = 31;
int simpleterm_toRxDi = 30;

Expand Down Expand Up @@ -55,7 +55,7 @@ fdserial *wifi_start(int fromDO, int toDI, int baud, int comSelect)
wifi_pin_do = fromDO;
wifi_pin_di = toDI;
wifi_baud = baud;
wifi_comSelect = comSelect;
wifi_comSelectPin = comSelect;

if(comSelect == USB_PGM)
{
Expand Down

0 comments on commit 2b0f5a3

Please sign in to comment.