上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

2022年4月3日

Openwrt出现Please install the openssl library (with development headers)等错误时

摘要: 1.sudo apt-get install libssl-dev、 执行./scripts/feeds install -a -f 2.sudo apt-get install subversion 3.sudo apt-get install gawk 阅读全文

posted @ 2022-04-03 12:58 让代码改变世界ha 阅读(335) 评论(0) 推荐(0) 编辑

2022年4月2日

Ubuntu安装FTP服务器

摘要: 1.安装vsftpd apt-get install vsftpd 2.配置vim /etc/vsftpd.conf 开启写文件使能 添加 chroot_local_user=YESchroot_list_file=/etc/vsftpd.chroot_listlocal_root=/var/ftp 阅读全文

posted @ 2022-04-02 21:41 让代码改变世界ha 阅读(155) 评论(0) 推荐(0) 编辑

const类型的使用

摘要: const int *p; // p 可变,p 指向的对象不可变int const *p; // p 可变,p 指向的对象不可变int *const p; // p 不可变,p 指向的对象可变const int *const p; //指针p 和p 指向的对象都不可变 阅读全文

posted @ 2022-04-02 10:27 让代码改变世界ha 阅读(32) 评论(0) 推荐(0) 编辑

2022年4月1日

Ubuntu 使用putty登录

摘要: 一、安装ssh服务 sudo apt-get install openssh-server 启动服务 sudo service ssh start 查看服务是否运行 sudo ps -e |grep ssh 二、设置Ubuntu root初始密码 sudo passwd 三、查看ubuntu ip地 阅读全文

posted @ 2022-04-01 19:51 让代码改变世界ha 阅读(730) 评论(0) 推荐(0) 编辑

MT7688 Ubuntu uboot编译报错问题

摘要: make menuconfig 错误 1.fatal error: zlib.h: No such file or directorysudo apt-get install zlib1g-dev 2./usr/bin/ld: cannot find -lncurses 如果是32位的就用:sudo 阅读全文

posted @ 2022-04-01 19:15 让代码改变世界ha 阅读(174) 评论(0) 推荐(0) 编辑

2021年12月22日

AECQ-100车规级认证

摘要: 转载 https://blog.csdn.net/tfslovexizi/article/details/88733291 定义:主要是针对车载应用,汽车零部件,汽车车载电子实施标准规范,建立质量管理控制标准,提高车载电子的稳定性和标准化。预防可能发生各种状况或潜在的故障状态,对每一个芯片进行严格的 阅读全文

posted @ 2021-12-22 16:16 让代码改变世界ha 阅读(1215) 评论(0) 推荐(0) 编辑

2021年9月10日

关于MCU 开门狗要求

摘要: 大众要求开门狗满足三点功能: 1、开门狗时钟源独立于MCU时钟。 2、开门狗时自动激活的 3、在初始化配置之外不能重新配置或停止开门狗 阅读全文

posted @ 2021-09-10 16:32 让代码改变世界ha 阅读(132) 评论(0) 推荐(0) 编辑

2021年8月23日

can 总线ACK场

摘要: 一、ACK场定义 ACK场分为两个bit位, 1.ACK slot(应答间隙) 2.ACK delimiter (应答界定符) 在发送器发送时,应答解析和应答界定符都为隐性电平,在接收器确定接收到有效的报文后,会在应答间隙发送ACK确定信号,即发送显示电平以做应答,此处注意ACK的回应和MCU的滤波 阅读全文

posted @ 2021-08-23 13:01 让代码改变世界ha 阅读(1268) 评论(0) 推荐(0) 编辑

2021年7月30日

IIS通信

摘要: 一、概述 2S = Inter-IC Sound = Integrated Interchip Sound = IIS, 是飞利浦在1986年定义(1996年修订)的数字音频传输标准,用于数字音频数据在系统内器件之间传输,例如编解码器CODEC、DSP、数字输入/输出接口、ADC、DAC和数字滤波器 阅读全文

posted @ 2021-07-30 17:03 让代码改变世界ha 阅读(317) 评论(0) 推荐(0) 编辑

2021年7月27日

python 调用C++动态链接库

摘要: 编写C++文件 使用g++输出链接库 g++ -o test1.so -shared -fPIC Test.cpp 编写python文件test1.py 运行脚本 阅读全文

posted @ 2021-07-27 13:20 让代码改变世界ha 阅读(98) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 12 下一页

导航