We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd28341 commit af64faaCopy full SHA for af64faa
ports/espressif/common-hal/i2ctarget/I2CTarget.c
@@ -54,7 +54,7 @@ void common_hal_i2ctarget_i2c_target_construct(i2ctarget_i2c_target_obj_t *self,
54
self->i2c_num = peripherals_i2c_get_free_num();
55
56
if (self->i2c_num == I2C_NUM_MAX) {
57
- mp_raise_ValueError(translate("All I2C targets are in use"));
+ mp_raise_ValueError(translate("All I2C peripherals are in use"));
58
}
59
60
const i2c_config_t i2c_conf = {
0 commit comments