Login
1 branch 0 tags
Ben (Desktop/Arch) lvgl 67cbd91 1 month ago 12 Commits
moon / firmware / src / lvgl_port.h
/**
 * @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);