diff options
| author | Dan Halbert <halbert@halwitz.org> | 2020-11-16 12:06:11 -0500 |
|---|---|---|
| committer | Dan Halbert <halbert@halwitz.org> | 2020-11-16 12:06:11 -0500 |
| commit | ffff02c053ff7975dc6a6c5ef5b5f424f0b04dad (patch) | |
| tree | f047d2cdff36da8191a3682839d41229a32c8a77 /ports/stm | |
| parent | bb77f1d130d59428b66186fc52c2749531ff598e (diff) | |
| parent | f2e911ad91db7c04673e76c884abbc19494a4e7f (diff) | |
Merge remote-tracking branch 'adafruit/main' into sleep
Diffstat (limited to 'ports/stm')
| -rw-r--r-- | ports/stm/common-hal/displayio/ParallelBus.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ports/stm/common-hal/displayio/ParallelBus.c b/ports/stm/common-hal/displayio/ParallelBus.c index 314b72ff7..fd07d38af 100644 --- a/ports/stm/common-hal/displayio/ParallelBus.c +++ b/ports/stm/common-hal/displayio/ParallelBus.c @@ -57,7 +57,8 @@ bool common_hal_displayio_parallelbus_begin_transaction(mp_obj_t obj) { return false; } -void common_hal_displayio_parallelbus_send(mp_obj_t obj, display_byte_type_t byte_type, display_chip_select_behavior_t chip_select, uint8_t *data, uint32_t data_length) { +void common_hal_displayio_parallelbus_send(mp_obj_t obj, display_byte_type_t byte_type, + display_chip_select_behavior_t chip_select, const uint8_t *data, uint32_t data_length) { } |
