会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
hostid
博客园
首页
管理
上一页
1
2
3
4
5
6
7
8
···
11
下一页
2020年4月2日
设备树相关知识点
摘要: 1、dtb反汇编为dts ./scripts/dtc/dtc I dtb O dts o tmp.dts arch/arm/boot/dts/imx6q sabresd.dtb
阅读全文
posted @ 2020-04-02 21:18 hostid
阅读(130)
评论(0)
推荐(0)
2020年3月31日
嵌入式开发平台开机自启应用程序
摘要: https://www.cnblogs.com/downey blog/p/10473939.html https://www.cnblogs.com/aaronLinux/p/6804531.html https://blog.csdn.net/catfish408/article/details
阅读全文
posted @ 2020-03-31 18:23 hostid
阅读(156)
评论(0)
推荐(0)
2020年3月22日
mingw/pychar安装
摘要: https://www.cnblogs.com/xiaolantian/p/10746206.html Win+R 打开运行,输入cmd回车 2. 安装gcc:输入 mingw32 get install gcc 回车 3. 安装g++:输入 mingw32 get install g++ 回车 4
阅读全文
posted @ 2020-03-22 14:12 hostid
阅读(329)
评论(0)
推荐(0)
2019年11月28日
vlc推流与播放流
摘要: https://blog.csdn.net/Fan0920/article/details/52995364 https://blog.csdn.net/u010168781/article/details/80006889 vlc播放文件/播放流 https://www.cnblogs.com/f
阅读全文
posted @ 2019-11-28 10:46 hostid
阅读(2564)
评论(0)
推荐(0)
input架构
摘要: https://www.cnblogs.com/lifexy/p/7542989.html //驱动+应用 https://www.cnblogs.com/xiaojiang1025/p/6414746.html https://www.cnblogs.com/andyfly/p/9512291.h
阅读全文
posted @ 2019-11-28 09:38 hostid
阅读(155)
评论(0)
推荐(0)
2019年11月27日
Frambuff设备驱动框架
摘要: https://www.cnblogs.com/lifexy/p/7604011.html https://blog.csdn.net/z961968549/article/details/78821082 https://www.cnblogs.com/silencehuan/p/11202496
阅读全文
posted @ 2019-11-27 13:47 hostid
阅读(227)
评论(0)
推荐(0)
块设备之-磁盘的基本概念
摘要: https://www.cnblogs.com/jswang/p/9071847.html
阅读全文
posted @ 2019-11-27 09:48 hostid
阅读(201)
评论(0)
推荐(0)
2019年11月26日
iic驱动模型
摘要: https://www.cnblogs.com/lifexy/p/7816324.html https://blog.csdn.net/shenlong1356/article/details/89212234 https://blog.csdn.net/m0_37661202/article/de
阅读全文
posted @ 2019-11-26 17:24 hostid
阅读(181)
评论(0)
推荐(0)
SPI驱动模型-Slave
摘要: spi_register_driver()函数中有设置bus总线类型为spi_bus,然后会调用mathch函数,再去比对boardinfo的信息与driver注册的信息是否一致 一致的话调用driver的probe函数。 SPI驱动模型参考 http://blog.chinaunix.net/ui
阅读全文
posted @ 2019-11-26 15:44 hostid
阅读(263)
评论(0)
推荐(0)
SPI驱动模型-Master
摘要: SPI驱动模型参考 http://blog.chinaunix.net/uid 21501855 id 5211900.html https://blog.csdn.net/droidphone/article/details/24353293 https://blog.csdn.net/lizuo
阅读全文
posted @ 2019-11-26 15:09 hostid
阅读(196)
评论(0)
推荐(0)
Platform驱动模型匹配过程
摘要: ``` #device方面: platform_device_register(struct platform_device *dev) platform_device_add(pdev); device_add(&pdev->dev); bus_probe_device(dev); device_attach(dev); bus_for_each_drv(dev->bus, NULL, dev,
阅读全文
posted @ 2019-11-26 13:32 hostid
阅读(399)
评论(0)
推荐(0)
2019年11月22日
esp8266
摘要: esp8266开发有多种方式 0\基于官方的sdk开发:no os /os https://www.cnblogs.com/imliubo/tag/ESP8266/ 1\lora脚本 https://www.cnblogs.com/zeroes/tag/nodemcu/ 2\arduno ide 开
阅读全文
posted @ 2019-11-22 15:21 hostid
阅读(148)
评论(0)
推荐(0)
linux下阻塞与非阻塞
摘要: 1\阻塞与非阻塞由应用层传递flag,驱动层根据flag进行相应的操作,其实现本质还是在驱动层,如果阻塞模式则应用层在open时传入阻塞 参数. 在read数据时,若底层数据尚未准备好,则驱动层就会进行休眠.知道有数据时驱动层此时才会操作/dev/xx设备,对于应用层而言此时才能在/dev/xx对应
阅读全文
posted @ 2019-11-22 13:50 hostid
阅读(621)
评论(0)
推荐(0)
2019年11月21日
总线模型与spi驱动模型
摘要: 1\bus与platfomr bus区别 https://www.cnblogs.com/reality soul/articles/4633970.html https://blog.csdn.net/yachl882828/article/details/74221889 https://blo
阅读全文
posted @ 2019-11-21 16:11 hostid
阅读(191)
评论(0)
推荐(0)
ubuntu系统下驱动测试
摘要: https://blog.csdn.net/weixin_38184741/article/details/100123002 https://blog.csdn.net/a935367276/article/details/92853665 //总线参考示例 https://blog.csdn.n
阅读全文
posted @ 2019-11-21 16:10 hostid
阅读(298)
评论(0)
推荐(0)
2019年11月19日
iotctl
摘要: //linux内核层提供了构造ioctl命令的宏 include _IO(type,nr)(给没有参数的命令), _IOR(type, nre, datatype)(给从驱动中读数据的), _IOW(type,nr,datatype)(给写数据), _IOWR(type,nr,datatype)(给
阅读全文
posted @ 2019-11-19 15:07 hostid
阅读(297)
评论(0)
推荐(0)
2019年11月18日
单色屏幕驱动库u8g2
摘要: api: https://blog.csdn.net/dpjcn1990/article/details/92831760 https://www.cnblogs.com/huan huan/p/8528307.html https://www.rt thread.org/qa/forum.php?
阅读全文
posted @ 2019-11-18 13:39 hostid
阅读(408)
评论(0)
推荐(0)
2019年11月13日
栈与队列
摘要: 栈的实现 实现方式可以是顺序栈。 顺序栈的内存可以是以数组的方式静态分配,也可以malooc动态分配。 同样实现方式也可以是链式栈。 队列的实现 队列的特性用链式的方式实现较为合理。 https://blog.csdn.net/qq_35924276/article/details/81384826
阅读全文
posted @ 2019-11-13 11:15 hostid
阅读(96)
评论(0)
推荐(0)
PID控制算法
摘要: https://blog.csdn.net/qq_25352981/article/details/81007075 https://blog.csdn.net/liangbin414/article/details/88596320 https://wenku.baidu.com/view/cbf
阅读全文
posted @ 2019-11-13 10:25 hostid
阅读(152)
评论(0)
推荐(0)
2019年11月12日
c-哈希結構
摘要: https://www.cnblogs.com/secoding/p/9609354.html https://blog.csdn.net/weixin_40204595/article/details/81584679 https://blog.csdn.net/qq_39630587/artic
阅读全文
posted @ 2019-11-12 13:30 hostid
阅读(142)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
11
下一页
公告