📄 menu.h
字号:
/******************** (C) COPYRIGHT 2008 FUDANTIANXIN********************
* File Name : menu.h
* Author : 上海复旦天欣科教仪器有限公司 周春明 ZCM
* Version : V1.0
* Date : 11/5/2008
* Description : FD-STM32-B实验箱:移植uCGUI
********************************************************************************/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __MENU_H
#define __MENU_H
/* Includes ------------------------------------------------------------------*/
#include "stm32f10x_lib.h"
/* Exported types ------------------------------------------------------------*/
/* Exported constants --------------------------------------------------------*/
/* Module private variables --------------------------------------------------*/
/* Exported macro ------------------------------------------------------------*/
#define countof(a) (sizeof(a) / sizeof(*(a)))
/* Private functions ---------------------------------------------------------*/
/* Exported functions ------------------------------------------------------- */
void MenuInit(void);
void UpKey(void);
void DownKey(void);
void RightKey(void);
void LeftKey(void);
void SelectionKey(void);
void ChildFunction(void);
void MainTask(void);
void DisplayMenu(void);
void DisplayTest(char const *string ,u16 Xpos,u8 Ypos);
#endif /* __MENU_H */
/******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE****/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -