摘要: 一、写在前面 硬件板子:XIAO ESP32 S3 Sense ESP32-S3R8, Xtensa LX7 双核,32 位处理器,运行频率高达 240 MHz ESP-IDF下载:dl.espressif.cn/dl/esp-idf/ 选择最新的Offline Installer (比如 ESP- 阅读全文
posted @ 2026-01-02 16:03 梦一场6688 阅读(9) 评论(0) 推荐(0)
摘要: WSL是什么: Windows Subsystem for Linux,即在Windows上安装Linux子系统,无需双系统,也无需虚拟机; Windows系统版本:Win10及以上 WSL安装子系统: wsl命令行 通过Microsoft Store安装Ubuntu系统 进入WSL 在终端敲wsl 阅读全文
posted @ 2025-11-19 21:38 梦一场6688 阅读(4) 评论(0) 推荐(0)
摘要: Git中的一笔commit提交,可以成为patch 生成Patch 带有commit信息: git format-patch -1 HEAD only代码 应用Patch check是否有冲突 git apply --check 0001-xxx.patch 应用Patch git apply 00 阅读全文
posted @ 2025-10-08 21:33 梦一场6688 阅读(7) 评论(0) 推荐(0)
摘要: 添加/删除用户 sudo useradd -m -d /home/newuser -s /bin/bash newuser sudo passwd newuser 新建/删除用户 su: Super User即系统管理员 useradd: 新建用户 userdel: 删除用户 passwd : 修改 阅读全文
posted @ 2025-09-14 14:25 梦一场6688 阅读(13) 评论(0) 推荐(0)
摘要: 应用场景:Windows电脑 + Android开发 Windows: cmd --> Powershell Linux: bash scripts cmd: bat scripts (xxx.bat) powershell: cmdlet (xxx.ps1) alias命令: Get-Alias 阅读全文
posted @ 2025-09-07 22:22 梦一场6688 阅读(14) 评论(0) 推荐(0)
摘要: 从LunarG网站上下载Vulkan SDK: https://www.lunarg.com/vulkan-sdk/ 目前[2025/08/30]最新SDK为:1.4.321.1 安装SDK后打开:vulkanCapsViewer.exe VulkanCapsViewer的android版本为:ht 阅读全文
posted @ 2025-08-30 15:16 梦一场6688 阅读(279) 评论(0) 推荐(0)
摘要: 普通指针语法: datatype *var_name; int* ptr; uint_8 *buffer; 函数指针语法: return_type (*FuncPtr) (parameter type, ....); 应用场景: 利用函数指针来调用函数:dlopen/dlsym 将函数作为参数传入: 阅读全文
posted @ 2025-04-12 17:22 梦一场6688 阅读(18) 评论(0) 推荐(0)
摘要: 下载文件: wget https://pjreddie.com/media/files/yolov3.weights wget https://raw.githubusercontent.com/quic/qidk/refs/heads/master/Solutions/VisionSolution 阅读全文
posted @ 2025-01-30 18:10 梦一场6688 阅读(65) 评论(0) 推荐(0)
摘要: Jupyter Notebook (.pynb)是一个集bash脚本和Python脚本为一体的、交互式脚本文件 安装install 建议conda安装:conda install jupyter 启动 Running the Notebook jupyter notebook VSCode中使用 V 阅读全文
posted @ 2025-01-19 12:01 梦一场6688 阅读(70) 评论(0) 推荐(0)
摘要: 一、现有test.sh脚本如下: #!/bin/bash echo "Hello World" echo字符串 需要加引号'''' 方法一: 方法二: sh test.sh拓展名为sh,那么用sh解释执行就可以了 二、for循环打印 #/bin/bash for SCENE in animal bu 阅读全文
posted @ 2024-12-03 20:49 梦一场6688 阅读(21) 评论(0) 推荐(0)