驱动
yangkunhenry
阿猫
展开
-
SPI Flash读取操作
今天看到有人在问SPI flash读取数据的方法,为什么这样读取?先给出一个函数,SPI的读取函数:/*! \brief read a block of data from the flash \param[in] pbuffer: pointer to the buffer that receives the data read from the flash...原创 2020-03-06 21:04:36 · 6138 阅读 · 12 评论 -
往当前内核添加驱动程序
接上前面编译内核的文章内核编译好了之后,自己要往内核中添加自己的驱动程序,如果加呢?选择一个目录加入自己的驱动文件nasri@ubuntu:~/Work/linux-source-3.13.0/$ 因为前面编译内核是在上面这个目录下编译的所以就在这里添加自己的驱动文件,在driver/char 下创建一个目录nasritestnasri@ubuntu:~/Work/li...原创 2019-11-07 00:55:21 · 1521 阅读 · 2 评论 -
判断字符串是否是IPV4格式
int IsVaildIP(const char* domain_array,const u8 domain_array_size){ int i = 0; int dot_count = 0; int ret = 0; int ip1 = 0; int ip2 = 0; int ip3 = 0; int ip4 = 0; printf("domain_array = %...原创 2018-07-26 16:17:06 · 1618 阅读 · 0 评论 -
以C99的方式编译内核模块
obj-m := driver1.occflags-y := -std=gnu99 -Wno-declaration-after-statementMakefile 中加入ccflags-y := -std=gnu99 -Wno-declaration-after-statement原创 2019-07-05 06:19:51 · 759 阅读 · 0 评论