summaryrefslogtreecommitdiff
path: root/code/fe310/eos/event.h
blob: 21079b4f64063a8c8c2f275a5bc7ee45aafd1595 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <stdint.h>

#define EOS_EVT_MASK_NET    0x80
#define EOS_EVT_TIMER       0x01
#define EOS_EVT_UI          0x02

#define EOS_EVT_SIZE_Q      4

typedef void (*eos_evt_fptr_t) (unsigned char, unsigned char *, uint16_t);

void eos_evtq_init(void);
int eos_evtq_push(unsigned char cmd, unsigned char *buffer, uint16_t len);
void eos_evtq_pop(unsigned char *cmd, unsigned char **buffer, uint16_t *len);
void eos_evtq_handle(unsigned char cmd, unsigned char *buffer, uint16_t len);
void eos_evtq_loop(void);
void eos_evtq_set_handler(unsigned char cmd, eos_evt_fptr_t handler);