diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-03-10 23:00:17 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-03-11 12:15:07 -0500 |
commit | e5d7e593ec8a1587983e2ca9504af6b4e9d17578 (patch) | |
tree | 35ca4517e8f043e98659ceca7720fb1b08bef776 /src/avr/timer.c | |
parent | 69b927bfe9f9fd7a6ffe664a188ae4ad9462fd75 (diff) | |
download | kutter-e5d7e593ec8a1587983e2ca9504af6b4e9d17578.tar.gz kutter-e5d7e593ec8a1587983e2ca9504af6b4e9d17578.tar.xz kutter-e5d7e593ec8a1587983e2ca9504af6b4e9d17578.zip |
generic: Move generic parts of sam3x8e timer.c to generic directory
Most of sam3x8e/timer.c is going to be platform agnostic for any board
with standard irq handling. Move the generic code into a new file
generic/timer.c.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/avr/timer.c')
-rw-r--r-- | src/avr/timer.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/avr/timer.c b/src/avr/timer.c index 06d8845e..3818e772 100644 --- a/src/avr/timer.c +++ b/src/avr/timer.c @@ -17,7 +17,6 @@ ****************************************************************/ DECL_CONSTANT(CLOCK_FREQ, F_CPU); -DECL_CONSTANT(MCU, CONFIG_MCU); // Return the number of clock ticks for a given number of microseconds uint32_t |