From 288e87537abae715b6c14339eca820a579085c17 Mon Sep 17 00:00:00 2001 From: Totoo Date: Thu, 25 Jun 2026 09:08:44 +0200 Subject: [PATCH] MAX 17055 sleep bug fixes. --- firmware/common/i2cdev_max17055.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/common/i2cdev_max17055.cpp b/firmware/common/i2cdev_max17055.cpp index e1e2a15da..4406bf6ea 100644 --- a/firmware/common/i2cdev_max17055.cpp +++ b/firmware/common/i2cdev_max17055.cpp @@ -318,8 +318,8 @@ bool I2cDev_MAX17055::needsInitialization() { void I2cDev_MAX17055::partialInit() { // Only update necessary volatile settings - // setHibCFG(0x0000); // If you always want hibernation disabled. this is a lower resolution mode, when the ic is on, and measuring, but on lower freq. depends un tha current (mA). - sleep_config(true); // shut down the comm + setHibCFG(0x0000); // If you always want hibernation disabled. this is a lower resolution mode, when the ic is on, and measuring, but on lower freq. depends un tha current (mA). + sleep_config(false); // shut down the comm // Add any other volatile settings that need updating }