Add RCC_BDCR bit definitions.

This commit is contained in:
Uwe Hermann 2009-07-20 15:15:22 +02:00
parent df399e248b
commit 3eb5397d8d

View File

@ -215,4 +215,12 @@
#define PWREN (1 << 28)
#define DACEN (1 << 29)
/* --- RCC_BDCR values -------------------------------------------------- */
#define LSEON (1 << 0)
#define LSERDY (1 << 1)
#define LSEBYP (1 << 2)
#define RTCEN (1 << 15)
#define BDRST (1 << 16)
#endif