上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页
摘要: 详见: P2P GO Client角色的协商 示例环境:两个P2P device,一个作为Group owner(arm 板子), 一个作为p2p client(小米9),以pbc方式连接 小结: 1. p2p建立连接的过程中,有两个设备: P2P连接发起端/P2P连接接受端 双方通过协商来确定谁是 阅读全文
posted @ 2020-12-10 18:16 朱果果 阅读(2557) 评论(0) 推荐(0) 编辑
摘要: 推荐一篇 阮一峰大佬讲字符编码的文章: 字符编码笔记:ASCII,Unicode 和 UTF-8 字符编码转换工具 阅读全文
posted @ 2020-12-08 16:13 朱果果 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 数字转string std::to_string(int) std::to_string(long) std::to_string(long long) std::to_string(float) std::to_string(double) std::to_string(long double) 阅读全文
posted @ 2020-12-02 12:51 朱果果 阅读(311) 评论(0) 推荐(0) 编辑
摘要: wpa_supplicant2.9编译过程 阅读全文
posted @ 2020-11-26 10:15 朱果果 阅读(261) 评论(0) 推荐(0) 编辑
摘要: 问题:连接不稳定,经常掉线,电脑连接上link speed速率仅有6~46Mb/s,手机上433Mb/s 引用来源:5G时,hostapd的信道只能有以下几个 int allowed[] = { 36, 44, 52, 60, 100, 108, 116, 124, 132, 140, 149, 1 阅读全文
posted @ 2020-11-26 10:14 朱果果 阅读(5527) 评论(0) 推荐(0) 编辑
摘要: 报错一:在配置AP模式的时候,出现挂载不上bcmdhd.ko的情况,并且是有规律的一次可以,一次不可以 hostapd的执行脚本如下: 1 #!/bin/sh 2 3 dir=`dirname $0` 4 cd $dir 5 modprobe ahci.ko 6 modprobe bcmdhd.ko 阅读全文
posted @ 2020-11-26 10:08 朱果果 阅读(3355) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/jiabei521/p/3335676.html 阅读全文
posted @ 2020-11-16 17:53 朱果果 阅读(69) 评论(0) 推荐(0) 编辑
摘要: size_t和unsigned int有所不同,size_t的取值range是目标平台下最大可能的数组尺寸,一些平台下size_t的范围小于int的正数范围,又或者大于unsigned int. 最典型的,在x64下,int还是4,但size_t是8.这意味着你在x64下最大可能开辟的数组尺寸是2^ 阅读全文
posted @ 2020-11-16 16:42 朱果果 阅读(918) 评论(0) 推荐(0) 编辑
摘要: 文章转自:https://blog.csdn.net/Liuchuang_MFC/article/details/49745703 c++全局变量在大型程序中不应出现太多: 原因: 1、使用全局变量实际上是增加了模块之间的耦合强度,同时会产生数据有效性问题,当然这种耦合强度还是可接受的,有时候也是避 阅读全文
posted @ 2020-11-16 15:42 朱果果 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: 详见: 关于C++ const 的全面总结 取代#define 阅读全文
posted @ 2020-11-15 23:33 朱果果 阅读(72) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 29 下一页