cmcu为stm32h743IIt6
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
748 B

2 months ago
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
*
* SPDX-License-Identifier: Apache-2.0
*
* Change Logs:
* Date Author Notes
* 2025-11-25 Administrator the first version
*/
1 month ago
#include <rtthread.h>
#include <rtdevice.h>
#include <board.h>
#include <guider/custom/custom.h>
#include <guider/generated/events_init.h>
#include <guider/generated/gui_guider.h>
2 months ago
#include "lvgl.h"
2 weeks ago
//#include "lv_demo_widgets.h"
2 months ago
1 month ago
#define DBG_TAG "gui"
#define DBG_LVL DBG_LOG
#include <rtdbg.h>
#define LCD_BL_PIN GET_PIN(D,12)
#define LCD_RST_PIN GET_PIN(D,11)
1 month ago
void lv_user_gui_init(void)
{
2 weeks ago
//gui_guider_setup();
//lv_demo_widgets();
setup_ui(&guider_ui);
events_init(&guider_ui);
custom_init(&guider_ui);
2 months ago
}