Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,12 @@ jobs:
- name: ESP32_GENERIC_S3-SPIRAM_OCT-32_OCTFLASH
run: python3 make.py esp32 BOARD=ESP32_GENERIC_S3 BOARD_VARIANT=SPIRAM_OCT --flash-size=32 --octal-flash DISPLAY=all INDEV=all EXPANDER=all --ccache --no-scrub

- name: ESP32_GENERIC_P4-4
run: python3 make.py esp32 BOARD=ESP32_GENERIC_P4 --flash-size=4 DISPLAY=all INDEV=all EXPANDER=all --ccache --no-scrub

- name: ESP32_GENERIC_P4-8
run: python3 make.py esp32 BOARD=ESP32_GENERIC_P4 --flash-size=8 DISPLAY=all INDEV=all EXPANDER=all --ccache --no-scrub

# rp2-rel:
# runs-on: ubuntu-latest
# steps:
Expand Down
7 changes: 6 additions & 1 deletion ext_mod/lcd_bus/esp32_src/i80_bus.c
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,12 @@
self->bus_config.data_gpio_nums[15] = args[ARG_data15].u_int;

uint8_t i = 0;
for (; i < SOC_LCD_I80_BUS_WIDTH; i++) {
#if CONFIG_IDF_TARGET_ESP32P4
uint8_t bus_width = SOC_LCDCAM_I80_BUS_WIDTH;
#else
uint8_t bus_width = SOC_LCD_I80_BUS_WIDTH;
#endif
for (; i < bus_width; i++) {
if (self->bus_config.data_gpio_nums[i] == -1) {
break;
}
Expand Down
Loading