Fork to see if I can get working

Dependencies:   BufferedSerial OneWire WinbondSPIFlash libxDot-dev-mbed5-deprecated

Fork of xDotBridge_update_test20180823 by Matt Briggs

Revision:
41:9ef4c4d77711
Parent:
39:64f79fa6e3cc
Child:
47:a68747642a7a
diff -r 2ec4be320961 -r 9ef4c4d77711 xDotBridge/config.h
--- a/xDotBridge/config.h	Thu Jan 26 17:36:59 2017 -0700
+++ b/xDotBridge/config.h	Mon Jan 30 17:25:08 2017 -0700
@@ -7,11 +7,10 @@
 
 // These define which wireless bridge you are generating code for
 #define BRIDGE_TX_BRUTE 0
-#define BRIDGE_RX_BRUTE 0
 
 #define LED_FEEDBACK 1  // If 1 then LED is shown and 0 LED is not shown to conserve power
 
-// Make eclipse happy by adding in macros which are typically added at compile time
+// Make eclipse IDE happy by adding in macros which are typically added at compile time
 #ifndef TARGET_XDOT_L151CC
 #define TARGET_XDOT_L151CC
 // Note these seem to need to be added to eclipse indexer to make everyone happy
@@ -24,7 +23,8 @@
 enum CmdResult {
     cmdSuccess=0,
     cmdCrcError=1,
-    cmdError=2
+    cmdTimeout=2,
+    cmdError=3
 };
 
 #endif