From 9aaaf2c1937ebd208cd800d9125de19c3ecca92e Mon Sep 17 00:00:00 2001 From: Romain Goyet Date: Wed, 9 Jan 2019 10:57:46 +0100 Subject: [PATCH] [ion/f730] Fix a reset value --- ion/src/f730/device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ion/src/f730/device.cpp b/ion/src/f730/device.cpp index 50a9daa1d..764f80258 100644 --- a/ion/src/f730/device.cpp +++ b/ion/src/f730/device.cpp @@ -314,7 +314,7 @@ void initClocks() { RCC.APB1ENR()->setPWREN(true); // APB2 bus - class RCC::APB2ENR apb2enr(0x00008000); // Reset value + class RCC::APB2ENR apb2enr(0); // Reset value apb2enr.setADC1EN(true); apb2enr.setSYSCFGEN(true); #if USE_SD_CARD