Skip to content

Commit

Permalink
fix framebuffer size for pimoroni dvi base
Browse files Browse the repository at this point in the history
  • Loading branch information
dhalbert committed Aug 21, 2023
1 parent 8754b8e commit eba1f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ports/raspberrypi/boards/pimoroni_pico_dv_base/board.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
void board_init(void) {
picodvi_framebuffer_obj_t *fb = &allocate_display_bus()->picodvi;
fb->base.type = &picodvi_framebuffer_type;
common_hal_picodvi_framebuffer_construct(fb, 640, 480,
common_hal_picodvi_framebuffer_construct(fb, 320, 240,
&pin_GPIO7, &pin_GPIO6,
&pin_GPIO9, &pin_GPIO8,
&pin_GPIO11, &pin_GPIO10,
Expand Down

0 comments on commit eba1f9d

Please sign in to comment.