diff --git a/firmware/target/arm/as3525/clock-target.h b/firmware/target/arm/as3525/clock-target.h index 16f28429b8..2c3632c8be 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)