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 std::vector<uint8_t> buf(num_bytes);
23 for (uint8_t i = 0; i <
len; i++) {
24 const uint8_t j = 3 * i;
25 uint8_t crc =
sht_crc_(buf[j], buf[j + 1]);
26 if (crc != buf[j + 2]) {
27 ESP_LOGE(TAG,
"CRC8 Checksum invalid at pos %d! 0x%02X != 0x%02X", i, buf[j + 2], crc);
41 uint8_t temp_stack[BUFFER_STACK_SIZE];
42 std::unique_ptr<uint8_t[]> temp_heap;
44 size_t required_buffer_len = data_len * 3 + 2;
47 if (required_buffer_len >= BUFFER_STACK_SIZE) {
48 temp_heap = std::unique_ptr<uint8_t[]>(
new uint8_t[required_buffer_len]);
49 temp = temp_heap.get();
55 if (command_len == 1) {
56 temp[raw_idx++] = command & 0xFF;
59#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
60 temp[raw_idx++] = command >> 8;
61 temp[raw_idx++] = command & 0xFF;
63 temp[raw_idx++] = command & 0xFF;
64 temp[raw_idx++] = command >> 8;
69 for (
size_t i = 0; i < data_len; i++) {
70#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
71 temp[raw_idx++] = data[i] >> 8;
72 temp[raw_idx++] = data[i] & 0xFF;
74 temp[raw_idx++] = data[i] & 0xFF;
75 temp[raw_idx++] = data[i] >> 8;
86 ESP_LOGE(TAG,
"Failed to write i2c register=0x%X (%d) err=%d,",
reg, command_len, this->
last_error_);
92 ESP_LOGE(TAG,
"Failed to read data from register=0x%X err=%d,",
reg, this->
last_error_);
101#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
106 for (bit = 8; bit > 0; --bit) {
113#if __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__
118 for (bit = 8; bit > 0; --bit) {
ErrorCode write(const uint8_t *data, size_t len, bool stop=true)
writes an array of bytes to a device using an I2CBus
I2CRegister reg(uint8_t a_register)
calls the I2CRegister constructor
ErrorCode read(uint8_t *data, size_t len)
reads an array of bytes from the device using an I2CBus
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
uint8_t sht_crc_(uint16_t data)
8-bit CRC checksum that is transmitted after each data word for read and write 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.
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)