• 迅为RK3568开发板helloworld 驱动实验-驱动编写


    在学习 C 语言或者其他语言的时候,我们通常是打印一句“helloworld”来开启编程世界的大门。学习驱动程序编程亦可以如此,使用 helloworld 作为我们的第一个驱动程序。

    接下来开始编写第一个驱动程序—helloworld。

    本小节来编写一个最简单的驱动——helloworld 驱动。helloworld.c 如下(图 3-1)所示代码:

    1 #include

    2 #include

    3

    4 static int __init helloworld_init(void) //驱动入口函数

    5 {

    6 printk(KERN_EMERG "helloworld_init\r\n");//注意:内核打印用 printk 而不是 printf

    7 return 0;

    8 }

    9

    10 static void __exit helloworld_exit(void) //驱动出口函数

    11 {

    12 printk(KERN_EMERG "helloworld_exit\r\n");

    13 }

    14

    15 module_init(helloworld_init); //注册入口函数

    16 module_exit(helloworld_exit); //注册出口函数

    17 MODULE_LICENSE("GPL v2"); //同意 GPL 开源协议

    18 MODULE_AUTHOR("topeet"); //作者信息

    看似非常简单的 helloworld 驱动代码,却五脏俱全。一个简单的 helloworld 驱动包含驱动的基本框架。

    (下节持续更新)

    B站搜索-北京迅为RK3568开发板,

    公众Hao关注:北京迅为,

    更多资料可以查看

  • 相关阅读:
    程序员如何进大厂?
    学位类型有哪几种,专业学位和学术型学位区别
    adb使用笔记
    VUE mixin 使用
    leetcode每天5题-Day34
    自定义httpServletRequestWrapper导致上传文件请求参数丢失
    Java BIO,NIO,AIO
    什么是终端特权管理
    SpringBoot开发使用篇
    Docker 网络
  • 原文地址:https://blog.csdn.net/mucheni/article/details/133636024