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
5 changes: 4 additions & 1 deletion .github/workflows/build-run-applications.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ concurrency:

jobs:
build:
env:
component_manager_ver: "2.2.*"
idf_build_apps_ver: "2.10.1"
strategy:
matrix:
include:
Expand Down Expand Up @@ -98,7 +101,7 @@ jobs:
ALL_CHANGED_FILES: ${{ (github.event_name != 'pull_request') && format(' ') || format('--modified-files=') }}${{ (github.event_name != 'pull_request') && format(' ') || steps.changed-files.outputs.all_modified_files }}
run: |
. ${IDF_PATH}/export.sh
pip install idf-component-manager==2.2.* ruamel.yaml idf-build-apps==2.4.3 --upgrade
pip install idf-component-manager==${{ env.component_manager_ver }} ruamel.yaml idf-build-apps==${{ env.idf_build_apps_ver }} --upgrade
echo "Files changed: "${{env.ALL_CHANGED_FILES}}
idf-build-apps find ${{env.ALL_CHANGED_FILES}}
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,11 @@ on:
jobs:

build-launchpad:
env:
component_manager_ver: "2.2.*"
strategy:
matrix:
idf_ver: ["v5.4"]
idf_ver: ["release-v5.4"]
runs-on: ubuntu-latest
container: espressif/idf:${{ matrix.idf_ver }}
steps:
Expand All @@ -28,7 +30,7 @@ jobs:
shell: bash
run: |
. ${IDF_PATH}/export.sh
pip install idf-component-manager==2.* --upgrade
pip install idf-component-manager==${{ env.component_manager_ver }} --upgrade
pip install -U "esp-idf-kconfig<3"
- name: Action for building binaries and config.toml
Expand Down
2 changes: 2 additions & 0 deletions .ignore_build_warnings.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
DeprecationWarning: pkg_resources is deprecated as an API
warning: unknown kconfig symbol 'TOUCH_SUPPRESS_DEPRECATE_WARN' assigned to*
warning: ignoring attribute 'section .+' because it conflicts with previous 'section .+
warning: #warning "This set of Touch APIs has been deprecated*
Warning: The smallest app partition is nearly full*
1 change: 0 additions & 1 deletion examples/display/sdkconfig.bsp.esp32_p4_eye
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#
CONFIG_IDF_TARGET="esp32p4"
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n


Expand Down
1 change: 0 additions & 1 deletion examples/display_camera_csi/sdkconfig.bsp.esp32_p4_eye
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#
CONFIG_IDF_TARGET="esp32p4"
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n


Expand Down
1 change: 0 additions & 1 deletion examples/display_camera_csi/sdkconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#
CONFIG_IDF_TARGET="esp32p4"
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n


Expand Down
5 changes: 2 additions & 3 deletions examples/display_lvgl_demos/sdkconfig.bsp.esp32_p4_eye
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,11 @@
#
CONFIG_IDF_TARGET="esp32p4"
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n
CONFIG_PARTITION_TABLE_CUSTOM=y
CONFIG_COMPILER_OPTIMIZATION_PERF=y
CONFIG_SPIRAM_FETCH_INSTRUCTIONS=y
CONFIG_FREERTOS_HZ=1000
CONFIG_BSP_DISPLAY_LVGL_AVOID_TEAR=y
CONFIG_BSP_DISPLAY_LVGL_DIRECT_MODE=y
CONFIG_LV_FONT_MONTSERRAT_12=y
CONFIG_LV_FONT_MONTSERRAT_16=y
CONFIG_LV_FONT_MONTSERRAT_24=y
Expand All @@ -24,7 +21,9 @@ CONFIG_LV_ATTRIBUTE_FAST_MEM_USE_IRAM=y

# SPIRAM for ESP32-P4
CONFIG_SPIRAM=y
CONFIG_SPIRAM_MODE_HEX=y
CONFIG_SPIRAM_SPEED_200M=y
CONFIG_IDF_EXPERIMENTAL_FEATURES=y


## LVGL9 ##
Expand Down
1 change: 0 additions & 1 deletion examples/display_rotation/sdkconfig.bsp.esp32_p4_eye
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
#
CONFIG_IDF_TARGET="esp32p4"
CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y
CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_240=y
CONFIG_CODEC_I2C_BACKWARD_COMPATIBLE=n


Expand Down
Loading