/**
* @file lvgl_port.h
* Common LVGL port declarations for Moon firmware
*/
#pragma once
#include "lvgl.h"
/**
* Initialize LVGL display driver
* Platform-specific implementation in lvgl_port_sdl.c or lvgl_port_esp32.c
*/
void lvgl_port_init(void);
/**
* Get the LVGL display handle
*/
lv_display_t *lvgl_port_get_display(void);