Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: LPG_ATCmd_Processing/LPG_ATCmd_Processing.cpp
- Revision:
- 4:418b6d4097e1
- Parent:
- 2:e90526c0bcbe
- Child:
- 6:86eea1bcf499
--- a/LPG_ATCmd_Processing/LPG_ATCmd_Processing.cpp Tue Apr 23 05:02:48 2019 +0000 +++ b/LPG_ATCmd_Processing/LPG_ATCmd_Processing.cpp Tue Apr 23 09:37:22 2019 +0000 @@ -10,17 +10,17 @@ {(char*)"AT+CGATT=1\r\n",(char*)"OK",2000,e_NO_REC,3} }; -void LPG_ATCmd_Processing_WriteCommand(const char* command, RawSerial TransPort, RawSerial DebugPort) +void LPG_ATCmd_Processing_WriteCommand(const char* Command, RawSerial TransPort, RawSerial DebugPort) { - LPG_ATCmd_Processing_WriteCommand(command,TransPort); + LPG_ATCmd_Processing_WriteCommand(Command, TransPort); DebugPort.puts("UART Sended.\r\n"); } -void LPG_ATCmd_Processing_WriteCommand(const char* command, RawSerial TransPort) +void LPG_ATCmd_Processing_WriteCommand(const char* Command, RawSerial TransPort) { - TransPort.puts((const char*)command); + TransPort.puts((const char*)Command); } -void LPG_ATCmd_Processing_Receive() +void LPG_ATCmd_Processing_Receive(const char* Key) { }