Wen-ting Lo / Mbed OS STM32F303RE_LPG

Dependencies:   MQTT

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)
 {
     
 }