Skip to content

Commit

Permalink
Fix I2C driver configuration logging
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperChamp234 committed Feb 1, 2024
1 parent b242263 commit 5dccd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/i2cdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ static esp_err_t i2c_setup_port(const i2c_dev_t *dev)
states[dev->port].installed = true;

memcpy(&states[dev->port].config, &temp, sizeof(i2c_config_t));
ESP_LOGD(TAG, "I2C driver successfully reconfigured on port %d", (int)dev->port);
ESP_LOGD(TAG, "I2C driver successfully reconfigured on port %d", dev->port);
}
#if HELPER_TARGET_IS_ESP32
int t;
Expand Down

0 comments on commit 5dccd42

Please sign in to comment.