Skip to content

Commit c561f50

Browse files
committed
Prepare BSP deprecation
1 parent 4e24b46 commit c561f50

File tree

8 files changed

+22
-19
lines changed

8 files changed

+22
-19
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ repos:
4949
additional_dependencies:
5050
- idf_component_manager==2.4.1
5151
- py-markdown-table
52+
# TODO: Remove this when removing these BSPs
53+
exclude: '^.*/(esp-box|esp-box-lite|esp32_s2_kaluga_kit)/.*$'
54+
5255

5356
- repo: local
5457
hooks:

bsp/esp-box-lite/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ ESP32-S3-BOX-Lite also uses a Type-C USB connector that provides 5 V of power in
4949

5050
| Example | Description | Try with ESP Launchpad |
5151
| ------- | ----------- | ---------------------- |
52-
| [Display Example](https://github.com/espressif/esp-bsp/tree/master/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
53-
| [Display, Audio and Photo Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_audio_photo) | Complex demo: browse files from filesystem and play/display JPEG, WAV, or TXT files (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_audio_photo-) |
54-
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
55-
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
56-
| [Display Rotation Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_rotation) | Rotate screen using buttons or an accelerometer (`BSP_CAPS_IMU`, if available) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_rotation-) |
52+
| [Display Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
53+
| [Display, Audio and Photo Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_audio_photo) | Complex demo: browse files from filesystem and play/display JPEG, WAV, or TXT files (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_audio_photo-) |
54+
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
55+
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
56+
| [Display Rotation Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_rotation) | Rotate screen using buttons or an accelerometer (`BSP_CAPS_IMU`, if available) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_rotation-) |
5757

5858
<!-- END_EXAMPLES -->
5959
</div>

bsp/esp-box-lite/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2.1.0~2"
22
description: Board Support Package (BSP) for ESP32-S3-BOX-Lite
3-
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp-box-lite
3+
url: https://github.com/espressif/esp-bsp/tree/deprecated/bsp/esp-box-lite
44

55
targets:
66
- esp32s3

bsp/esp-box/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ ESP32-S3-BOX also uses a Type-C USB connector that provides 5 V of power input,
5050

5151
| Example | Description | Try with ESP Launchpad |
5252
| ------- | ----------- | ---------------------- |
53-
| [Display Example](https://github.com/espressif/esp-bsp/tree/master/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
54-
| [Display, Audio and Photo Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_audio_photo) | Complex demo: browse files from filesystem and play/display JPEG, WAV, or TXT files (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_audio_photo-) |
55-
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
56-
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
57-
| [Display Rotation Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_rotation) | Rotate screen using buttons or an accelerometer (`BSP_CAPS_IMU`, if available) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_rotation-) |
53+
| [Display Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
54+
| [Display, Audio and Photo Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_audio_photo) | Complex demo: browse files from filesystem and play/display JPEG, WAV, or TXT files (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_audio_photo-) |
55+
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
56+
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
57+
| [Display Rotation Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_rotation) | Rotate screen using buttons or an accelerometer (`BSP_CAPS_IMU`, if available) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_rotation-) |
5858

5959
<!-- END_EXAMPLES -->
6060
</div>

bsp/esp-box/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
version: "3.1.0~2"
33
description: Board Support Package (BSP) for ESP-BOX
4-
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp-box
4+
url: https://github.com/espressif/esp-bsp/tree/deprecated/bsp/esp-box
55

66
targets:
77
- esp32s3

bsp/esp32_azure_iot_kit/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "3.0.0~2"
22
description: Board Support Package (BSP) for ESP32-Azure-IoT-Kit
3-
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_azure_iot_kit
3+
url: https://github.com/espressif/esp-bsp/tree/deprecated/bsp/esp32_azure_iot_kit
44

55
targets:
66
- esp32

bsp/esp32_s2_kaluga_kit/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ The ESP32-S2-Kaluga-1 kit v1.3 is a development kit by Espressif that is mainly
5757

5858
| Example | Description | Try with ESP Launchpad |
5959
| ------- | ----------- | ---------------------- |
60-
| [Audio Example](https://github.com/espressif/esp-bsp/tree/master/examples/audio) | Play and record WAV file | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=audio-) |
61-
| [Display Example](https://github.com/espressif/esp-bsp/tree/master/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
62-
| [Camera Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_camera) | Stream camera output to display (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_camera-) |
63-
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
64-
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/master/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
60+
| [Audio Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/audio) | Play and record WAV file | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=audio-) |
61+
| [Display Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display) | Show an image on the screen with a simple startup animation (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display-) |
62+
| [Camera Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_camera) | Stream camera output to display (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_camera-) |
63+
| [LVGL Benchmark Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_benchmark) | Run LVGL benchmark tests | - |
64+
| [LVGL Demos Example](https://github.com/espressif/esp-bsp/tree/deprecated/examples/display_lvgl_demos) | Run the LVGL demo player - all LVGL examples are included (LVGL) | [Flash Example](https://espressif.github.io/esp-launchpad/?flashConfigURL=https://espressif.github.io/esp-bsp/config.toml&app=display_lvgl_demos-) |
6565

6666
<!-- END_EXAMPLES -->
6767
</div>

bsp/esp32_s2_kaluga_kit/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "5.0.1~1"
22
description: Board Support Package (BSP) for ESP32-S2-Kaluga kit
3-
url: https://github.com/espressif/esp-bsp/tree/master/bsp/esp32_s2_kaluga_kit
3+
url: https://github.com/espressif/esp-bsp/tree/deprecated/bsp/esp32_s2_kaluga_kit
44

55
targets:
66
- esp32s2

0 commit comments

Comments
 (0)