Sump Pump Monitor v1.00 12-16-16 ABEtronics.com http://www.abetronics.com/?page_id=380

Dependencies:   STATIC_COLORS WIZnetInterface mbed

Fork of HTTP_SDCard_File_Server_WIZwiki-W7500 by FOURNET Olivier

Files at this revision

API Documentation at this revision

Comitter:
gsteiert
Date:
Wed Aug 06 03:35:59 2014 +0000
Parent:
4:6e648db29edf
Child:
6:ca17ce165ebc
Commit message:
committing working copy for LPC1768

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sat May 10 02:25:42 2014 +0000
+++ b/main.cpp	Wed Aug 06 03:35:59 2014 +0000
@@ -12,8 +12,8 @@
 
 Serial uart(USBTX, USBRX);
 
-//SDFileSystem sd(p5, p6, p7, p8, "sd"); // LPC1768 MBD2PMD
-SDFileSystem sd(P0_18, P0_17, P0_15, P0_16, "sd"); // Seeeduino Arch Pro SPI2SD
+SDFileSystem sd(p5, p6, p7, p8, "sd"); // LPC1768 MBD2PMD
+//SDFileSystem sd(P0_18, P0_17, P0_15, P0_16, "sd"); // Seeeduino Arch Pro SPI2SD
 
 EthernetInterface eth;
 TCPSocketServer server;
@@ -84,9 +84,10 @@
 {
 //    Serial Interface eth;
     uart.baud(115200);
-    uart.printf("RAPM Serial Started\n");
+    uart.printf("Initializing\n");
 
 //    Check File System
+    uart.printf("Checking File System\n");
     DIR *d = opendir("/sd/");
     if (d != NULL) {
         uart.printf("SD Card Present\n");
@@ -95,14 +96,16 @@
     }
 
 //    EthernetInterface eth;
+    uart.printf("Initializing Ethernet\n");
     eth.init(); //Use DHCP
+    uart.printf("Connecting\n");
     eth.connect();
     uart.printf("IP Address is %s\n", eth.getIPAddress());
 
 //    TCPSocketServer server;
     server.bind(HTTPD_SERVER_PORT);
     server.listen();
-    uart.printf("RAPM Server Listening\n");
+    uart.printf("Server Listening\n");
 
     while (true) {
         uart.printf("\nWait for new connection...\r\n");
--- a/mbed.bld	Sat May 10 02:25:42 2014 +0000
+++ b/mbed.bld	Wed Aug 06 03:35:59 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/6473597d706e
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/6213f644d804
\ No newline at end of file