summaryrefslogtreecommitdiff
path: root/code/fe310/eos/cell.h
diff options
context:
space:
mode:
Diffstat (limited to 'code/fe310/eos/cell.h')
-rw-r--r--code/fe310/eos/cell.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/code/fe310/eos/cell.h b/code/fe310/eos/cell.h
new file mode 100644
index 0000000..badce3d
--- /dev/null
+++ b/code/fe310/eos/cell.h
@@ -0,0 +1,16 @@
+#include <stdint.h>
+#include "event.h"
+
+#define EOS_CELL_MTYPE_DATA 0
+#define EOS_CELL_MTYPE_AUDIO 1
+
+#define EOS_CELL_MTYPE_DATA_START 2
+#define EOS_CELL_MTYPE_DATA_STOP 3
+
+#define EOS_CELL_MTYPE_AUDIO_START 2
+#define EOS_CELL_MTYPE_AUDIO_STOP 3
+
+#define EOS_CELL_MAX_MTYPE 2
+
+void eos_cell_init(void);
+void eos_cell_set_handler(int mtype, eos_evt_fptr_t handler, uint8_t flags); \ No newline at end of file