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:
Tue May 27 01:33:04 2014 +0000
Parent:
29:6a0ba999597d
Child:
31:15c22824cc46
Commit message:
Modified a compile error.

Changed in this revision

Socket/TCPSocketConnection.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Socket/TCPSocketConnection.cpp	Mon May 26 05:17:28 2014 +0000
+++ b/Socket/TCPSocketConnection.cpp	Tue May 27 01:33:04 2014 +0000
@@ -54,7 +54,7 @@
     printf("socket created : %d\r\n", mSocketID);
 
     int ip_addr = resolveHostName( host_p );
-    lcd_printf("connect to [%s](%08x)\r\n", host_p, ip_addr);
+    //lcd_printf("connect to [%s](%08x)\r\n", host_p, ip_addr);
     if( ( ip_addr == 0) || (ip_addr == -1) )
     {
           printf("connect resolveHostName failed\r\n");
@@ -65,7 +65,7 @@
     tagMEMPOOL_BLOCK_T *payload_buf = snic_core_p->allocCmdBuf();
     if( payload_buf == NULL )
     {
-        lcd_printf("connect payload_buf NULL\r\n");
+        printf("connect payload_buf NULL\r\n");
         return -1;
     }