diff options
| author | Scott Shawcroft <scott@tannewt.org> | 2019-08-21 11:49:49 -0700 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2019-08-22 14:23:33 -0700 |
| commit | 3a98de12368a63de1538f61da7690e9fa230b540 (patch) | |
| tree | 52f304d2cf5168d14277b23510f33f5d01e430ab /shared-bindings/displayio/ParallelBus.h | |
| parent | 24b30965c41ae32b82c56b166f3287cf2c14f419 (diff) | |
Add reset() to display busses to detect whether it works
Diffstat (limited to 'shared-bindings/displayio/ParallelBus.h')
| -rw-r--r-- | shared-bindings/displayio/ParallelBus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shared-bindings/displayio/ParallelBus.h b/shared-bindings/displayio/ParallelBus.h index b8da91041..a0f967332 100644 --- a/shared-bindings/displayio/ParallelBus.h +++ b/shared-bindings/displayio/ParallelBus.h @@ -40,7 +40,7 @@ void common_hal_displayio_parallelbus_construct(displayio_parallelbus_obj_t* sel void common_hal_displayio_parallelbus_deinit(displayio_parallelbus_obj_t* self); -void common_hal_displayio_parallelbus_reset(mp_obj_t self); +bool common_hal_displayio_parallelbus_reset(mp_obj_t self); bool common_hal_displayio_parallelbus_bus_free(mp_obj_t self); bool common_hal_displayio_parallelbus_begin_transaction(mp_obj_t self); |
