diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-01-31 22:58:01 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-02-06 22:03:09 -0500 |
commit | 1096075d9b2d10302abd42cfdeef155f145f64e1 (patch) | |
tree | d23fa67f0a3aec0c02833edca141fe243b1eb775 /src/lpc176x/internal.h | |
parent | 77db1aa379f7fc4ca23a0f7884f9219ca2db38d5 (diff) | |
download | kutter-1096075d9b2d10302abd42cfdeef155f145f64e1.tar.gz kutter-1096075d9b2d10302abd42cfdeef155f145f64e1.tar.xz kutter-1096075d9b2d10302abd42cfdeef155f145f64e1.zip |
lpc176x: Convert code to use armcm_timer
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/lpc176x/internal.h')
-rw-r--r-- | src/lpc176x/internal.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lpc176x/internal.h b/src/lpc176x/internal.h index bd3e9c01..5dcf99a4 100644 --- a/src/lpc176x/internal.h +++ b/src/lpc176x/internal.h @@ -2,6 +2,8 @@ #define __LPC176X_INTERNAL_H // Local definitions for lpc176x code +#include "LPC17xx.h" + #define GPIO(PORT, NUM) ((PORT) * 32 + (NUM)) #define GPIO2PORT(PIN) ((PIN) / 32) #define GPIO2BIT(PIN) (1<<((PIN) % 32)) |