8namespace sensirion_common {
10static const char *
const TAG =
"sensirion_i2c";
12static const size_t BUFFER_STACK_SIZE = 16;
15 const uint8_t num_bytes =
len * 3;
16 uint8_t buf[num_bytes];
23 for (uint8_t i = 0; i <
len; i++) {
24 const uint8_t j = 3 * i;
26 uint8_t crc =
crc8(&buf[j], 2, 0xFF, CRC_POLYNOMIAL,
true);
27 if (crc != buf[j + 2]) {
28 ESP_LOGE(TAG,
"CRC invalid @ %d! 0x%02X != 0x%02X", i, buf[j + 2], crc);
41 const uint8_t data_len) {
42 uint8_t temp_stack[BUFFER_STACK_SIZE];
43 std::unique_ptr<uint8_t[]> temp_heap;
45 size_t required_buffer_len = data_len * 3 + 2;
48 if (required_buffer_len >= BUFFER_STACK_SIZE) {
49 temp_heap = std::unique_ptr<uint8_t[]>(
new uint8_t[required_buffer_len]);
50 temp = temp_heap.get();
56 if (command_len == 1) {
57 temp[raw_idx++] = command & 0xFF;
60#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
61 temp[raw_idx++] = command >> 8;
62 temp[raw_idx++] = command & 0xFF;
64 temp[raw_idx++] = command & 0xFF;
65 temp[raw_idx++] = command >> 8;
70 for (
size_t i = 0; i < data_len; i++) {
71#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
72 temp[raw_idx++] =
data[i] >> 8;
73 temp[raw_idx++] =
data[i] & 0xFF;
75 temp[raw_idx++] =
data[i] & 0xFF;
76 temp[raw_idx++] =
data[i] >> 8;
79 temp[raw_idx++] =
crc8(&temp[raw_idx - 2], 2, 0xFF, CRC_POLYNOMIAL,
true);
86 const uint8_t delay_ms) {
88 ESP_LOGE(TAG,
"Write failed: reg=0x%X (%d) err=%d,",
reg, command_len, this->
last_error_);
94 ESP_LOGE(TAG,
"Read failed: reg=0x%X err=%d,",
reg, this->
last_error_);
ErrorCode write(const uint8_t *data, size_t len) const
writes an array of bytes to a device using an I2CBus
ErrorCode read(uint8_t *data, size_t len) const
reads an array of bytes from the device using an I2CBus
I2CRegister reg(uint8_t a_register)
calls the I2CRegister constructor
bool get_register_(uint16_t reg, CommandLen command_len, uint16_t *data, uint8_t len, uint8_t delay)
get data words from I2C register.
i2c::ErrorCode last_error_
last error code from I2C operation
bool read_data(uint16_t *data, uint8_t len)
Read data words from I2C device.
bool write_command_(uint16_t command, CommandLen command_len, const uint16_t *data, uint8_t data_len)
Write a command with arguments as words.
@ ERROR_CRC
bytes received with a CRC error
@ ERROR_OK
No error found during execution of method.
Providing packet encoding functions for exchanging data with a remote host.
uint8_t crc8(const uint8_t *data, uint8_t len, uint8_t crc, uint8_t poly, bool msb_first)
Calculate a CRC-8 checksum of data with size len.
constexpr uint16_t encode_uint16(uint8_t msb, uint8_t lsb)
Encode a 16-bit value given the most and least significant byte.
void IRAM_ATTR HOT delay(uint32_t ms)