Adding 72 MHz clock support for mk20dx256vlh7

This commit is contained in:
Jacob Alexander 2015-04-20 00:55:58 -07:00
parent a6657c8aed
commit 26b0a7e10d
4 changed files with 40 additions and 16 deletions

View file

@ -35,14 +35,17 @@
// ----- Defines -----
#if (F_CPU == 96000000)
#define F_BUS 48000000
#define F_MEM 24000000
#define F_BUS 48000000
#define F_MEM 24000000
#elif (F_CPU == 72000000)
#define F_BUS 36000000
#define F_MEM 24000000
#elif (F_CPU == 48000000)
#define F_BUS 48000000
#define F_MEM 24000000
#define F_BUS 48000000
#define F_MEM 24000000
#elif (F_CPU == 24000000)
#define F_BUS 24000000
#define F_MEM 24000000
#define F_BUS 24000000
#define F_MEM 24000000
#endif