Alex Millane / Mbed 2 deprecated IFARanging

Dependencies:   mbed

Revision:
0:99928431bb44
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Node/Node.cpp	Tue Jul 07 09:36:12 2015 +0000
@@ -0,0 +1,20 @@
+#include "Node.h"
+
+
+Node::Node( MM2WayRanging& newRanging, DW1000& newDw ) : ranging(newRanging), dw(newDw)
+{
+    debugprintf("Node Initialized\r\n") ;
+}
+
+void Node::execute()
+{
+
+}
+
+void Node::setAddress( uint8_t address )
+{
+    // Setting the address of the ranging object
+    ranging.address = address ;
+    // Debug output
+    debugprintf("Address set: %u\r\n", address) ;
+}