We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40290df commit 9d6974eCopy full SHA for 9d6974e
README.md
@@ -268,11 +268,17 @@ Modify the `main.c` like this:
268
int app_main(void)
269
{
270
lv_init();
271
- // hw_init();
+
272
+ /* Initialize your hardware. */
273
274
+ /* hw_init(); */
275
276
demo_create();
277
- // hw_loop();
278
+ /* Create the UI or start a task for it.
279
+ * In the end, don't forget to call `lv_task_handler` in a loop. */
280
281
+ /* hw_loop(); */
282
283
return 0;
284
```
0 commit comments