ghj
Fork of WizFi310Interface_Legacy by
Diff: WizFi310/WizFi310_at.cpp
- Revision:
- 2:7b906ee634bb
- Parent:
- 0:774ff1e8b26b
--- a/WizFi310/WizFi310_at.cpp Tue May 02 00:31:36 2017 +0000 +++ b/WizFi310/WizFi310_at.cpp Mon Nov 27 05:26:43 2017 +0000 @@ -166,7 +166,7 @@ int WizFi310::cmdWANT(AntennaMode mode) { char cmd[CFG_CMD_SIZE]; - sprintf(cmd, "AT+WANT=%d",mode); + sprintf(cmd, "AT+WANT=%d",mode); return sendCommand(cmd); } @@ -215,7 +215,7 @@ if( cmdWSTATUS() ) return -1; - WIZ_INFO("WizFi310 is successfully join to AP"); + //WIZ_INFO("WizFi310 is successfully join to AP"); return 0; } @@ -347,3 +347,14 @@ resp = sendCommand("AT+SMGMT=?", RES_SMGMT); return resp; } + + +int WizFi310::cmdSCON() +{ + int resp; + + resp = sendCommand("AT+SCON=?", RES_SCON,1500); + printf("Response: %d \n", resp); + return resp; +} +