1.学习c/c++的框架
#include <stdio.h>
int main()
{
return 0;
}
#include <iostream>
using namespace std;
int main()
{
return 0;
}
这是很多人学习的起点吧 ,也正是这个框架让很多人更容易的入门C/c++语言
2.学习嵌入式开发的框架
那么学习嵌入式有没有一个记住了就可以事倍功半的框架的,答案是肯定有的
直接上代码
//头文件包含
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/delay.h>
#include <linux/ide.h>
#include <linux/init.h>
#include <linux/module.h>
//宏定义
#define MAJOR 200
#define NAME "hello"
//把驱动入口看成main函数 是程序的开始 从下往上看
//file_opetations 的成员函数实现
static int hello_open(struct inode *inode, struct file *filp)
{
return 0;
}
static int hello_release(struct inode *inode, struct file *filp)
{
return 0;
}
//设备操作函数结构体
static struct file_operations hello_fops= {
.owner = THIS_MODULE,
.open = hello_open,
.release = hello_release,
};
//驱动入口
static int __init hello_init (void)
{
int ret = 0;
ret = register_chrdev(MAJOR, NAME, &hello_fops);
if(retvalue < 0){
printk("register_chrdev failed \n");
}
printk("this is hello_init \n");
return 0;
}
//驱动出口
static void __exit hello_exit(void)
{
unregister_chrdev(MAJOR, NAME);
printk("this is hello_exit \n");
}
module_init(hello_init );
module_exit(hello_exit);
MODEULE_LICENSE("GPL");
这是一个很简单的框架 需要记住 , 驱动开发框架的步骤
1 驱动模块的加载和卸载 :入口与出口
2 字符设备注册与注销 : register_chrdev / unregister_chrdev
3
实现设备的具体操作函数 hello_open / hello_relase
4 添加 LICENSE 和作者信息 MODEULE_LICENSE("GPL")