摘要: Makefile 编译报错。 阅读全文
posted @ 2023-07-18 17:35 CristL 阅读(1672) 评论(0) 推荐(0) 编辑
摘要: 静态库链接小tip 阅读全文
posted @ 2021-09-08 17:02 CristL 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 串口实现原理及配置介绍 阅读全文
posted @ 2021-08-07 23:07 CristL 阅读(458) 评论(0) 推荐(0) 编辑
摘要: shell 脚本实现 阅读全文
posted @ 2021-07-29 23:21 CristL 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 通过宏定义格式化日志格式。 阅读全文
posted @ 2021-07-08 23:53 CristL 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 脚本运行带参数,动静态库打包及使用。 阅读全文
posted @ 2021-07-08 23:42 CristL 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 代码注释原则 阅读全文
posted @ 2021-05-20 22:58 CristL 阅读(252) 评论(0) 推荐(1) 编辑
摘要: 编译器编译选项对比分析简介。 阅读全文
posted @ 2021-05-04 17:21 CristL 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: ####Linux端进程运行状态查找 查找正在运行的程序: ps -aux 遍历查找是否存在已知进程: ps -aux | grep proc_str 查找结果中只显示有效的查找信息: ps -a -ocomm | grep proc_str Exp: 脚本编写: #!/bin/sh while [ 阅读全文
posted @ 2021-04-01 17:28 CristL 阅读(122) 评论(0) 推荐(0) 编辑
摘要: ###本地网卡设备 eth1 配置 IP配置 配置命令: ifconfig eth1 192.168.x.x 广播地址、掩码配置 配置命令: ifconfig eth1 192.168.x.x broadcast 192.168.1.255 netmask 255.255.255.0 网关配置 配置 阅读全文
posted @ 2021-02-25 18:43 CristL 阅读(4161) 评论(0) 推荐(0) 编辑