Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. koverg70
    K
    • Continue chat with koverg70
    • Start new chat with koverg70
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups
    Save
    Saving

    koverg70

    @koverg70

    0
    Reputation
    1
    Posts
    477
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    koverg70 Follow

    Posts made by koverg70

    • RE: How to run LVGL on M5Stack

      I have a working demo of LVGL 8.1 running on my M5Core2.
      To succeed one have to carefully read the 8.0.0 changes in the changelog:
      https://github.com/lvgl/lvgl/blob/master/docs/CHANGELOG.md

      Especially this: "lv_disp_drv_t, lv_indev_drv_t, lv_fs_drv_t needs to be static"
      So you have to move these structures outside the setup function as static.

      static lv_disp_drv_t disp_drv;
      static lv_indev_drv_t indev_drv;

      Good luck!

      posted in PROJECTS
      K
      koverg70