renesas-ra/machine_i2c: Remove unnecessary start/stop dummy functions.

The code in extmod/machine_i2c.c will check for NULL slots and raise an
appropriate exception.

Signed-off-by: Damien George <damien@micropython.org>
pull/10047/head
Damien George 2022-06-17 14:58:42 +10:00
rodzic dea1ba3309
commit 49c23ac08f
1 zmienionych plików z 0 dodań i 12 usunięć

Wyświetl plik

@ -150,22 +150,10 @@ STATIC int machine_i2c_transfer_single(mp_obj_base_t *self_in, uint16_t addr, si
return ret;
}
STATIC int machine_i2c_start(mp_obj_base_t *self) {
mp_raise_NotImplementedError(MP_ERROR_TEXT("start is not supported."));
return 0;
}
STATIC int machine_i2c_stop(mp_obj_base_t *self) {
mp_raise_NotImplementedError(MP_ERROR_TEXT("start is not supported."));
return 0;
}
STATIC const mp_machine_i2c_p_t machine_i2c_p = {
.init = machine_i2c_init,
.transfer = mp_machine_i2c_transfer_adaptor,
.transfer_single = machine_i2c_transfer_single,
.start = machine_i2c_start,
.stop = machine_i2c_stop,
};
const mp_obj_type_t machine_i2c_type = {