diff options
author | Uros Majstorovic <majstor@majstor.org> | 2020-01-28 19:25:20 +0100 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2020-01-28 19:25:20 +0100 |
commit | 15bddabc5cbe0e751fadcaaa7f7c7c36bca61331 (patch) | |
tree | f1c1351a9ed0acb426914ee92cd7b2b917fd9ee4 /code/fe310/eos/timer.h | |
parent | 445d72abf487dc325ccbde1e3a12d1c4cf695a6a (diff) |
eve logng press event added
Diffstat (limited to 'code/fe310/eos/timer.h')
-rw-r--r-- | code/fe310/eos/timer.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/code/fe310/eos/timer.h b/code/fe310/eos/timer.h index e8416ab..52efc30 100644 --- a/code/fe310/eos/timer.h +++ b/code/fe310/eos/timer.h @@ -1,7 +1,8 @@ #include <stdint.h> -#define EOS_TIMER_ETYPE_ECP 1 -#define EOS_TIMER_ETYPE_USER 2 +#define EOS_TIMER_ETYPE_UI 1 +#define EOS_TIMER_ETYPE_ECP 2 +#define EOS_TIMER_ETYPE_USER 4 #define EOS_TIMER_MAX_ETYPE 4 @@ -9,6 +10,7 @@ typedef void (*eos_timer_fptr_t) (unsigned char); void eos_timer_init(void); void eos_timer_set_handler(unsigned char evt, eos_timer_fptr_t handler, uint8_t flags); +void eos_timer_set_hflags(unsigned char evt, uint8_t flags); uint64_t eos_timer_get(unsigned char evt); void eos_timer_set(uint32_t msec, unsigned char evt, unsigned char b); |