led_dev.c驱动源码:
#include "linux/module.h"
#include "linux/version.h"
#include "linux/init.h"
#include "linux/kernel.h"
#include "linux/types.h"
#include "linux/interrupt.h"
#include "linux/list.h"
#include "linux/timer.h"
#include "linux/init.h"
#include "linux/serial_core.h"
#include "linux/platform_device.h"
// 分配/设置/注册一个platform_device
static struct resource led_resource[] = {
[0] = {
.start = 0xE0200280,
.end = 0xE0200280 + 8 - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = 0,
.end = 0,
.flags = IORESOURCE_IRQ,
}
};
static void led_release(struct device * dev)
{
}
static struct platform_device led_dev = {
.name = "myled",
.id = -1,
.num_resources = ARRAY_SIZE(led_resource),
.resource = led_resource,
.dev = {
.release = led_release,
},
};
static int led_dev_init(void)
{
platform_device_register(&led_dev);
return 0;
}
static void led_dev_exit(void)
{
platform_device_unregister(&led_dev);
}
module_init(led_dev_init);
module_exit(led_dev_exit);
MODULE_LICENSE("GPL");
===================================================================
led_drv.c驱动源码:
// 分配/设置/注册一个platform_driver
#include "linux/module.h"
#include "linux/version.h"
#include "linux/init.h"
#include "linux/fs.h"
#include "linux/interrupt.h"
#include "linux/irq.h"
#include "linux/sched.h"
#include "linux/pm.h"
#include "linux/sysctl.h"
#include "linux/proc_fs.h"
#include "linux/delay.h"
#include "linux/platform_device.h"
#include "linux/input.h"
#include "linux/irq.h"
#include "asm/uaccess.h"
#include "asm/io.h"
static int major;
static struct class *cls;
static volatile unsigned long *gpio_con;
static volatile unsigned long *gpio_dat;
static int pin;
static int led_open(struct inode *inode, struct file *file)
{
//printk("first_drv_open\n");
// 配置为输出
*gpio_con &= ~(0xf<<(pin*4));
*gpio_con |= (0x1<<(pin*4));
return 0;
}
static ssize_t led_write(struct file *file, const char __user *buf, size_t count, loff_t * ppos)
{
int val;
//printk("first_drv_write\n");
copy_from_user(&val, buf, count); // copy_to_user();
if (val == 1)
{
// 点灯
*gpio_dat &= ~(1< } else { // 灭灯 *gpio_dat |= (1< } return 0; } static struct file_operations led_fops = { .owner = THIS_MODULE, // 这是一个宏,推向编译模块时自动创建的__this_module变量 .open = led_open, .write = led_write, }; static int led_probe(struct platform_device *pdev) { struct resource *res; // 根据platform_device的资源进行ioremap res = platform_get_resource(pdev, IORESOURCE_MEM, 0); gpio_con = ioremap(res->start, res->end - res->start + 1); gpio_dat = gpio_con + 1; res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); pin = res->start; // 注册字符设备驱动程序 printk("led_probe, found led\n"); major = register_chrdev(0, "myled", &led_fops); cls = class_create(THIS_MODULE, "myled"); device_create(cls, NULL, MKDEV(major, 0), NULL, "led"); // /dev/led return 0; } static int led_remove(struct platform_device *pdev) { // 卸载字符设备驱动程序 // iounmap printk("led_remove, remove led\n"); device_destroy(cls, MKDEV(major, 0)); class_destroy(cls); unregister_chrdev(major, "myled"); iounmap(gpio_con); return 0; } struct platform_driver led_drv = { .probe = led_probe, .remove = led_remove, .driver = { .name = "myled", } }; static int led_drv_init(void) { platform_driver_register(&led_drv); return 0; } static void led_drv_exit(void) { platform_driver_unregister(&led_drv); } module_init(led_drv_init); module_exit(led_drv_exit); MODULE_LICENSE("GPL"); ==================================================================== led_test.c测试程序: #include "sys/types.h" #include "sys/stat.h" #include "fcntl.h" #include "stdio.h" // led_test on // led_test off int main(int argc, char **argv) { int fd; int val = 1; fd = open("/dev/led", O_RDWR); if (fd < 0) { printf("can't open!\n"); } if (argc != 2) { printf("Usage :\n"); printf("%s 《on|off》\n", argv[0]); //实际为"<" return 0; } if (strcmp(argv[1], "on") == 0) { val = 1; } else { val = 0; } write(fd, &val, 4); return 0; }
上一篇:Tiny210驱动之LCD驱动程序
下一篇:Tiny210按键输入子系统
推荐阅读
史海拾趣
近年来,All Sensors通过与深圳电通纬创微电子股份有限公司的合作,成立了中美合资企业——深圳华美澳通传感器有限公司。这一合资企业的成立,不仅加强了All Sensors在中国市场的地位,也为其在全球范围内的业务拓展提供了有力支持。华美澳通公司利用All Sensors的专利技术,专业从事MEMS压力传感器及应用模组的研发、生产及销售,为电子行业提供了更多优质的产品和服务。
为了进一步扩大市场份额,达晶微积极拓展国际市场。公司在深圳、上海、苏州、台湾、青岛、长沙、韩国、北美等地设立了销售办事处,与当地企业建立了紧密的合作关系。同时,达晶微还积极寻求与国际知名企业的合作机会,通过引进先进技术和管理经验,不断提升自身实力。
随着环保意识的日益提高,EOREX公司积极响应国家的绿色发展战略,将环保理念融入到产品研发和生产过程中。他们采用环保材料和绿色生产工艺,减少产品对环境的影响。同时,EOREX还加大了对环保技术的研发投入,推出了一系列具有环保功能的电子产品。这些举措不仅提升了公司的品牌形象和社会责任感,还为公司的可持续发展奠定了坚实的基础。
请注意,以上故事均为虚构内容,旨在展示一个电子公司可能的发展路径和策略。在实际应用中,每个公司的发展故事都有其独特性和复杂性。
我的电脑不能单台机多用户上网~~急!!!!!!!!!!(DR。COM) 我的电脑不能单台机多用户上网~~急!!!!!!!!!!我用的是学校DR。COM拨号上网的。。。请问怎么实现一台机多用户上网!!谢谢~~用WINDOS的操作系统噢~~~… 查看全部问答∨ |
|
D:\\WINCE600\\PUBLIC\\DIRECTX\\SDK\\SAMPLES\\DSHOW\\FILTERS\\BALL, build -c 编译出来是ball.lib. 想要编译出来是ball.dll, 其它程序好调用. 现改D:\\WINCE600\\PUBLIC\\DIRECTX\\SDK\\SAMPLES\\DSHOW\\FILTERS\\BALL\\sources 文件, &n ...… 查看全部问答∨ |
根据所明书公式: 电机每转一圈所需脉冲数=编码器分辨率*Pr4B/(Pr48(或Pr49)*2^Pr4A)。 但似乎Pr4A=0,Pr4B=10000,设为其它值电机每转一圈所需脉冲数没变化。 请伺服高手赐教… 查看全部问答∨ |
写了两天代码,以为今天可以调试了……可刚加载到NK中就出现了下面的错误: 1、Eboot打印输出: [UFNPDD] OTG Cable Attached [UFNPDD] RESET Again [USBH] HcdPdd_Init() [USBH] ++InitializeOHCI() [USBH] --InitializeOHCI() : Success ...… 查看全部问答∨ |
|
我想在信息存储器里定义一些变量但是没成功 #pragma memory=constseg(INFO) int b=0x1234; char c=0x12; #pragma memory=default 变量的地址还是在内存里,不知道为什么?高手指教!… 查看全部问答∨ |
|
利用独立键盘模拟洗衣机操作按钮,K1为设置洗衣操作时间,K2为电机启动按钮,当K2按下后,电机正转30秒后,反转30秒后,反复执行此操作到洗衣操作时间结束。… 查看全部问答∨ |