摘要:
ncs版本:v2.5.0 操作系统:zephyr 例程:wm1110-asset-tracker 1.打开示例工程的github地址,参照Building the application步骤 https://github.com/aws-samples/wm1110-asset-tracker/tr 阅读全文
摘要:
1.diff方式 1.1 某两笔(包前包后)提交之间的所有提交 git diff commitID1 commitID2 > patch.diff 1.2 将单个文件做成一个单独的补丁 git diff testFile > patch 1.3 将工作区与版本库的差异做成补丁 git diff -- 阅读全文
摘要:
1.查看tag git tag 2.创建tag git tag v1.0 3.上传tag git push origin v1.0 阅读全文
摘要:
删除子模块需要进行以下步骤 1.使用命令-删除子模块目录及源码 rm -rf 子模块目录 2.使用命令-删除项目目录下.gitmodules文件中子模块相关条目 ①vi .gitmodules ②手动删除文件中的子模块目录 ③wq! 3.删除配置项中子模块相关条目 ①vi .git/config ② 阅读全文
摘要:
1.进入主仓库创建一个lib用于存放子仓库,在cd lib,使用命令git submodule add https://github.com/xxx.git 可以将远端仓库的xxx克隆到当前文件夹,它会在主仓库生成一个.gitmodules文件,文件中包含 [submodule "lib/xxx"] 阅读全文
摘要:
在gitbash中使用以下命令设置代理,其中主要更改项为端口号,需要设置为你的代理软件的http端口 export HTTP_PROXY="http://localhost:8001" export HTTPS_PROXY="http://localhost:8001" 阅读全文
摘要:
sdk版本:nRF5_SDK_17.1.0_ddde560 主要更改以下函数: uint32_t ble_nus_init(ble_nus_t * p_nus, ble_nus_init_t const * p_nus_init) { ret_code_t err_code; ble_uuid_t 阅读全文
摘要:
https://img2022.cnblogs.com/blog/2737312/202210/2737312-20221009101700974-1389789924.png 阅读全文

摘要:
#安装esp_idf 借鉴博客 https://www.cnblogs.com/Super-why/p/15525174.html 阅读全文
摘要:
借鉴 https://blog.csdn.net/cumt240/article/details/109267087 当出现用VNC访问树莓派时无法连接,二树莓派的vnc已打开,但出现Missing or corrupt private keys时,使用以下命令强制生成密匙 sudo Xvnc -g 阅读全文