examples/lvglterm: replace PIPES with PSEUDOTERM - #3742
Open
fdcavalcanti wants to merge 1 commit into
Open
Conversation
The lvglterm terminal now runs the shell on a pseudo-terminal instead of three plain pipes. Signed-off-by: Filipe Cavalcanti <filipe.cavalcanti@espressif.com>
| tristate "LVGL Terminal" | ||
| default n | ||
| depends on GRAPHICS_LVGL | ||
| select PSEUDOTERM |
Contributor
There was a problem hiding this comment.
Suggested change
| select PSEUDOTERM | |
| depends on PSEUDOTERM |
acassis
approved these changes
Aug 20, 2026
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.
Summary
The lvglterm terminal now runs the shell on a pseudo-terminal instead of three plain pipes.
Reason for this change is that I'm trying to run Python on LVGL terminal and we need to use pseudo terminal for it to render the interactive mode.
lvglterm_send_input()in the core owns the write path. It only ever writes as much as the terminal reports free via FIONSPACE and queues the rest for the timer.AI Disclaimer
Used Cursor to execute the changes and evaluate the impact.
Impact
Should affect the following boards that have
lvgl_termexample:Testing
Works the same as before.

Tested on
esp32p4-tab5and it works great. Need feedback for the other board.@JorgeGzm could you do a test run with keyboard and touch? Which I think are the ones affected on linum board.