SNIC UART Interface library: Serial to Wi-Fi library for Murata TypeYD Wi-Fi module. For more information about TypeYD: http://www.murata.co.jp/products/microwave/module/lbwb1zzydz/index.html

Dependents:   SNIC-xively-jumpstart-demo SNIC-FluentLogger-example TCPEchoServer murataDemo ... more

Fork of YDwifiInterface by Takao Kishino

Files at this revision

API Documentation at this revision

Comitter:
kishino
Date:
Thu Mar 27 06:04:00 2014 +0000
Parent:
16:6100acfeb1f1
Child:
18:51d3fea96518
Commit message:
Some member variables was changed to "private" from "protected".

Changed in this revision

SNIC/SNIC_Core.h Show annotated file Show diff for this revision Revisions of this file
--- a/SNIC/SNIC_Core.h	Thu Mar 27 05:43:54 2014 +0000
+++ b/SNIC/SNIC_Core.h	Thu Mar 27 06:04:00 2014 +0000
@@ -237,14 +237,12 @@
     */
     static C_SNIC_Core *getInstance();
 
-protected:
-    static C_SNIC_Core   *mInstance_p;
-    Thread               *mUartRecvThread_p;
-    RawSerial            *mUart_p;
-    Mutex                 mUartMutex;
-//    DigitalInOut        mModuleReset;
- 
 private:
+    static C_SNIC_Core        *mInstance_p;
+    Thread                    *mUartRecvThread_p;
+    RawSerial                 *mUart_p;
+    Mutex                      mUartMutex;
+//    DigitalInOut             mModuleReset;
     C_SNIC_UartCommandManager *mUartCommand_p;
 
     /** MemoryPool for payload of UART response */