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