2026-07-18 00:38:46 +02:00

18 lines
254 B
C

// SPDX-License-Identifier: Apache-2.0
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
struct Bq27220Config {
// Devicetree address hint (0x55 on the LilyGO T-Deck Max).
uint8_t address;
};
#ifdef __cplusplus
}
#endif