for EthernetInterface library compatibility.\\ ** Unoffical fix. may be a problem. **
Dependents: SNIC-httpclient-example SNIC-ntpclient-example
Fork of SNICInterface by
Revision 17:d8bc02c455a6, committed 2014-03-27
- 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 */
ban4jp -
