Library set up as dummy module on mbed to mimic Nordic.
Diff: list.h
- Revision:
- 0:226550611f0d
- Child:
- 2:9ab591cf81b8
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/list.h Mon Dec 12 23:06:58 2016 +0000
@@ -0,0 +1,15 @@
+#ifndef LIST_H
+#define LIST_H
+
+
+typedef struct{
+ unsigned char command;
+ void *function;
+} listContents_t;
+
+typedef struct{
+ listContents_t list[64];
+ unsigned char index;
+} list_t;
+
+#endif
\ No newline at end of file