lvgl-rs/lvgl-sys
Rafael Caricio bcd771df47 Disable lvgl original comments in bindings
We disable the comments generation here because some comments
cause the `cargo test` command to fail. Some of the original
comments have invalid tokens like `TYPEDEFS` causing issues.
We should recommend users to look the original comments in the
original lvgl in their C API docs.
2021-03-06 21:50:39 +01:00
..
shims Use Rgb565 as default 2020-04-21 10:52:21 +02:00
src Some additional checks on using LVGL heap memory allocator 2020-06-19 15:48:44 +02:00
vendor Fix UB 2020-06-13 20:31:24 +02:00
build.rs Disable lvgl original comments in bindings 2021-03-06 21:50:39 +01:00
Cargo.toml Release 0.4.0 2020-06-19 18:55:30 +02:00
README.md Configurable lv_conf.h file 2020-04-12 20:37:26 +02:00

lvgl-sys

Rust raw bindings for LittlevGL library.

Usage

Build requires environment variables to be set:

  • DEP_LV_CONFIG_PATH: Path to the directory containing the lv_conf.h header file used for configuration of LittlevGL library.

We recommend the lv_conf.h file to be in your project's root directory. If so, the command to build your project would be:

$ DEP_LV_CONFIG_PATH=`pwd` cargo build