Ken Van Hoeylandt fd45aa6285 Fixes
2026-01-02 20:49:04 +01:00

16 lines
256 B
C++

#include "Bq25896.h"
#include <Tactility/Log.h>
constexpr auto* TAG = "BQ25896";
void Bq25896::powerOff() {
TT_LOG_I(TAG, "Power off");
bitOn(0x09, BIT(5));
}
void Bq25896::powerOn() {
TT_LOG_I(TAG, "Power on");
bitOff(0x09, BIT(5));
}