mirror of
https://github.com/DarkFlippers/unleashed-firmware.git
synced 2024-12-23 05:14:16 +03:00
0469ef0e55
* FuriHal, drivers: rework gauge initialization, ensure that we can recover from any kind of internal/external issue * Make PVS happy * Format sources * bq27220: add gaps injection into write operations * Drivers: bq27220 cleanup and various fixes * Drivers: bq27220 verbose logging and full access routine fix * Drivers: better cfg mode exit handling in bq27220 driver * Drivers: rewrite bq27220 based on bqstudio+ev2400, experiments and guessing. Fixes all known issues. * PVS: hello license check * Drivers: minimize reset count in bq27220 init sequence * Drivers: bq27220 hide debug logging, reorganize routine to ensure predictable result and minimum amount of interaction with gauge, add documentation and notes. * Drivers: more reliable bq27220_full_access routine * Drivers: replace some warning with error in bq27220 * Drivers: move static asserts to headers in bq27220 * Fix PVS warnings * Drivers: simplify logic in bq27220 --------- Co-authored-by: hedger <hedger@users.noreply.github.com>
578 lines
20 KiB
C
578 lines
20 KiB
C
#include "bq27220.h"
|
|
#include "bq27220_reg.h"
|
|
#include "bq27220_data_memory.h"
|
|
|
|
#include <furi.h>
|
|
#include <stdbool.h>
|
|
|
|
#define TAG "Gauge"
|
|
|
|
#define BQ27220_ID (0x0220u)
|
|
|
|
/** Delay between 2 writes into Subclass/MAC area. Fails at ~120us. */
|
|
#define BQ27220_MAC_WRITE_DELAY_US (250u)
|
|
|
|
/** Delay between we ask chip to load data to MAC and it become valid. Fails at ~500us. */
|
|
#define BQ27220_SELECT_DELAY_US (1000u)
|
|
|
|
/** Delay between 2 control operations(like unseal or full access). Fails at ~2500us.*/
|
|
#define BQ27220_MAGIC_DELAY_US (5000u)
|
|
|
|
/** Delay before freshly written configuration can be read. Fails at ? */
|
|
#define BQ27220_CONFIG_DELAY_US (10000u)
|
|
|
|
/** Config apply delay. Must wait, or DM read returns garbage. */
|
|
#define BQ27220_CONFIG_APPLY_US (2000000u)
|
|
|
|
/** Timeout for common operations. */
|
|
#define BQ27220_TIMEOUT_COMMON_US (2000000u)
|
|
|
|
/** Timeout for reset operation. Normally reset takes ~2s. */
|
|
#define BQ27220_TIMEOUT_RESET_US (4000000u)
|
|
|
|
/** Timeout cycle interval */
|
|
#define BQ27220_TIMEOUT_CYCLE_INTERVAL_US (1000u)
|
|
|
|
/** Timeout cycles count helper */
|
|
#define BQ27220_TIMEOUT(timeout_us) ((timeout_us) / (BQ27220_TIMEOUT_CYCLE_INTERVAL_US))
|
|
|
|
#ifdef BQ27220_DEBUG
|
|
#define BQ27220_DEBUG_LOG(...) FURI_LOG_D(TAG, ##__VA_ARGS__)
|
|
#else
|
|
#define BQ27220_DEBUG_LOG(...)
|
|
#endif
|
|
|
|
static inline bool bq27220_read_reg(
|
|
FuriHalI2cBusHandle* handle,
|
|
uint8_t address,
|
|
uint8_t* buffer,
|
|
size_t buffer_size) {
|
|
return furi_hal_i2c_trx(
|
|
handle, BQ27220_ADDRESS, &address, 1, buffer, buffer_size, BQ27220_I2C_TIMEOUT);
|
|
}
|
|
|
|
static inline bool bq27220_write(
|
|
FuriHalI2cBusHandle* handle,
|
|
uint8_t address,
|
|
const uint8_t* buffer,
|
|
size_t buffer_size) {
|
|
return furi_hal_i2c_write_mem(
|
|
handle, BQ27220_ADDRESS, address, buffer, buffer_size, BQ27220_I2C_TIMEOUT);
|
|
}
|
|
|
|
static inline bool bq27220_control(FuriHalI2cBusHandle* handle, uint16_t control) {
|
|
return bq27220_write(handle, CommandControl, (uint8_t*)&control, 2);
|
|
}
|
|
|
|
static uint16_t bq27220_read_word(FuriHalI2cBusHandle* handle, uint8_t address) {
|
|
uint16_t buf = BQ27220_ERROR;
|
|
|
|
if(!bq27220_read_reg(handle, address, (uint8_t*)&buf, 2)) {
|
|
FURI_LOG_E(TAG, "bq27220_read_word failed");
|
|
}
|
|
|
|
return buf;
|
|
}
|
|
|
|
static uint8_t bq27220_get_checksum(uint8_t* data, uint16_t len) {
|
|
uint8_t ret = 0;
|
|
for(uint16_t i = 0; i < len; i++) {
|
|
ret += data[i];
|
|
}
|
|
return 0xFF - ret;
|
|
}
|
|
|
|
static bool bq27220_parameter_check(
|
|
FuriHalI2cBusHandle* handle,
|
|
uint16_t address,
|
|
uint32_t value,
|
|
size_t size,
|
|
bool update) {
|
|
furi_assert(size == 1 || size == 2 || size == 4);
|
|
bool ret = false;
|
|
uint8_t buffer[6] = {0};
|
|
uint8_t old_data[4] = {0};
|
|
|
|
do {
|
|
buffer[0] = address & 0xFF;
|
|
buffer[1] = (address >> 8) & 0xFF;
|
|
|
|
for(size_t i = 0; i < size; i++) {
|
|
buffer[1 + size - i] = (value >> (i * 8)) & 0xFF;
|
|
}
|
|
|
|
if(update) {
|
|
// Datasheet contains incorrect procedure for memory update, more info:
|
|
// https://e2e.ti.com/support/power-management-group/power-management/f/power-management-forum/719878/bq27220-technical-reference-manual-sluubd4-is-missing-extended-data-commands-chapter
|
|
// Also see note in the header
|
|
|
|
// Write the address AND the parameter data to 0x3E+ (auto increment)
|
|
if(!bq27220_write(handle, CommandSelectSubclass, buffer, size + 2)) {
|
|
FURI_LOG_E(TAG, "DM write failed");
|
|
break;
|
|
}
|
|
|
|
// We must wait, otherwise write will fail
|
|
furi_delay_us(BQ27220_MAC_WRITE_DELAY_US);
|
|
|
|
// Calculate the check sum: 0xFF - (sum of address and data) OR 0xFF
|
|
uint8_t checksum = bq27220_get_checksum(buffer, size + 2);
|
|
// Write the check sum to 0x60 and the total length of (address + parameter data + check sum + length) to 0x61
|
|
buffer[0] = checksum;
|
|
// 2 bytes address, `size` bytes data, 1 byte check sum, 1 byte length
|
|
buffer[1] = 2 + size + 1 + 1;
|
|
if(!bq27220_write(handle, CommandMACDataSum, buffer, 2)) {
|
|
FURI_LOG_E(TAG, "CRC write failed");
|
|
break;
|
|
}
|
|
// Final wait as in gm.fs specification
|
|
furi_delay_us(BQ27220_CONFIG_DELAY_US);
|
|
ret = true;
|
|
} else {
|
|
if(!bq27220_write(handle, CommandSelectSubclass, buffer, 2)) {
|
|
FURI_LOG_E(TAG, "DM SelectSubclass for read failed");
|
|
break;
|
|
}
|
|
|
|
// bqstudio uses 15ms wait delay here
|
|
furi_delay_us(BQ27220_SELECT_DELAY_US);
|
|
|
|
if(!bq27220_read_reg(handle, CommandMACData, old_data, size)) {
|
|
FURI_LOG_E(TAG, "DM read failed");
|
|
break;
|
|
}
|
|
|
|
// bqstudio uses burst reads with continue(CommandSelectSubclass without argument) and ~5ms between burst
|
|
furi_delay_us(BQ27220_SELECT_DELAY_US);
|
|
|
|
if(*(uint32_t*)&(old_data[0]) != *(uint32_t*)&(buffer[2])) {
|
|
FURI_LOG_E( //-V641
|
|
TAG,
|
|
"Data at 0x%04x(%zu): 0x%08lx!=0x%08lx",
|
|
address,
|
|
size,
|
|
*(uint32_t*)&(old_data[0]),
|
|
*(uint32_t*)&(buffer[2]));
|
|
} else {
|
|
ret = true;
|
|
}
|
|
}
|
|
} while(0);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static bool bq27220_data_memory_check(
|
|
FuriHalI2cBusHandle* handle,
|
|
const BQ27220DMData* data_memory,
|
|
bool update) {
|
|
if(update) {
|
|
const uint16_t cfg_request = Control_ENTER_CFG_UPDATE;
|
|
if(!bq27220_write(
|
|
handle, CommandSelectSubclass, (uint8_t*)&cfg_request, sizeof(cfg_request))) {
|
|
FURI_LOG_E(TAG, "ENTER_CFG_UPDATE command failed");
|
|
return false;
|
|
};
|
|
|
|
// Wait for enter CFG update mode
|
|
uint32_t timeout = BQ27220_TIMEOUT(BQ27220_TIMEOUT_COMMON_US);
|
|
Bq27220OperationStatus operation_status;
|
|
while(--timeout > 0) {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_W(TAG, "Failed to get operation status, retries left %lu", timeout);
|
|
} else if(operation_status.CFGUPDATE) {
|
|
break;
|
|
};
|
|
furi_delay_us(BQ27220_TIMEOUT_CYCLE_INTERVAL_US);
|
|
}
|
|
|
|
if(timeout == 0) {
|
|
FURI_LOG_E(
|
|
TAG,
|
|
"Enter CFGUPDATE mode failed, CFG %u, SEC %u",
|
|
operation_status.CFGUPDATE,
|
|
operation_status.SEC);
|
|
return false;
|
|
}
|
|
BQ27220_DEBUG_LOG("Cycles left: %lu", timeout);
|
|
}
|
|
|
|
// Process data memory records
|
|
bool result = true;
|
|
while(data_memory->type != BQ27220DMTypeEnd) {
|
|
if(data_memory->type == BQ27220DMTypeWait) {
|
|
furi_delay_us(data_memory->value.u32);
|
|
} else if(data_memory->type == BQ27220DMTypeU8) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.u8, 1, update);
|
|
} else if(data_memory->type == BQ27220DMTypeU16) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.u16, 2, update);
|
|
} else if(data_memory->type == BQ27220DMTypeU32) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.u32, 4, update);
|
|
} else if(data_memory->type == BQ27220DMTypeI8) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.i8, 1, update);
|
|
} else if(data_memory->type == BQ27220DMTypeI16) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.i16, 2, update);
|
|
} else if(data_memory->type == BQ27220DMTypeI32) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.i32, 4, update);
|
|
} else if(data_memory->type == BQ27220DMTypeF32) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, data_memory->value.u32, 4, update);
|
|
} else if(data_memory->type == BQ27220DMTypePtr8) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, *(uint8_t*)data_memory->value.u32, 1, update);
|
|
} else if(data_memory->type == BQ27220DMTypePtr16) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, *(uint16_t*)data_memory->value.u32, 2, update);
|
|
} else if(data_memory->type == BQ27220DMTypePtr32) {
|
|
result &= bq27220_parameter_check(
|
|
handle, data_memory->address, *(uint32_t*)data_memory->value.u32, 4, update);
|
|
} else {
|
|
furi_crash("Invalid DM Type");
|
|
}
|
|
data_memory++;
|
|
}
|
|
|
|
// Finalize configuration update
|
|
if(update && result) {
|
|
bq27220_control(handle, Control_EXIT_CFG_UPDATE_REINIT);
|
|
|
|
// Wait for gauge to apply new configuration
|
|
furi_delay_us(BQ27220_CONFIG_APPLY_US);
|
|
|
|
// ensure that we exited config update mode
|
|
uint32_t timeout = BQ27220_TIMEOUT(BQ27220_TIMEOUT_COMMON_US);
|
|
Bq27220OperationStatus operation_status;
|
|
while(--timeout > 0) {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_W(TAG, "Failed to get operation status, retries left %lu", timeout);
|
|
} else if(operation_status.CFGUPDATE != true) {
|
|
break;
|
|
}
|
|
furi_delay_us(BQ27220_TIMEOUT_CYCLE_INTERVAL_US);
|
|
}
|
|
|
|
// Check timeout
|
|
if(timeout == 0) {
|
|
FURI_LOG_E(TAG, "Exit CFGUPDATE mode failed");
|
|
return false;
|
|
}
|
|
BQ27220_DEBUG_LOG("Cycles left: %lu", timeout);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
bool bq27220_init(FuriHalI2cBusHandle* handle, const BQ27220DMData* data_memory) {
|
|
bool result = false;
|
|
bool reset_and_provisioning_required = false;
|
|
|
|
do {
|
|
// Request device number(chip PN)
|
|
BQ27220_DEBUG_LOG("Checking device ID");
|
|
if(!bq27220_control(handle, Control_DEVICE_NUMBER)) {
|
|
FURI_LOG_E(TAG, "ID: Device is not responding");
|
|
break;
|
|
};
|
|
// Enterprise wait(MAC read fails if less than 500us)
|
|
// bqstudio uses ~15ms
|
|
furi_delay_us(BQ27220_SELECT_DELAY_US);
|
|
// Read id data from MAC scratch space
|
|
uint16_t data = bq27220_read_word(handle, CommandMACData);
|
|
if(data != BQ27220_ID) {
|
|
FURI_LOG_E(TAG, "Invalid Device Number %04x != 0x0220", data);
|
|
break;
|
|
}
|
|
|
|
// Unseal device since we are going to read protected configuration
|
|
BQ27220_DEBUG_LOG("Unsealing");
|
|
if(!bq27220_unseal(handle)) {
|
|
break;
|
|
}
|
|
|
|
// Try to recover gauge from forever init
|
|
BQ27220_DEBUG_LOG("Checking initialization status");
|
|
Bq27220OperationStatus operation_status;
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Failed to get operation status");
|
|
break;
|
|
}
|
|
if(!operation_status.INITCOMP || operation_status.CFGUPDATE) {
|
|
FURI_LOG_E(TAG, "Incorrect state, reset needed");
|
|
reset_and_provisioning_required = true;
|
|
}
|
|
|
|
// Ensure correct profile is selected
|
|
BQ27220_DEBUG_LOG("Checking chosen profile");
|
|
Bq27220ControlStatus control_status;
|
|
if(!bq27220_get_control_status(handle, &control_status)) {
|
|
FURI_LOG_E(TAG, "Failed to get control status");
|
|
break;
|
|
}
|
|
if(control_status.BATT_ID != 0) {
|
|
FURI_LOG_E(TAG, "Incorrect profile, reset needed");
|
|
reset_and_provisioning_required = true;
|
|
}
|
|
|
|
// Ensure correct configuration loaded into gauge DataMemory
|
|
// Only if reset is not required, otherwise we don't
|
|
if(!reset_and_provisioning_required) {
|
|
BQ27220_DEBUG_LOG("Checking data memory");
|
|
if(!bq27220_data_memory_check(handle, data_memory, false)) {
|
|
FURI_LOG_E(TAG, "Incorrect configuration data, reset needed");
|
|
reset_and_provisioning_required = true;
|
|
}
|
|
}
|
|
|
|
// Reset needed
|
|
if(reset_and_provisioning_required) {
|
|
FURI_LOG_W(TAG, "Resetting device");
|
|
if(!bq27220_reset(handle)) {
|
|
FURI_LOG_E(TAG, "Failed to reset device");
|
|
break;
|
|
}
|
|
|
|
// Get full access to read and modify parameters
|
|
// Also it looks like this step is totally unnecessary
|
|
BQ27220_DEBUG_LOG("Acquiring Full Access");
|
|
if(!bq27220_full_access(handle)) {
|
|
break;
|
|
}
|
|
|
|
// Update memory
|
|
FURI_LOG_W(TAG, "Updating data memory");
|
|
bq27220_data_memory_check(handle, data_memory, true);
|
|
if(!bq27220_data_memory_check(handle, data_memory, false)) {
|
|
FURI_LOG_E(TAG, "Data memory update failed");
|
|
break;
|
|
}
|
|
}
|
|
|
|
BQ27220_DEBUG_LOG("Sealing");
|
|
if(!bq27220_seal(handle)) {
|
|
FURI_LOG_E(TAG, "Seal failed");
|
|
break;
|
|
}
|
|
|
|
result = true;
|
|
} while(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
bool bq27220_reset(FuriHalI2cBusHandle* handle) {
|
|
bool result = false;
|
|
do {
|
|
if(!bq27220_control(handle, Control_RESET)) {
|
|
FURI_LOG_E(TAG, "Reset request failed");
|
|
break;
|
|
};
|
|
|
|
uint32_t timeout = BQ27220_TIMEOUT(BQ27220_TIMEOUT_RESET_US);
|
|
Bq27220OperationStatus operation_status;
|
|
while(--timeout > 0) {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_W(TAG, "Failed to get operation status, retries left %lu", timeout);
|
|
} else if(operation_status.INITCOMP == true) {
|
|
break;
|
|
};
|
|
furi_delay_us(BQ27220_TIMEOUT_CYCLE_INTERVAL_US);
|
|
}
|
|
|
|
if(timeout == 0) {
|
|
FURI_LOG_E(TAG, "INITCOMP timeout after reset");
|
|
break;
|
|
}
|
|
BQ27220_DEBUG_LOG("Cycles left: %lu", timeout);
|
|
|
|
result = true;
|
|
} while(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
bool bq27220_seal(FuriHalI2cBusHandle* handle) {
|
|
Bq27220OperationStatus operation_status = {0};
|
|
bool result = false;
|
|
do {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Status query failed");
|
|
break;
|
|
}
|
|
if(operation_status.SEC == Bq27220OperationStatusSecSealed) {
|
|
result = true;
|
|
break;
|
|
}
|
|
|
|
if(!bq27220_control(handle, Control_SEALED)) {
|
|
FURI_LOG_E(TAG, "Seal request failed");
|
|
break;
|
|
}
|
|
|
|
furi_delay_us(BQ27220_SELECT_DELAY_US);
|
|
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Status query failed");
|
|
break;
|
|
}
|
|
if(operation_status.SEC != Bq27220OperationStatusSecSealed) {
|
|
FURI_LOG_E(TAG, "Seal failed");
|
|
break;
|
|
}
|
|
|
|
result = true;
|
|
} while(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
bool bq27220_unseal(FuriHalI2cBusHandle* handle) {
|
|
Bq27220OperationStatus operation_status = {0};
|
|
bool result = false;
|
|
do {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Status query failed");
|
|
break;
|
|
}
|
|
if(operation_status.SEC != Bq27220OperationStatusSecSealed) {
|
|
result = true;
|
|
break;
|
|
}
|
|
|
|
// Hai, Kazuma desu
|
|
bq27220_control(handle, UnsealKey1);
|
|
furi_delay_us(BQ27220_MAGIC_DELAY_US);
|
|
bq27220_control(handle, UnsealKey2);
|
|
furi_delay_us(BQ27220_MAGIC_DELAY_US);
|
|
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Status query failed");
|
|
break;
|
|
}
|
|
if(operation_status.SEC != Bq27220OperationStatusSecUnsealed) {
|
|
FURI_LOG_E(TAG, "Unseal failed %u", operation_status.SEC);
|
|
break;
|
|
}
|
|
|
|
result = true;
|
|
} while(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
bool bq27220_full_access(FuriHalI2cBusHandle* handle) {
|
|
bool result = false;
|
|
|
|
do {
|
|
uint32_t timeout = BQ27220_TIMEOUT(BQ27220_TIMEOUT_COMMON_US);
|
|
Bq27220OperationStatus operation_status;
|
|
while(--timeout > 0) {
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_W(TAG, "Failed to get operation status, retries left %lu", timeout);
|
|
} else {
|
|
break;
|
|
};
|
|
furi_delay_us(BQ27220_TIMEOUT_CYCLE_INTERVAL_US);
|
|
}
|
|
|
|
if(timeout == 0) {
|
|
FURI_LOG_E(TAG, "Failed to get operation status");
|
|
break;
|
|
}
|
|
BQ27220_DEBUG_LOG("Cycles left: %lu", timeout);
|
|
|
|
// Already full access
|
|
if(operation_status.SEC == Bq27220OperationStatusSecFull) {
|
|
result = true;
|
|
break;
|
|
}
|
|
// Must be unsealed to get full access
|
|
if(operation_status.SEC != Bq27220OperationStatusSecUnsealed) {
|
|
FURI_LOG_E(TAG, "Not in unsealed state");
|
|
break;
|
|
}
|
|
|
|
// Explosion!!!
|
|
bq27220_control(handle, FullAccessKey); //-V760
|
|
furi_delay_us(BQ27220_MAGIC_DELAY_US);
|
|
bq27220_control(handle, FullAccessKey);
|
|
furi_delay_us(BQ27220_MAGIC_DELAY_US);
|
|
|
|
if(!bq27220_get_operation_status(handle, &operation_status)) {
|
|
FURI_LOG_E(TAG, "Status query failed");
|
|
break;
|
|
}
|
|
if(operation_status.SEC != Bq27220OperationStatusSecFull) {
|
|
FURI_LOG_E(TAG, "Full access failed %u", operation_status.SEC);
|
|
break;
|
|
}
|
|
|
|
result = true;
|
|
} while(0);
|
|
|
|
return result;
|
|
}
|
|
|
|
uint16_t bq27220_get_voltage(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandVoltage);
|
|
}
|
|
|
|
int16_t bq27220_get_current(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandCurrent);
|
|
}
|
|
|
|
bool bq27220_get_control_status(FuriHalI2cBusHandle* handle, Bq27220ControlStatus* control_status) {
|
|
return bq27220_read_reg(handle, CommandControl, (uint8_t*)control_status, 2);
|
|
}
|
|
|
|
bool bq27220_get_battery_status(FuriHalI2cBusHandle* handle, Bq27220BatteryStatus* battery_status) {
|
|
return bq27220_read_reg(handle, CommandBatteryStatus, (uint8_t*)battery_status, 2);
|
|
}
|
|
|
|
bool bq27220_get_operation_status(
|
|
FuriHalI2cBusHandle* handle,
|
|
Bq27220OperationStatus* operation_status) {
|
|
return bq27220_read_reg(handle, CommandOperationStatus, (uint8_t*)operation_status, 2);
|
|
}
|
|
|
|
bool bq27220_get_gauging_status(FuriHalI2cBusHandle* handle, Bq27220GaugingStatus* gauging_status) {
|
|
// Request gauging data to be loaded to MAC
|
|
if(!bq27220_control(handle, Control_GAUGING_STATUS)) {
|
|
FURI_LOG_E(TAG, "DM SelectSubclass for read failed");
|
|
return false;
|
|
}
|
|
// Wait for data being loaded to MAC
|
|
furi_delay_us(BQ27220_SELECT_DELAY_US);
|
|
// Read id data from MAC scratch space
|
|
return bq27220_read_reg(handle, CommandMACData, (uint8_t*)gauging_status, 2);
|
|
}
|
|
|
|
uint16_t bq27220_get_temperature(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandTemperature);
|
|
}
|
|
|
|
uint16_t bq27220_get_full_charge_capacity(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandFullChargeCapacity);
|
|
}
|
|
|
|
uint16_t bq27220_get_design_capacity(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandDesignCapacity);
|
|
}
|
|
|
|
uint16_t bq27220_get_remaining_capacity(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandRemainingCapacity);
|
|
}
|
|
|
|
uint16_t bq27220_get_state_of_charge(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandStateOfCharge);
|
|
}
|
|
|
|
uint16_t bq27220_get_state_of_health(FuriHalI2cBusHandle* handle) {
|
|
return bq27220_read_word(handle, CommandStateOfHealth);
|
|
}
|