From 1ebfc4b26e2cb35715e3ba09b15d1bbbc84a2197 Mon Sep 17 00:00:00 2001 From: Karl Palsson Date: Mon, 23 Nov 2015 09:51:18 +0000 Subject: [PATCH] lpc17xx: Correct duplicate CLKOUT definition Checked against UM10360 rev3.1 Reported-by: --- include/libopencm3/lpc17xx/clock.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/libopencm3/lpc17xx/clock.h b/include/libopencm3/lpc17xx/clock.h index 431658ef..8ad6f47e 100644 --- a/include/libopencm3/lpc17xx/clock.h +++ b/include/libopencm3/lpc17xx/clock.h @@ -154,7 +154,7 @@ LGPL License Terms @ref lgpl_license #define CLK_CLKOUTCFG_SEL_RTC 0x04 #define CLK_CLKOUTCFG_DIV_SHIFT 4 #define CLK_CLKOUTCFG_ENABLE (1 << 8) -#define CLK_CLKOUTCFG_ENABLE (1 << 9) +#define CLK_CLKOUTCFG_ACTIVITY (1 << 9) /* Reserved: [31:10]*/ #endif