|
|
@ -650,6 +650,10 @@ STATIC mp_obj_t pyb_i2c_make_new(const mp_obj_type_t *type, size_t n_args, size_ |
|
|
|
} else if (strcmp(port, MICROPY_HW_I2C3_NAME) == 0) { |
|
|
|
i2c_id = 3; |
|
|
|
#endif |
|
|
|
#ifdef MICROPY_HW_I2C4_NAME |
|
|
|
} else if (strcmp(port, MICROPY_HW_I2C4_NAME) == 0) { |
|
|
|
i2c_id = 4; |
|
|
|
#endif |
|
|
|
} else { |
|
|
|
nlr_raise(mp_obj_new_exception_msg_varg(&mp_type_ValueError, |
|
|
|
"I2C(%s) doesn't exist", port)); |
|
|
|