Adding 72 MHz clock support for mk20dx256vlh7
This commit is contained in:
parent
a6657c8aed
commit
26b0a7e10d
4 changed files with 40 additions and 16 deletions
|
@ -63,6 +63,8 @@ static inline void delayMicroseconds(uint32_t usec)
|
|||
{
|
||||
#if F_CPU == 96000000
|
||||
uint32_t n = usec << 5;
|
||||
#elif F_CPU == 72000000
|
||||
uint32_t n = usec << 5; // XXX Not accurate, assembly snippet needs to be updated
|
||||
#elif F_CPU == 48000000
|
||||
uint32_t n = usec << 4;
|
||||
#elif F_CPU == 24000000
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue