https://github.com/lvgl/lv_nuttx
https://github.com/lvgl/lv_nuttx
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/lvgl/lv_nuttx
- Owner: lvgl
- Created: 2024-09-17T20:36:28.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-03-20T15:41:16.000Z (over 1 year ago)
- Last Synced: 2025-03-25T20:57:50.827Z (over 1 year ago)
- Language: C
- Size: 1.68 MB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Launch the Project Creator
2. Create a NuttX Simulator project
3. Follow the remaining steps given by the Project Creator
1. Install the NuttX prerequisites and KConfig frontend in https://nuttx.apache.org/docs/latest/quickstart/install.html
2. Additionally, install `unzip`
3. Run `./setup.sh` or run the following commands
```sh
git submodule update --init
cd apps
ln --symbolic --force ../my_lvgl_apps
cd ..
cd nuttx
./tools/configure.sh -l sim:lvgl_fb
kconfig-tweak --enable CONFIG_MY_LVGL_APPS_MY_LVGL_APP
yes '' | make oldconfig
cd ..
```
4. Run the following commands
```sh
cd nuttx
make -j$(nproc)
./nuttx
```