21 lines
322 B
C
21 lines
322 B
C
/*
|
|
* lpc8xx_wkt.h
|
|
*
|
|
* Created on: Apr 11, 2016
|
|
* Author:
|
|
*/
|
|
|
|
#ifndef LPC8XX_WKT_H_
|
|
#define LPC8XX_WKT_H_
|
|
|
|
// Control register shifters
|
|
#define WKT_CLKSEL 0
|
|
#define WKT_ALARMFLAG 1
|
|
#define WKT_CLEARCTR 2
|
|
|
|
// Control register fields
|
|
#define DIVIDED_IRC 0
|
|
#define LOW_POWER_OSC 1
|
|
|
|
#endif /* LPC8XX_WKT_H_ */
|