summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2020-03-24 23:52:28 +0530
committerVijay Kumar Banerjee <vijay@rtems.org>2020-03-25 00:16:01 +0530
commit9135baf7d2591a907740f30d5ecffb3e77d1f1be (patch)
treed7c852d3579b9165b6a328ad41aa53a781ab2241
parentUpdate to lvgl v6.1.2 (diff)
downloadrtems-littlevgl-9135baf7d2591a907740f30d5ecffb3e77d1f1be.tar.bz2
Add README
-rw-r--r--README.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..d0e7b02
--- /dev/null
+++ b/README.md
@@ -0,0 +1,47 @@
+RTEMS LittlevGL
+===============
+
+Welcome to RTEMS LittlevGL (lvgl). This package builds the lvgl library using
+waf with the required settings for running it with rtems. The lvgl drivers are
+adapted to the BSD framebuffer and hence requires the latest rtems-libbsd build.
+
+About LittlevGL
+---------------
+
+LittlevGL is a lightweight graphics library for embedded GUI applications. It
+can be configured using the `lv_conf.h` and the `lv_drv_conf.h` files that are
+in the top of the rtems-littlevgl directory.
+
+The documentation is available at:
+https://docs.littlevgl.com/en/html/index.html
+
+Building and installing rtems-littlevgl
+---------------------------------------
+
+```
+git clone git://git.rtems.org/packages/rtems-littlevgl.git
+git submodule update
+./waf configure --prefix=/path/to/rtems/5
+./waf build install
+```
+
+Writing embedded GUI app using rtems-littlevgl
+----------------------------------------------
+
+The rtems-examples repository has a sample lvgl hello world application that can
+be followed for reference on how to write and build an application with lvgl.
+The sample app can be found here:
+https://git.rtems.org/rtems-examples/tree/lvgl/hello/test.c
+
+Where to discuss questions and ideas?
+-------------------------------------
+
+The preferred way of carrying out any discussions or questions is to reach out
+to the users mailing list users@rtems.org or the devel mailing list
+devel@rtems.org for more detailed discussions.
+
+In any discussions related to rtems-littlevgl, the maintainers can be CC'd by
+their respective id's given below:
+
+Christian Mauderer (christian.mauderer@embedded-brains.de)
+Vijay Kumar Banerjee (vijay@rtems.org)