Skip to content

eez-open/lv_port_renesas_ek_ra8d2

Repository files navigation

EEZ Studio example with Renesas EK-RA8D2 and LVGL

EK-RA8D2 Kit Showing EEZ Studio Application

Integration steps:

EEZ Studio Project Editor

  • Build the project source code files:

alt text

Source code files are generated inside src/ui folder.

  • Add ui_init() and ui_tick() in src/new_thread0_entry.c
#include "ui/ui.h" // Add this!

// ...

void LVGL_thread_entry(void *pvParameters)
{
    // ...

    lv_init();
    lv_port_disp_init();
    lv_port_indev_init();

    // ...

    ui_init(); // Add this!

    // ...
    
    while (1)
    {
        lv_timer_handler();

        ui_tick(); // Add this!

        // ...

        vTaskDelay (1);
    }
}

About

EEZ Studio example with Renesas EK-RA8D2 and LVGL

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published