From 894d5f5861d9f8b051555d914a9f9ac5c62e2ad6 Mon Sep 17 00:00:00 2001 From: niels <717126+iamniels@users.noreply.github.com> Date: Sat, 12 Aug 2017 17:08:29 +0200 Subject: [PATCH] update lv_init function name --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e3cac5cd..7be40bdb0 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ See the [example HAL](https://github.com/littlevgl/hal) repository! * your_systick_init(); * your_disp_init(); * your_indev_init(); - * **lvgl_init()**; + * **lv_init()**; 10. To **test** create a label: `lv_obj_t * label = lv_label_create(lv_scr_act(), NULL);` 11. In the main *while(1)* call `ptask_handler();` and make a few milliseconds delay (e.g. `your_delay_ms(5);`) 12. Compile the code and load it to your embedded hardware