You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README with notes about safe and unsafe bindings (#187)
* Update README with notes about safe and unsafe bindings
* Update build command for embedded
Remove $ from command
Add missing space in embedded builds
* README: Add note about enum issue when compiling with GCC
Fixes#163
The bindings are still in development. There are many features of LVGL that needs to be exposed by `lvgl-rs`. In
100
100
this section you can check what is implemented at the moment.
101
101
102
+
Unsafe bindings are located in `lvgl-sys` folder are generated via `bindgen`.
103
+
104
+
Safe bindings are generated using the `lvgl-codegen` lib, which takes the raw unsafe bindings and generate safe/rust idiomatic bindings (check the `build.rs` script in the `lvgl` folder).
105
+
102
106
### Features
103
107
104
108
List of LVGL features that impacts the library usage in general.
@@ -123,4 +127,11 @@ List of LVGL features that impacts the library usage in general.
123
127
Widgets currently implemented might have some missing features. If the widget you want to use is not exposed or
124
128
is missing a feature you want to make use, please send a Pull Request or open an issue.
125
129
130
+
### Troubleshooting
131
+
132
+
Here's a list of known issues that can be faced when using this repo:
0 commit comments