[ion/f730] Fix a reset value

This commit is contained in:
Romain Goyet
2019-01-09 10:57:46 +01:00
committed by Ruben Dashyan
parent 63180705fa
commit 9aaaf2c193

View File

@@ -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