完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
|
|
相关推荐
1个回答
|
|
生成设备节点
#defind DRIVER_NAME "hello_ctl123"; #include #include // 驱动注册的头文件和设备注册的头文件和卸载函数 #include // 注册杂项设设备头文件 #include #include MODULE_LICENSE("Dual BSD/GPL"); MODULE_AUTHOR("xubaipei") module_init(hello_init); module_exit(hello_exit); static struct file_operation hello_ops = { .owner = THIS_MODULE, .open = hello_open, .release = hello_release, .unlocked_ioctl = hello_ioctl, }; static struct miscdevice hello_dev = { .minor = MISC_DYNAMIC_MINOR, .name = DRIVER_NAME, .fops = &hello_ops, }; static int hello_ioctl (struct file *file ,unsigned int cmd,unsigned long arg) { printk("cmd is %d,arg is %d n",amd,arg); return 0; } static int hello_release(struct inode *inode,struct file * file) { printk(KERN_EMERG,"hello_release"); return 0; } static int hello_open(struct inode *inode,struct file * file) { printk(KERN_EMERG,"hello_openn"); return 0; } static int hello_init(void) { misc_register(&hello_dev); return 0; } static int hello_exit(void) { misc_deregister(&hello_dev); return 0; }` |
|
|
|
只有小组成员才能发言,加入小组>>
791 浏览 0 评论
1151 浏览 1 评论
2527 浏览 5 评论
2860 浏览 9 评论
移植了freeRTOS到STMf103之后显示没有定义的原因?
2710 浏览 6 评论
keil5中manage run-time environment怎么是灰色,不可以操作吗?
1070浏览 3评论
193浏览 2评论
455浏览 2评论
368浏览 2评论
M0518 PWM的电压输出只有2V左右,没有3.3V是怎么回事?
453浏览 1评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-22 11:00 , Processed in 1.281362 second(s), Total 80, Slave 61 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号