Dodge/Chrysler Radio Emulator Connect to Interior CAN bus

Dependencies:   mbed SDFileSystem

Revision:
0:9bc41d70bdd3
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Mon Jan 31 05:13:04 2011 +0000
@@ -0,0 +1,21 @@
+#include "mbed.h"
+#include "radioEmulator.h"
+#include "WatchDogTimer.h"
+
+RadioEmulator *radio;
+
+WatchDogTimer wdt;
+
+int main()
+{
+    wdt.kick(2);
+    radio = new RadioEmulator();
+    
+    while (1)
+    {
+        radio->readCANbus();
+        radio->HostComm();
+        
+        wdt.kick();        
+    }
+}