⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cursor.h

📁 广州致远电子的SmartArm2400出厂时的演示代码。
💻 H
字号:
/****************************************Copyright (c)****************************************************
**                               Guangzou ZLG-MCU Development Co.,LTD.
**                                      graduate school
**                                 http://www.zlgmcu.com
**
**--------------File Info---------------------------------------------------------------------------------
** File name:           cursor.h
** Last modified Date:  2008-05-08
** Last Version:        1.0
** Descriptions:        the hardware cursor's head file
**
**--------------------------------------------------------------------------------------------------------
** Created by:          Houxiaolong
** Created date:        2008-05-08
** Version:             1.0
** Descriptions:        the hardware cursor's head file
**
**--------------------------------------------------------------------------------------------------------
** Modified by:         
** Modified date:       
** Version:             
** Descriptions:        
**                      
**--------------------------------------------------------------------------------------------------------
*********************************************************************************************************/
#ifndef __CURSOR_H
#define __CURSOR_H
/*********************************************************************************************************
** Function name :        cursor_Init
** Function Description : Initialize the hardware cursor
** Input:                 none
** Output:                none
*********************************************************************************************************/
void cursor_Init(void);

/*********************************************************************************************************
** Function name :        cursor_On
** Function Description : display the cursor enable
** Input:                 none                      
** Output:                none
*********************************************************************************************************/
void cursor_On(void);

/*********************************************************************************************************
** Function name :        cursor_Off
** Function Description : display the cursor disable
** Input:                 none                      
** Output:                none
*********************************************************************************************************/
void cursor_Off(void);

/*********************************************************************************************************
** Function name :        cursor_SetPosition
** Function Description : set the cursor's position
** Input:                 ix   the position of x coordinate                      
** Output:                iy   the position of y coordinate
*********************************************************************************************************/
void cursor_SetPosition(unsigned int ix, unsigned int iy);


#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -