summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/Display.c
diff options
context:
space:
mode:
authorMelissa LeBlanc-Williams <melissa@melissagirl.com>2019-03-23 18:53:04 -0700
committerMelissa LeBlanc-Williams <melissa@melissagirl.com>2019-03-23 18:53:04 -0700
commit2bb63cbeb351a93fba1f15d201d01fc608b42c53 (patch)
treedddf8857ec3fe7eae6ef9297de8cf92b806d10ca /shared-bindings/displayio/Display.c
parentfadb5a102426182f1412adbbe9d57268882f8b5f (diff)
Added new parameter description in displayio RTD comment
Diffstat (limited to 'shared-bindings/displayio/Display.c')
-rw-r--r--shared-bindings/displayio/Display.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/shared-bindings/displayio/Display.c b/shared-bindings/displayio/Display.c
index 3f5eef34a..7f98ea8c0 100644
--- a/shared-bindings/displayio/Display.c
+++ b/shared-bindings/displayio/Display.c
@@ -91,6 +91,7 @@
//| :param int write_ram_command: Command used to write pixels values into the update region
//| :param int set_vertical_scroll: Command used to set the first row to show
//| :param microcontroller.Pin backlight_pin: Pin connected to the display's backlight
+//| :param bool init_cs_toggle: Toggle the Chip Select between each initialization command.
//|
STATIC mp_obj_t displayio_display_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_init_cs_toggle };