📄 dev.h
字号:
/* MShowTec - www.mshowtec.com
** msLinux dev.h ver1.0
** 20051221 lmjx create limiao@mshowtec.com
**
*/
#ifndef MSLINUX_DEV_H
#define MSLINUX_DEV_H
#define MSLINUX_DEV_NR (16)
#define DEV_NAME_LEN (12)
#define DEV_NULL (0)
#define DEV_RAM (1)
#define DEV_ROM (2)
#define DEV_TTY (3)
#define DEV_LCD (4)
#define DEV_CP (5)
#define IOCTRL_INIT (0)
#define IOCTRL_RD (1)
#define IOCTRL_WE (2)
#define IOCTRL_USER (3)
#define IOCTRL_LCD_DRAW (IOCTRL_USER+0)
#define IOCTRL_CP_RESET (IOCTRL_USER+1)
void dev_init(void);
void dev_user_init(void);
long ioctrl(int dev,int cmd,long para);
int dev_register(int dev,long (*ioctrl_fn) (void));
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -