Skip to content

Commit

Permalink
fix spi include in fourwire. validate i2c_bus in I2CDisplay
Browse files Browse the repository at this point in the history
  • Loading branch information
FoamyGuy committed Oct 9, 2021
1 parent e8a2e4a commit b799b2e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions shared-bindings/displayio/FourWire.c
Expand Up @@ -32,6 +32,7 @@
#include "py/binary.h"
#include "py/objproperty.h"
#include "py/runtime.h"
#include "shared-bindings/busio/SPI.h"
#include "shared-bindings/displayio/Group.h"
#include "shared-bindings/microcontroller/Pin.h"
#include "shared-bindings/util.h"
Expand Down
3 changes: 2 additions & 1 deletion shared-bindings/displayio/I2CDisplay.c
Expand Up @@ -34,6 +34,7 @@
#include "py/objproperty.h"
#include "py/runtime.h"
#include "shared-bindings/microcontroller/Pin.h"
#include "shared-bindings/busio/I2C.h"
#include "shared-bindings/util.h"
#include "shared-module/displayio/__init__.h"
#include "supervisor/shared/translate.h"
Expand Down Expand Up @@ -67,7 +68,7 @@ STATIC mp_obj_t displayio_i2cdisplay_make_new(const mp_obj_type_t *type, size_t

mcu_pin_obj_t *reset = validate_obj_is_free_pin_or_none(args[ARG_reset].u_obj);

mp_obj_t i2c = args[ARG_i2c_bus].u_obj;
mp_obj_t i2c = mp_arg_validate_type(args[ARG_i2c_bus].u_obj, &busio_i2c_type, MP_QSTR_i2c_bus);
displayio_i2cdisplay_obj_t *self = &allocate_display_bus_or_raise()->i2cdisplay_bus;
self->base.type = &displayio_i2cdisplay_type;

Expand Down

0 comments on commit b799b2e

Please sign in to comment.