上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页
摘要: #!/bin/sh echo "network configuration..." # 启动AP网卡和USB网卡 ifconfig wlan0 up ifconfig eth1 up # 更改br0-lan网卡的地址 uci set network.lan.ipaddr=10.10.10.1 # 配 阅读全文
posted @ 2021-11-04 14:39 duapple 阅读(297) 评论(0) 推荐(0) 编辑
摘要: # # 可执行文件名称 # app = gateway ifeq ($(OS), Windows_NT) exec = $(app).exe else exec = $(app) endif # # 交叉编译设置 # set_env += : set_env += ; export CGO_CFLA 阅读全文
posted @ 2021-11-03 16:50 duapple 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Golang 结构体转字节数组(struct to []byte) 代码: package main import ( "bytes" "encoding/binary" "fmt" log "fmt" ) type NCPTargetVersion struct { NCPVersion uint 阅读全文
posted @ 2021-10-27 13:38 duapple 阅读(60) 评论(0) 推荐(0) 编辑
摘要: clang-format配置与使用 参考教程. 1. 安装 下载clang-format,设置环境变量。我使用的是vscode扩展中的clang-format。 位于: extensions/ms-vscode.cpptools-1.7.0-insiders/bin/。 将程序放置到系统边境变量的路 阅读全文
posted @ 2021-09-30 15:08 duapple 阅读(471) 评论(0) 推荐(0) 编辑
摘要: 全志A33开发板烧录Image到EMMC教程 当前环境: Manjaro Linux 软件: sunxi-livesuite 1. 安装烧录软件 $ yay -S sunix-livesuite-git $ sudo sunxi-livesuite 2. 烧录 选择固件。 拔掉OTG Debug线, 阅读全文
posted @ 2021-09-27 00:57 duapple 阅读(193) 评论(0) 推荐(0) 编辑
摘要: Linux TFTP 当前环境为Manjro Linux。 1. TFTP Server Google 搜索Archwiki tftp。 安装tftp server。 $ yay -S tftp-hpa 修改tftp的默认路径。 $ sudo vim /etc/conf.d/tftp 将文件中路径设 阅读全文
posted @ 2021-09-08 11:15 duapple 阅读(11) 评论(0) 推荐(0) 编辑
摘要: qtextbrowser支持html语法来设置字体。因此使用html语法来设置字体颜色。 但是使用这个方式来设置字体颜色会有Bug。在设置某一部分字体颜色后,有概率导致后续字体颜色,都变成设置的颜色。下面是一种解决方案。 通过宏来控制字体颜色,并在设置完某部分字体颜色后,将颜色变回黑色,则可以解决这 阅读全文
posted @ 2021-09-04 16:12 duapple 阅读(224) 评论(0) 推荐(0) 编辑
摘要: Git新版本使用教程 1. HTTPS 8月13号开始,github已经不支持使用用户名和密码来完成推送代码的鉴权了。理由是不安全。 https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations 阅读全文
posted @ 2021-09-03 15:34 duapple 阅读(88) 评论(0) 推荐(0) 编辑
摘要: Linux快捷键 1. bash 参考菜鸟教程,提取了一些常用的,并且在重复功能快捷键中选择一种使用。 快捷键功能CTRL A光标移动到行首CTRL E光标移动到行尾CTRL H删除并退格CTRL M回车CTRL J换行CTRL N 或 ALT Nhistory 下一个命令CTRL P 或 ALT 阅读全文
posted @ 2021-09-02 15:46 duapple 阅读(6) 评论(0) 推荐(0) 编辑
摘要: linux挂载NFS的几个注意事项。在使用嵌入式Linux时,需要注意的几个问题。 1. 服务端需要开启 nfs server 2. 本机挂载,检查服务是否成功。 3. 客户端通过Ping测试,检测网络连通。 4. 客户端需要支持nfs client,在内核中进行配置 $ make menuconf 阅读全文
posted @ 2021-08-29 21:44 duapple 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 15 下一页