Library set up as dummy module on mbed to mimic Nordic.
list.h
- Committer:
- Stephen_NewVistas
- Date:
- 2016-12-12
- Revision:
- 0:226550611f0d
- Child:
- 2:9ab591cf81b8
File content as of revision 0:226550611f0d:
#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