PicoTCP robustness Test

Dependencies:   PicoTCP lpc1768-picotcp-eth mbed-rtos mbed

Files at this revision

API Documentation at this revision

Comitter:
tass
Date:
Thu Jan 16 14:23:00 2014 +0000
Parent:
2:c0838e12f038
Child:
4:0406e4e7639f
Commit message:
Fixed warnings

Changed in this revision

PicoTCP.lib Show annotated file Show diff for this revision Revisions of this file
lpc1768-picotcp-eth.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/PicoTCP.lib	Fri Jul 26 06:33:54 2013 +0000
+++ b/PicoTCP.lib	Thu Jan 16 14:23:00 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/daniele/code/PicoTCP/#ca30069e49bb
+http://mbed.org/users/daniele/code/PicoTCP/#a064a384eae6
--- a/lpc1768-picotcp-eth.lib	Fri Jul 26 06:33:54 2013 +0000
+++ b/lpc1768-picotcp-eth.lib	Thu Jan 16 14:23:00 2014 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/tass/code/lpc1768-picotcp-eth/#0b675bdd074f
+http://mbed.org/users/tass/code/lpc1768-picotcp-eth/#53fd77850eee
--- a/main.cpp	Fri Jul 26 06:33:54 2013 +0000
+++ b/main.cpp	Thu Jan 16 14:23:00 2014 +0000
@@ -129,7 +129,7 @@
     // attempt DHCP and if timing out then try again
     while (eth.connect()) {
         retries++;
-        printf("[%d] DHCP timeout %d\n",PICO_TIME_MS(),retries);
+        printf("[%llu] DHCP timeout %d\n",PICO_TIME_MS(),retries);
         if(retries >= DHCP_RETRIES)
         {
             printf("DHCP failed. Bailing out..\n");
@@ -137,7 +137,7 @@
         }
     };
     
-    printf("[%d] Starting the robustness test...\n",PICO_TIME_MS());
+    printf("[%llu] Starting the robustness test...\n",PICO_TIME_MS());
     
     while(1) 
     {