Fork to support REVB hardware.

Dependents:   C027_BootTest_revb C027_EthernetSniffTest C027_M3_SerialEcho C027_HelloWorld_revb ... more

Fork of C027 by u-blox

Files at this revision

API Documentation at this revision

Comitter:
dixter1
Date:
Fri Dec 13 20:10:00 2013 +0000
Parent:
17:cd02fb66a5fc
Child:
20:2ae219d82c0e
Commit message:
Delay at boot, after initial setup is complete. Need to wait for the reset signals on the board to settle, so we don't reset the LISA chip multiple times.

Changed in this revision

C027.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/C027.cpp	Fri Dec 13 00:36:38 2013 +0000
+++ b/C027.cpp	Fri Dec 13 20:10:00 2013 +0000
@@ -47,6 +47,13 @@
     mdmRst    = 1;  // RESET:  0=reset, 1=operating
     mdmIsEnabled = false;
     mdmUseUsb = false;
+    
+    
+    // The USB insertion and removal, and the Reset Button 
+    // can cause multiple resets to the device.  Wait for
+    // a period of time for this to settle before proceeding
+    // with turning on various components on the board.
+    wait_ms(3000);  
 }
 
 void C027::LeakageTest( void )