diff options
author | Uros Majstorovic <majstor@majstor.org> | 2022-09-04 18:16:20 +0200 |
---|---|---|
committer | Uros Majstorovic <majstor@majstor.org> | 2022-09-04 18:16:20 +0200 |
commit | ec0caa569b356f186e87c13e50550ca1b807dde6 (patch) | |
tree | ab07671a8aed9c573fe20d2d100be0ab1c5e68a7 /fw/fe310/eos/soc | |
parent | 7f8e473ac12191ca4449de96033e2acda07dc4c4 (diff) |
eve support when i2s is running
Diffstat (limited to 'fw/fe310/eos/soc')
-rw-r--r-- | fw/fe310/eos/soc/timer.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fw/fe310/eos/soc/timer.h b/fw/fe310/eos/soc/timer.h index 0309454..6e77502 100644 --- a/fw/fe310/eos/soc/timer.h +++ b/fw/fe310/eos/soc/timer.h @@ -1,10 +1,11 @@ #include <stdint.h> #define EOS_TIMER_ETYPE_UI 1 -#define EOS_TIMER_ETYPE_ECP 2 -#define EOS_TIMER_ETYPE_USER 4 +#define EOS_TIMER_ETYPE_EVE 2 +#define EOS_TIMER_ETYPE_ECP 3 +#define EOS_TIMER_ETYPE_USR 4 -#define EOS_TIMER_MAX_ETYPE 4 +#define EOS_TIMER_MAX_ETYPE 8 #define EOS_TIMER_NONE -1 #define EOS_TIMER_RTC_FREQ 32768 |