Created
April 18, 2013 07:48
-
-
Save creamidea/5410956 to your computer and use it in GitHub Desktop.
led.h arm入门练习 交叉编译
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 使用全局变量,让上层可用 */ | |
#ifndef __LED_H__ | |
#define __LED_H__ | |
#define LED_ON 1 | |
#define LED_OFF 0 | |
static int mymajor = 0; /* 主编号 */ | |
static char* name = "myled"; /* 设备名字 */ | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment