An open API service indexing awesome lists of open source software.

https://github.com/lvgl/lv_nuttx


https://github.com/lvgl/lv_nuttx

Last synced: over 1 year ago
JSON representation

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
```