diff options
author | Uros Majstorovic <majstor@majstor.org> | 2019-12-07 17:17:21 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2019-12-07 17:17:21 +0100 |
commit | 2e6facf66ee3d6aa37f2fb41096b1763261506a7 (patch) | |
tree | 61ecbe97cb53f1371c655b8564cc269bffd07ce1 /code/fe310/eos/event.h | |
parent | 040f4333678f46f3558e604014d460076244af6b (diff) |
eos evtq flags refactor; net buf flags refator for all modules
Diffstat (limited to 'code/fe310/eos/event.h')
-rw-r--r-- | code/fe310/eos/event.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/code/fe310/eos/event.h b/code/fe310/eos/event.h index 8a16dfd..6beb263 100644 --- a/code/fe310/eos/event.h +++ b/code/fe310/eos/event.h @@ -6,6 +6,7 @@ typedef void (*eos_evt_fptr_t) (unsigned char, unsigned char *, uint16_t); void eos_evtq_init(void); 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_bad_handler(unsigned char type, unsigned char *buffer, uint16_t len); void eos_evtq_set_handler(unsigned char type, eos_evt_fptr_t handler); |