上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页
摘要: 四种调度器: 1、Noop IO scheduler (FIFO算法,电梯梯度算法) 会将请求与上个请求看能否合并处理, 看能否进行排序,如果是前面排序所需要的时间跟当前时间过长,则不进行排序处理 2、CFQ IO scheduler(完全公平算法) 会对每个进程的分配 一个请求队列和时间片 3、D 阅读全文
posted @ 2022-07-25 08:41 cogitoergosum 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 1、根据协议名称,可以看出 zmodem > ymodem > xmodem ,zmodem的协议设计是最优, xmodem 现在基本已经不再使用 ymodem的协议理解: 开始帧、数据帧、结束帧, 各个帆格式如下: 参考链接: https://shequ.stmicroelectronics.cn 阅读全文
posted @ 2022-07-23 11:02 cogitoergosum 阅读(1053) 评论(0) 推荐(0) 编辑
摘要: 1、定义通用文件时,可以将文件名称命名: zglobal.h 2、 pop 对应 push, begin 对应 end,front 对应back, new 对应 delete alloc 对应 free insert 对应 remove 3、RIL(Radio Interface Layer) 用于 阅读全文
posted @ 2022-07-23 08:45 cogitoergosum 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 常用C代码碎片: 1、函数参数接口 typedef int(*pfunc)(int x, int y) //pfunc是带两个参数,返回值为int pfunc handler 2、宏函数、宏字符串连接 #define joiner(param1, param2) param1##param2 #de 阅读全文
posted @ 2022-07-20 08:57 cogitoergosum 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 1、Gitblit 1、首先要搭建JAVA环境,安装JRE和JDK 2、下载Gitblit 并配置加载启动 3、Gitblit 进行仓库创建, 本地git checkout 参考链接: https://cloud.tencent.com/developer/article/1742095 2、Git 阅读全文
posted @ 2022-07-15 09:41 cogitoergosum 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 1、GPIO输出 1、开漏输出 开漏输出的默认状态是不确定的,一般需要加上外部电阻进行上拉或下拉, 也可以用软件决定上拉或下拉属性 应用于I2C、SMBUS通讯 2、推挽输出 3、模拟输出 外部信号传入单片机的D/A转换器,然后单片机就可以将数字量转换为模拟量输出 2、GPIO输入 1、浮空输入 2 阅读全文
posted @ 2022-07-06 11:32 cogitoergosum 阅读(411) 评论(0) 推荐(0) 编辑
摘要: FTP 有分主动与被动方式, 主动方式是客户端通过端口21发起控制连接后,服务器通过端口号20主动连接客户端进行数据通讯 被动方式 客户端通过端口21进行控制连接,然后服务器告知自己端口号通知客户端进行连接,客户端得知进行数据连接 参考链接:https://zhuanlan.zhihu.com/p/ 阅读全文
posted @ 2022-07-01 11:57 cogitoergosum 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1、总结韦东山的寄存器内容 ARM有哪些寄存器, r1-r15 spsr r1-r5 通用寄存器,在栈传送过程一般用做参数处理 r13 - sp r14 - lr r15 - pc spsr 2、学习堆栈内容切换 r1-r5是系统自身切换实现 3、ARM指令 str store register 从 阅读全文
posted @ 2022-07-01 08:35 cogitoergosum 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 参考链接:https://blog.csdn.net/qq_40943944/article/details/107000226 阅读全文
posted @ 2022-06-24 08:44 cogitoergosum 阅读(140) 评论(0) 推荐(0) 编辑
摘要: BACNET MS/TP , 其中MS/TP全称是Master Slave/ Token Pass, 是无主从协议,靠令牌传递进行实现 参考链接: https://www.daoshengshu.com/html/bacnet%20mstp%20%E5%8D%8F%E8%AE%AE/ 系统实现基于B 阅读全文
posted @ 2022-06-23 10:01 cogitoergosum 阅读(4405) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 53 下一页