diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-06-09 20:26:30 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-06-09 20:27:57 -0400 |
commit | 700e35c6ac74a64719fbc38fe66386dd422613f3 (patch) | |
tree | 2a829c04c12f3b6393d842f1835c2f8f8df023dc /src/lpc176x/internal.h | |
parent | 97840f9851772ffbcc99b8e33c82b0af4770baa8 (diff) | |
download | kutter-700e35c6ac74a64719fbc38fe66386dd422613f3.tar.gz kutter-700e35c6ac74a64719fbc38fe66386dd422613f3.tar.xz kutter-700e35c6ac74a64719fbc38fe66386dd422613f3.zip |
armcm_timer: Unify udelay() implementation
Move the udelay() code from various arm board directories into the
src/generic/armcm_timer.c code.
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, 0 insertions, 2 deletions
diff --git a/src/lpc176x/internal.h b/src/lpc176x/internal.h index 985c30df..5dcf99a4 100644 --- a/src/lpc176x/internal.h +++ b/src/lpc176x/internal.h @@ -18,6 +18,4 @@ int is_enabled_pclock(uint32_t pclk); void enable_pclock(uint32_t pclk); void gpio_peripheral(uint32_t gpio, int func, int pullup); -void udelay(uint32_t usecs); - #endif // internal.h |