A collection of simple games built on Zephyr RTOS with the LVGL graphics library.
- Board: FRDM_MCXN947 (NXP MCU)
- Shield: lcd_par_s035_8080
west init -l zephyr_lvgl_games
west update
west build --board frdm_mcxn947/mcxn947/cpu0 <game_folder>
If you see missed touches, edit
zephyr/drivers/input/input_gt911.c
and locate the comment:
/* hold down 50ms to make sure the address available */
k_sleep(K_MSEC(50));
Change it to K_MSEC(200)