feat(smartpanle-sc01-plus): Add espp::SmartPanleeSc01Plus BSP component for the Smart Panlee SC01 Plus dev board#619
Merged
Conversation
…nent for the Smart Panlee SC01 Plus dev board
|
✅Static analysis result - no issues found! ✅ |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a Smart Panlee SC01 Plus BSP component and supporting ST7796 display driver documentation/CI integration for ESPP.
Changes:
- Adds
espp::SmartPanleeSc01Pluswith LCD, touch, backlight, audio, microSD, and board pin-map helpers. - Adds an example project, component metadata, Kconfig, documentation, and CI/registry workflow entries.
- Adds a new
espp::St7796display driver header and exposes it in display driver docs/metadata.
Reviewed changes
Copilot reviewed 21 out of 21 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/build.yml |
Adds CI build coverage for the new BSP example. |
.github/workflows/upload_components.yml |
Adds the new component to registry upload list. |
components/display_drivers/idf_component.yml |
Adds ST7796 tag metadata. |
components/display_drivers/include/st7796.hpp |
Introduces the ST7796 display driver wrapper. |
components/smartpanle-sc01-plus/CMakeLists.txt |
Registers the new BSP component and dependencies. |
components/smartpanle-sc01-plus/Kconfig |
Adds configurable task stack sizes. |
components/smartpanle-sc01-plus/README.md |
Documents BSP capabilities and example usage. |
components/smartpanle-sc01-plus/idf_component.yml |
Adds component registry metadata and dependencies. |
components/smartpanle-sc01-plus/include/smartpanle-sc01-plus.hpp |
Defines the BSP public API and board constants. |
components/smartpanle-sc01-plus/src/smartpanle-sc01-plus.cpp |
Implements LCD, touch, audio, backlight, and SD-card behavior. |
components/smartpanle-sc01-plus/example/CMakeLists.txt |
Adds the example ESP-IDF project configuration. |
components/smartpanle-sc01-plus/example/README.md |
Documents the BSP example. |
components/smartpanle-sc01-plus/example/partitions.csv |
Adds partition layout for the example. |
components/smartpanle-sc01-plus/example/sdkconfig.defaults |
Adds default example SDK configuration. |
components/smartpanle-sc01-plus/example/main/CMakeLists.txt |
Registers example sources and embedded audio asset. |
components/smartpanle-sc01-plus/example/main/smartpanle_sc01_plus_example.cpp |
Demonstrates display, touch, audio, brightness, SD-card, and pin-map usage. |
doc/Doxyfile |
Adds BSP header and example to Doxygen inputs. |
doc/en/display/display_drivers.rst |
Adds ST7796 API include to display driver docs. |
doc/en/index.rst |
Adds the BSP documentation page to the index. |
doc/en/smartpanle_sc01_plus.rst |
Adds BSP documentation page. |
doc/en/smartpanle_sc01_plus_example.md |
Includes the BSP example README in docs. |
ensure clear command sends correct x/y sizing Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Motivation and Context
It's a nice little board, and I have one so I wanted to support it :)
How has this been tested?
Build and run the example on the SC01 Plus
Screenshots (if appropriate, e.g. schematic, board, console logs, lab pictures):
Types of changes
Checklist:
Software
.github/workflows/build.ymlfile to add my new test to the automated cloud build github action.