Skip to content

Instantly share code, notes, and snippets.

@creamidea
Created April 18, 2013 07:48
Show Gist options
  • Save creamidea/5410956 to your computer and use it in GitHub Desktop.
Save creamidea/5410956 to your computer and use it in GitHub Desktop.
led.h arm入门练习 交叉编译
/* 使用全局变量,让上层可用 */
#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