Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: CANBuffer KS0108_fork mbed-rtos mbed CAN Addresses
Fork of REVO_Updated_Steering by
Diff: node.h
- Revision:
- 35:b42afc973902
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/node.h Sat Nov 22 22:24:53 2014 +0000
@@ -0,0 +1,35 @@
+class node{
+
+ public:
+
+ node();
+ node(int id, int screen);
+ void set_val(char v);
+ ~node();
+
+ int screen;
+ int id;
+ char value;
+ node * next;
+
+};
+
+node::node(){
+ screen = 0;
+ id = 0;
+ next = NULL;
+}
+
+node::node(int i, int s){
+ id = i;
+ screen = s;
+ next = NULL;
+}
+
+void node::set_val(char v){
+ value = v;
+}
+
+node::~node(){
+}
+
\ No newline at end of file
