MiaoUI/example/STM32F103C8T6/MultMenu/menu/menu.h

16 lines
381 B
C
Raw Normal View History

2023-07-06 09:42:13 +00:00
#ifndef __MENU_H__
#define __MENU_H__
#include "stm32f10x.h"
#include "stdbool.h"
2024-02-06 09:38:48 +00:00
#include "menuConfig.h"
2024-04-06 18:01:42 +00:00
#include "bsp_usart.h"
2023-07-06 09:42:13 +00:00
void DialogScale_Show(uint8_t x,uint8_t y,uint8_t Targrt_w,uint8_t Targrt_h);
2024-04-06 18:55:15 +00:00
void Draw_DialogRBox(uint16_t x,uint16_t y,uint16_t w,uint16_t h,uint16_t r);
2024-01-29 11:33:03 +00:00
void Switch_Menu_State(Menu_State state);
2024-04-06 18:01:42 +00:00
void Menu_Task(void);
2023-07-06 09:42:13 +00:00
void Menu_Init(void);
#endif