KT25-1015_AC695x_SDK310/apps/ui/kt_ui.h
2026-03-19 05:52:10 +08:00

20 lines
513 B
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#ifndef __KT_UI_H__
#define __KT_UI_H__
#include "kt.h"
#include "lvgl.h"
void kt_ui_init(void);
/* 切换页面 */
void kt_ui_show_page(int page_id);
/* 投递按键事件到 UI 任务 (供 kt_key_event_filter_after 等调用) */
void kt_ui_post_key_event(int key_event, int key_value);
/* 获取当前显示的页面 ID */
int kt_ui_get_current_page(void);
/* Music 页是否处于设置模式用于按键过滤NEXT/PREV 在设置模式下转发给 UI */
u8 kt_ui_music_setting_mode(void);
#endif