diff options
Diffstat (limited to 'code/esp32/components/eos/bq25895.c')
-rw-r--r-- | code/esp32/components/eos/bq25895.c | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/code/esp32/components/eos/bq25895.c b/code/esp32/components/eos/bq25895.c new file mode 100644 index 0000000..24d8686 --- /dev/null +++ b/code/esp32/components/eos/bq25895.c @@ -0,0 +1,31 @@ +#include <stdio.h> +#include <esp_log.h> + +#include "eos.h" +#include "i2c.h" + +static const char *TAG = "BQ25895"; + +#define BQ25895_ADDR 0x6A + +/** + * @brief test function to show buffer + */ +static void disp_buf(uint8_t *buf, int len) +{ + int i; + for (i = 0; i < len; i++) { + printf("%02x ", buf[i]); + if ((i + 1) % 16 == 0) { + printf("\n"); + } + } + printf("\n"); +} + +void eos_bq25895_set_ilim(void) { + uint8_t data = 0; + eos_i2c_write8(BQ25895_ADDR, 0, 0x3E); + data = eos_i2c_read8(BQ25895_ADDR, 0); + ESP_LOGI(TAG, "BUFFER: %02x", data); +}
\ No newline at end of file |