We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48fb48e commit cea8fa2Copy full SHA for cea8fa2
libraries/Nicla_System/src/Nicla_System.cpp
@@ -386,6 +386,11 @@ void nicla::synchronizeFastChargeSettings()
386
}
387
388
389
+void nicla::checkChgReg(){
390
+ synchronizeFastChargeSettings();
391
+}
392
+
393
394
I2CLed LEDR(red);
395
I2CLed LEDG(green);
396
I2CLed LEDB(blue);
libraries/Nicla_System/src/Nicla_System.h
@@ -215,6 +215,9 @@ class nicla {
215
*/
216
static void synchronizeFastChargeSettings();
217
218
+ [[deprecated("Use synchronizeFastChargeSettings() instead.")]]
219
+ static void checkChgReg();
220
221
/**
222
* A cached version of the fast charge settings for the PMIC.
223
* This is used to reapply the settings if the register got wiped.
0 commit comments