diff options
| author | Melissa LeBlanc-Williams <melissa@melissagirl.com> | 2019-04-05 11:11:27 -0700 |
|---|---|---|
| committer | Melissa LeBlanc-Williams <melissa@melissagirl.com> | 2019-04-05 11:11:27 -0700 |
| commit | 97baa7899fdc4dc95ba122e6e865661261dea995 (patch) | |
| tree | d19d914a6bd2b0c248ba7242cdbfed6a1c3497a5 /shared-module/displayio | |
| parent | 7872a33f8bc5c6c4d6a4e08bdf87c93858f9a13d (diff) | |
Added comment regarding parameter loop
Diffstat (limited to 'shared-module/displayio')
| -rw-r--r-- | shared-module/displayio/Display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-module/displayio/Display.c b/shared-module/displayio/Display.c index 34202aa45..28df062f8 100644 --- a/shared-module/displayio/Display.c +++ b/shared-module/displayio/Display.c @@ -84,6 +84,7 @@ void common_hal_displayio_display_construct(displayio_display_obj_t* self, uint8_t *data = cmd + 2; self->send(self->bus, true, cmd, 1); if (self->data_as_commands) { + // Loop through each parameter to force a CS toggle for (uint32_t j=0; j < data_size; j++) { self->send(self->bus, true, data + j, 1); } |
