摘要: ifconfig wlan0 down ifconfig wlan0 up iwlist wlan0 scan|grep ESSID|cut -d\":\" -f2" //获取可用WIFI列表 wpa_supplicant -B -Dnl80211 -iwlan0 -c /etc/wpa_suppl 阅读全文
posted @ 2021-12-14 17:03 Mike_2019 阅读(135) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/260163123 https://blog.csdn.net/emma_xm/article/details/116598550 https://blog.csdn.net/main_476/article/details/11953432 阅读全文
posted @ 2021-10-29 19:33 Mike_2019 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 1、时钟 HSE_VALUE:8000000SystemCoreClock:168000000PLL_M:8PLL_N:336PLL_P:2PLL_Q:7 printf("\r\n* SystemCoreClock:%d MHz", SystemCoreClock); printf("\r\n* S 阅读全文
posted @ 2021-08-11 18:49 Mike_2019 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 1、QString 1.1 QString转char* 先将QString转为QByteArray,再将QByterray转为char* QString str; char * ch; QByteArray byte = str.toLatin1(); //将QString转为QByteArray 阅读全文
posted @ 2021-04-14 20:15 Mike_2019 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 1、常用的应用 1)、 C/C++,这个肯定是必须的。 2)、 C/C++ Snippets,即 C/C++重用代码块。 3)、 C/C++ Advanced Lint,即 C/C++静态检测 。 4)、 Code Runner,即代码运行。 5)、 Include AutoComplete,即自动 阅读全文
posted @ 2021-01-21 15:49 Mike_2019 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 知识点: 1. Ubuntu驱动程序开发2-Uboot使用(bootcmd、bootargs、uboot命令) 1 更新uboot到EMMC 1.1 在uboot中更新uboot 将编译好的u-boot.imx拷贝到Ubuntu中的tftpboot目录下,然后在uboot命令行下执行以下命令 mmc 阅读全文
posted @ 2020-12-29 11:38 Mike_2019 阅读(472) 评论(0) 推荐(0) 编辑
摘要: tftp和nfs用于在开发板上通过网络系统来访问ubuntu系统下的文件。ssh服务用于支持在Windows下使用终端软件SecureCRT,MobaXterm登陆Ubuntu。 1 搭建NFS服务 sudo apt-get install nfs-kernel-server rpcbind #安装 阅读全文
posted @ 2020-12-28 19:54 Mike_2019 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 一、设置环境变量三种方法 1.1 临时变量 直接在终端命令框输入: export PATH=$PATH:/usr/local/arm/gcc-linaro-4.9.4-2017.01-x86_64_arm-linux-gnueabihf/bin 1.2 当前用户的全局设置 sudo vim ~/.b 阅读全文
posted @ 2020-12-28 10:34 Mike_2019 阅读(1672) 评论(0) 推荐(0) 编辑
摘要: 1、概述 2、初始化 2.1 QByteArray() QByteArray array1; array1.resize(4); array1[0] = 1; array1[1] = 2; array1[2] = 'm'; array1[3] = 'k'; qDebug() << array1; / 阅读全文
posted @ 2020-12-24 11:50 Mike_2019 阅读(7104) 评论(0) 推荐(0) 编辑
摘要: PyPI: https://pypi.org/project/QCustomPlot2/ 1、安装所需依赖:PyQT5、PyQt5-sip、sip 2、下载安装源文件: 3、解压进入到文件夹 QCustomPlot2-2.0.1 4、执行 CFLAGS=-std=c++11 CXXFLAGS=-st 阅读全文
posted @ 2020-10-05 18:49 Mike_2019 阅读(1497) 评论(0) 推荐(1) 编辑