diff options
| -rw-r--r-- | firmware/target/arm/as3525/clock-target.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/firmware/target/arm/as3525/clock-target.h b/firmware/target/arm/as3525/clock-target.h index 16f2842..2c3632c 100644 --- a/firmware/target/arm/as3525/clock-target.h +++ b/firmware/target/arm/as3525/clock-target.h @@ -21,6 +21,9 @@ #ifndef CLOCK_TARGET_H #define CLOCK_TARGET_H +#include "config.h" +#include "cpu.h" + /* returns clock divider, given maximal target frequency and clock reference */ #define CLK_DIV(ref, target) ((ref + target - 1) / target) |