这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » DIY与开源设计 » 开源硬件 » SIN210学习笔记__LED

共10条 1/1 1 跳转至

SIN210学习笔记__LED

助工
2015-01-19 10:58:57     打赏


SIN210的LED硬件连接图如下

                                                  图3-0:SIN210  LED




一、编写LED驱动

1、LED 驱动属于字符设备,我们进入 Linux 内核的字符设备驱动目录,进行编辑。
2、新建文件 led.c 并对其进行编辑
3、在文件中添加如下代码:

#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/init.h>
#include <linux/serial_core.h>
#include <linux/gpio.h>
#include <linux/clk.h>
#include <linux/delay.h>
#include <linux/usb/ch9.h>
#include <linux/pwm_backlight.h>
#include <linux/spi/spi.h>
#include <linux/gpio_keys.h>
#include <asm/mach/arch.h>
#include <asm/mach/map.h>
#include <asm/setup.h>
#include <asm/mach-types.h>
#include <mach/map.h>
#include <mach/regs-mem.h>
#include <mach/regs-gpio.h>
#include <mach/gpio-bank.h>
#include <plat/s5pv210.h>
#include <plat/gpio-cfg.h>
#include <mach/gpio-bank-b.h>
#define LED_ON 0
#define LED_OFF 1
static unsigned long led_table [] = {
S5PV210_GPJ4(2),
S5PV210_GPJ4(1),
S5PV210_GPJ4(0),
S5PV210_GPJ3(7),
};
static unsigned long led_cfg_table [] = {
S3C_GPIO_OUTPUT,
S3C_GPIO_OUTPUT,
S3C_GPIO_OUTPUT,
S3C_GPIO_OUTPUT,
};
static int led_open(struct inode *inode, struct file *file)
{
int i;
for(i = 0; i < 4; i++)
{
s3c_gpio_cfgpin(led_table[i], led_cfg_table[i]);
}
return 0;
}
static int led_ioctl(struct inode *indoe, struct file *file,
unsigned int cmd, unsigned long arg)
{
if (arg > 4)
return -EINVAL;
switch(cmd)
{
case LED_ON:
s3c_gpio_setpin(led_table[arg], 0);
printk("led[%d] on\r\n", arg);
break;
case LED_OFF:
s3c_gpio_setpin(led_table[arg], 1);
printk("led[%d] off\r\n", arg);
break;
default:
break;
}
return 0;
}
static struct file_operations leds_fops = {
.owner = THIS_MODULE,
.open
= led_open,
.ioctl
= led_ioctl,
};
static int __init leds_init(void)
{
struct cdev *led_cdev;
struct class *led_class;
led_cdev = cdev_alloc();
cdev_init(led_cdev, &leds_fops);
led_cdev->owner = THIS_MODULE;
dev_t devid;
alloc_chrdev_region(&devid, 0, 1, "led");
cdev_add(led_cdev,devid,1);
led_class = class_create(THIS_MODULE,"led_class");
device_create(led_class, NULL, devid, NULL,"led");
printk("LEDS initialized.\n");
}
module_init(leds_init);
MODULE_AUTHOR("alexlee");
MODULE_DESCRIPTION("LEDS DRIVER");
MODULE_LICENSE("GPL");
4、编辑好之后,
修改 kernel/driver/char 目录下的 Makefile 文件,
目的是将我们的 LED 驱动加入到内核中。
5、在 Makefile 中添加 led.o
6、这样我们的 LED 内核驱动就添加完毕了,重新编译内核后,LED 驱动就添加进了内核中。





二、编写LED应用程序

1、创建 led_test.c 文件
2、加入如下代码:

#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <linux/input.h>
#define IOCTL_LED_ON   0
#define IOCTL_LED_OFF  1

void usage(char *exename)
{
printf("Usage:\n");
printf("
%s <led_no> <on/off>\n", exename);
printf("
led_no = 1, 2, 3, 4\n");
}
int main(int argc, char **argv)
{
unsigned int led_no;
int fd = -1;
if (argc != 3)
goto err;
fd = open("/dev/led", O_RDWR);
if (fd < 0) {
printf("Can't open /dev/leds\n");
return -1;
}
led_no = strtoul(argv[1], 0, 0) - 1;
if (led_no > 5)
goto err;
if (!strcmp(argv[2], "on")) {
ioctl(fd, IOCTL_LED_ON, led_no);
} else if (!strcmp(argv[2], "off")) {
ioctl(fd, IOCTL_LED_OFF, led_no);
} else {
goto err;
}
printf("IOCTL no = [%d],[%s]\r\n", led_no,argv[2]);
close(fd);
return 0;
err:
if (fd > 0)
close(fd);
usage(argv[0]);
return -1;
}


3、在同一个目录下,创建 Makefile 文件
4、输入如下代码:
#
# General Makefile
Exec := led_test
Obj := led_test.c
CC := arm-linux-gcc
$(Exec) : $(Obj)
$(CC) -o $@ $(Obj) $(LDLIBS$(LDLIBS-$(@)))
clean:
rm -vf $(Exec) *.elf *.o

 


5、在该目录下,直接 make,进行编译,生成可执行文件 led_test
6、应用程序使用方法:
输入命令格式:led_test [通道:1\2\3\4] [状态:on\off]
例子:led_test 1 off 关闭通道 1





如下图所示

  

                             

                                                                                                                    图 3-1




                                             


                                                                                                                      图 3-2






                                              


                                                                                                                       图 3-3






每天进步一点点,每天都有新发现。走在学习的小路上。。。。。。




关键词: SIN210学习笔记    

助工
2015-01-19 15:33:04     打赏
2楼
哇塞,LED都给整亮啦,漂亮,看来二叔得加把劲了!

助工
2015-01-19 15:33:47     打赏
3楼
PS:那些排线好像是2.00mm不是2.54mm的

专家
2015-01-19 15:35:30     打赏
4楼

你太牛逼了,膜拜


助工
2015-01-19 20:02:40     打赏
5楼
2.54mm的排线没法用,还需要淘宝买2.00mm的线,才能用。。。

助工
2015-01-19 20:03:36     打赏
6楼
2.54mm的排线没法用,还需要淘宝买2.00mm的线,才能用。。。

助工
2015-01-19 20:05:02     打赏
7楼
官方给的教程详细,哈哈

助工
2015-01-19 20:05:32     打赏
8楼
其实我都是跟官方的教程学的。。。

专家
2015-01-19 22:49:55     打赏
9楼

那也不简单哦



助工
2015-01-20 09:58:36     打赏
10楼
楼主加油

共10条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]