Changes to compile cleanly
This commit is contained in:
parent
08189edf24
commit
5536e574db
|
@ -80,6 +80,7 @@ TAGS
|
||||||
*.mo
|
*.mo
|
||||||
|
|
||||||
.vscode
|
.vscode
|
||||||
|
.idea
|
||||||
|
|
||||||
# Python Virtual Environments
|
# Python Virtual Environments
|
||||||
####################
|
####################
|
||||||
|
|
|
@ -112,7 +112,7 @@
|
||||||
//| ...
|
//| ...
|
||||||
//|
|
//|
|
||||||
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) {
|
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_grayscale, ARG_pixels_in_byte_share_row, ARG_bytes_per_cell, ARG_reverse_pixels_in_byte, ARG_reverse_bytes_in_word, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_brightness_command, ARG_brightness, ARG_auto_brightness, ARG_single_byte_bounds, ARG_data_as_commands, ARG_auto_refresh, ARG_native_frames_per_second, ARG_backlight_on_high };
|
enum { ARG_display_bus, ARG_init_sequence, ARG_width, ARG_height, ARG_colstart, ARG_rowstart, ARG_rotation, ARG_color_depth, ARG_grayscale, ARG_pixels_in_byte_share_row, ARG_bytes_per_cell, ARG_reverse_pixels_in_byte, ARG_reverse_bytes_in_word, ARG_set_column_command, ARG_set_row_command, ARG_write_ram_command, ARG_set_vertical_scroll, ARG_backlight_pin, ARG_brightness_command, ARG_brightness, ARG_auto_brightness, ARG_single_byte_bounds, ARG_data_as_commands, ARG_auto_refresh, ARG_native_frames_per_second, ARG_backlight_on_high, ARG_column_and_page_addressing };
|
||||||
static const mp_arg_t allowed_args[] = {
|
static const mp_arg_t allowed_args[] = {
|
||||||
{ MP_QSTR_display_bus, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
{ MP_QSTR_display_bus, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
||||||
{ MP_QSTR_init_sequence, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
{ MP_QSTR_init_sequence, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
||||||
|
|
|
@ -288,7 +288,9 @@ STATIC bool _refresh_area(displayio_display_obj_t* self, const displayio_area_t*
|
||||||
}
|
}
|
||||||
remaining_rows -= rows_per_buffer;
|
remaining_rows -= rows_per_buffer;
|
||||||
|
|
||||||
displayio_display_core_set_region_to_update(&self->core, self->set_column_command, self->set_row_command, NO_COMMAND, NO_COMMAND, self->data_as_commands, false, &subrectangle);
|
displayio_display_core_set_region_to_update(&self->core, self->set_column_command,
|
||||||
|
self->set_row_command, NO_COMMAND, NO_COMMAND, self->data_as_commands, false,
|
||||||
|
&subrectangle, self->column_and_page_addressing);
|
||||||
|
|
||||||
uint16_t subrectangle_size_bytes;
|
uint16_t subrectangle_size_bytes;
|
||||||
if (self->core.colorspace.depth >= 8) {
|
if (self->core.colorspace.depth >= 8) {
|
||||||
|
|
|
@ -239,7 +239,9 @@ bool displayio_epaperdisplay_refresh_area(displayio_epaperdisplay_obj_t* self, c
|
||||||
uint16_t remaining_rows = displayio_area_height(&clipped);
|
uint16_t remaining_rows = displayio_area_height(&clipped);
|
||||||
|
|
||||||
if (self->set_row_window_command != NO_COMMAND) {
|
if (self->set_row_window_command != NO_COMMAND) {
|
||||||
displayio_display_core_set_region_to_update(&self->core, self->set_column_window_command, self->set_row_window_command, self->set_current_column_command, self->set_current_row_command, false, self->chip_select, &clipped);
|
displayio_display_core_set_region_to_update(&self->core, self->set_column_window_command,
|
||||||
|
self->set_row_window_command, self->set_current_column_command, self->set_current_row_command,
|
||||||
|
false, self->chip_select, &clipped, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t write_command = self->write_black_ram_command;
|
uint8_t write_command = self->write_black_ram_command;
|
||||||
|
|
|
@ -208,7 +208,10 @@ void displayio_display_core_end_transaction(displayio_display_core_t* self) {
|
||||||
self->end_transaction(self->bus);
|
self->end_transaction(self->bus);
|
||||||
}
|
}
|
||||||
|
|
||||||
void displayio_display_core_set_region_to_update(displayio_display_core_t* self, uint8_t column_command, uint8_t row_command, uint16_t set_current_column_command, uint16_t set_current_row_command, bool data_as_commands, bool always_toggle_chip_select, displayio_area_t* area) {
|
void displayio_display_core_set_region_to_update(displayio_display_core_t* self, uint8_t column_command,
|
||||||
|
uint8_t row_command, uint16_t set_current_column_command, uint16_t set_current_row_command,
|
||||||
|
bool data_as_commands, bool always_toggle_chip_select,
|
||||||
|
displayio_area_t* area, bool column_and_page_addressing) {
|
||||||
uint16_t x1 = area->x1;
|
uint16_t x1 = area->x1;
|
||||||
uint16_t x2 = area->x2;
|
uint16_t x2 = area->x2;
|
||||||
uint16_t y1 = area->y1;
|
uint16_t y1 = area->y1;
|
||||||
|
|
|
@ -74,7 +74,10 @@ bool displayio_display_core_bus_free(displayio_display_core_t *self);
|
||||||
bool displayio_display_core_begin_transaction(displayio_display_core_t* self);
|
bool displayio_display_core_begin_transaction(displayio_display_core_t* self);
|
||||||
void displayio_display_core_end_transaction(displayio_display_core_t* self);
|
void displayio_display_core_end_transaction(displayio_display_core_t* self);
|
||||||
|
|
||||||
void displayio_display_core_set_region_to_update(displayio_display_core_t* self, uint8_t column_command, uint8_t row_command, uint16_t set_current_column_command, uint16_t set_current_row_command, bool data_as_commands, bool always_toggle_chip_select, displayio_area_t* area);
|
void displayio_display_core_set_region_to_update(displayio_display_core_t* self, uint8_t column_command,
|
||||||
|
uint8_t row_command, uint16_t set_current_column_command, uint16_t set_current_row_command,
|
||||||
|
bool data_as_commands, bool always_toggle_chip_select,
|
||||||
|
displayio_area_t* area, bool column_and_page_addressing);
|
||||||
|
|
||||||
void release_display_core(displayio_display_core_t* self);
|
void release_display_core(displayio_display_core_t* self);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue