diff options
Diffstat (limited to 'firmware/export/timer.h')
| -rw-r--r-- | firmware/export/timer.h | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/firmware/export/timer.h b/firmware/export/timer.h index 230c0ae..b070aca 100644 --- a/firmware/export/timer.h +++ b/firmware/export/timer.h @@ -24,21 +24,10 @@ #include <stdbool.h> #include "config.h" +#include "cpu.h" #if defined(SIMULATOR) - #define TIMER_FREQ 1000000 -#elif CONFIG_CPU == S3C2440 || CONFIG_CPU == DM320 || CONFIG_CPU == TCC7801 \ - || defined(CPU_TCC77X) || CONFIG_CPU == AS3525 || CONFIG_CPU == IMX31L \ - || CONFIG_CPU == JZ4732 || CONFIG_CPU == PNX0101 \ - || defined(CPU_COLDFIRE) || CONFIG_CPU == SH7034 || defined(CPU_PP) - #include "timer-target.h" -#else - #warning "Target without timer-target.h" -#endif - -#ifndef TIMER_FREQ - #warning "TIMER_FREQ not defined" - #define TIMER_FREQ CPU_FREQ +#define TIMER_FREQ 1000000 #endif bool timer_register(int reg_prio, void (*unregister_callback)(void), |