summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/event.h
diff options
context:
space:
mode:
authorUros Majstorovic <majstor@majstor.org>2021-05-20 19:12:47 +0200
committerUros Majstorovic <majstor@majstor.org>2021-05-20 19:12:47 +0200
commit42d5c7be2c6bea5c03f55f43ad34b4bc28d50bcc (patch)
tree3b6cb33f5b211d8f32500e3a01e6ef066b9a4eac /fw/fe310/eos/event.h
parent3cac09c89fe0081f06188f1e9440de5d863951be (diff)
net protocol added req/rep messages
Diffstat (limited to 'fw/fe310/eos/event.h')
-rw-r--r--fw/fe310/eos/event.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/fw/fe310/eos/event.h b/fw/fe310/eos/event.h
index ba906bb..c9edd03 100644
--- a/fw/fe310/eos/event.h
+++ b/fw/fe310/eos/event.h
@@ -9,6 +9,8 @@ int eos_evtq_push(unsigned char type, unsigned char *buffer, uint16_t len);
int eos_evtq_push_isr(unsigned char type, unsigned char *buffer, uint16_t len);
void eos_evtq_pop(unsigned char *type, unsigned char **buffer, uint16_t *len);
void eos_evtq_pop_isr(unsigned char *type, unsigned char **buffer, uint16_t *len);
+int eos_evtq_get(unsigned char type, unsigned char **buffer, uint16_t *len);
+int eos_evtq_find(unsigned char type, unsigned char *selector, uint16_t sel_len, unsigned char **buffer, uint16_t *len);
void eos_evtq_wait(unsigned char type, unsigned char *selector, uint16_t sel_len, unsigned char **buffer, uint16_t *len);
void eos_evtq_flush(void);
void eos_evtq_flush_isr(void);
@@ -17,4 +19,3 @@ void eos_evtq_loop(void);
void eos_evtq_bad_handler(unsigned char type, unsigned char *buffer, uint16_t len);
void eos_evtq_set_handler(unsigned char type, eos_evt_handler_t handler);
eos_evt_handler_t eos_evtq_get_handler(unsigned char type);
-