Library set up as dummy module on mbed to mimic Nordic.

Dependencies:   mbed-rtos mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers list.h Source File

list.h

00001 #ifndef LIST_H
00002 #define LIST_H
00003 
00004 typedef struct{
00005     unsigned char command;
00006     void *function;
00007 } listContents_t;
00008 
00009 typedef struct{
00010     listContents_t list[64];
00011     unsigned char index;   
00012 } list_t;
00013 
00014 #endif