diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-04-03 10:59:06 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-04-14 18:24:58 -0500 |
| commit | baf04b7738bdcf234eecad9e03904c1cadc44f50 (patch) | |
| tree | d3725a538e785ad19119bd87091eb1bffc20c2ac /shared-bindings/framebufferio/FramebufferDisplay.h | |
| parent | 50219862e13f60aadb0515a01131d7909bb07def (diff) | |
FramebufferDisplay: remove probably not needed constructor arguments
Diffstat (limited to 'shared-bindings/framebufferio/FramebufferDisplay.h')
| -rw-r--r-- | shared-bindings/framebufferio/FramebufferDisplay.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shared-bindings/framebufferio/FramebufferDisplay.h b/shared-bindings/framebufferio/FramebufferDisplay.h index af0bd2c41..b63439e0c 100644 --- a/shared-bindings/framebufferio/FramebufferDisplay.h +++ b/shared-bindings/framebufferio/FramebufferDisplay.h @@ -40,9 +40,8 @@ extern const mp_obj_type_t framebufferio_framebufferdisplay_type; void common_hal_framebufferio_framebufferdisplay_construct(framebufferio_framebufferdisplay_obj_t* self, mp_obj_t framebuffer, uint16_t width, uint16_t height, - int16_t colstart, int16_t rowstart, - uint16_t rotation, uint16_t color_depth, bool grayscale, bool pixels_in_byte_share_row, - uint8_t bytes_per_cell, bool reverse_pixels_in_byte, bool reverse_bytes_in_word, + uint16_t rotation, uint16_t color_depth, + uint8_t bytes_per_cell, const mcu_pin_obj_t* backlight_pin, mp_float_t brightness, bool auto_brightness, bool auto_refresh, uint16_t native_frames_per_second); |
