Re: Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-02 Thread Lee, Lup Yuen
Thanks Alan! Handling keypresses directly in the LVGL Terminal text box might get complicated, lemme think about it. Right now the app waits for the Enter Key and sends the entire command to NSH, which is a lot easier. LVGL Terminal was inspired by nxterm, so yep I must try nxterm soon :-) Lup

Re: Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-02 Thread Xiang Xiao
Lup, the demo could upstream to lvgl repo once you change NuttX special task_create to posix_spawn. On Thu, Feb 2, 2023 at 10:57 PM Tomek CEDRO wrote: > On Thu, Feb 2, 2023 at 4:44 AM Lee, Lup Yuen wrote: > > Now we can run NuttX Console Apps on PinePhone, without a Serial Cable! > > This

Re: Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-02 Thread Tomek CEDRO
On Thu, Feb 2, 2023 at 4:44 AM Lee, Lup Yuen wrote: > Now we can run NuttX Console Apps on PinePhone, without a Serial Cable! > This article explains how we call the LVGL GUI Library to create a > Touchscreen Terminal App that runs NSH Commands... > https://lupyuen.github.io/articles/terminal

Re: Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-02 Thread Alan C. Assis
Hi Lup, Very nice article! Kudos!!! Is it possible to modify the demo to type direclty inside the "LVGL terminal" screen? Did you test PinePhone nxterm too? BR, Alan On 2/2/23, Lee, Lup Yuen wrote: > Now we can run NuttX Console Apps on PinePhone, without a Serial Cable! > > This article

Article: NuttX for PinePhone: LVGL Terminal for NSH Shell

2023-02-01 Thread Lee, Lup Yuen
Now we can run NuttX Console Apps on PinePhone, without a Serial Cable! This article explains how we call the LVGL GUI Library to create a Touchscreen Terminal App that runs NSH Commands... https://lupyuen.github.io/articles/terminal Lup