diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-01-07 00:54:54 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-01-07 00:54:54 +0100 |
commit | 2d9f22e056b61917979db67da49fc0655b0af3a4 (patch) | |
tree | f85f97d8912018caa5f2af6ce9e271ece534b189 /code/fe310/eos/msgq.c | |
parent | ade4905ef785005347718ce612c245f7fa4dad70 (diff) |
touch event hanlder: added tracking/dragging; text box: added drag/scroll capability; added keyboard
Diffstat (limited to 'code/fe310/eos/msgq.c')
-rw-r--r-- | code/fe310/eos/msgq.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/code/fe310/eos/msgq.c b/code/fe310/eos/msgq.c index 2b20f31..07ea70f 100644 --- a/code/fe310/eos/msgq.c +++ b/code/fe310/eos/msgq.c @@ -10,7 +10,6 @@ #define IDX_LT(a,b) ((uint8_t)((uint8_t)(a) - (uint8_t)(b)) > IDX_HALF) #define IDX_LTE(a,b) ((uint8_t)((uint8_t)(b) - (uint8_t)(a)) < IDX_HALF) - void eos_msgq_init(EOSMsgQ *msgq, EOSMsgItem *array, uint8_t size) { msgq->idx_r = 0; msgq->idx_w = 0; |