extmod/machine_i2c: Allow mp_hal_pin_obj_t to be any type, not a ptr.

This commit is contained in:
Damien George
2016-04-22 09:56:02 +01:00
parent 109990fc32
commit 624738ca64
3 changed files with 4 additions and 4 deletions

View File

@@ -37,8 +37,8 @@
typedef struct _machine_i2c_obj_t {
mp_obj_base_t base;
uint32_t us_delay;
mp_hal_pin_obj_t *scl;
mp_hal_pin_obj_t *sda;
mp_hal_pin_obj_t scl;
mp_hal_pin_obj_t sda;
} machine_i2c_obj_t;
STATIC void mp_hal_i2c_delay(machine_i2c_obj_t *self) {