Library Search
结果页树莓派 CM4 编程例程 — rpiboot 烧录 + GPIO + PCIe + 集群
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
8 个 OpenOCD while IFS= read -r serial || [ -n "$serial" ]; do
[ -z "$serial" ] && continue
TOTAL=$((TOTAL + 1))
if flash_device "$serial"; then
SUCCESS=$((SUCCESS + 1))
fi
done < "$SERIAL_… 3% ESP-IDF ```bash
# 1. 激活 ESP-IDF 环境
. ~/esp/esp-idf/export.sh
# 2. 设置目标芯片
idf.py set-target esp32
# 3. 配置(可选 — 修改分区表等)
idf.py menuconfig
# 4. 编译 & 烧录 & 监控
idf.py build flash monitor
# 退出监控:Ctrl+]
```
## 预期… 2% MLflow # MLflow 入门教程:四大组件实战
## 1. MLflow 的四大支柱
```
Tracking ──── 记录参数/指标/模型 artifact
Projects ──── 打包训练代码为可复现单元
Models ──── 统一模型格式,跨部署平台
Registry ──── 模型版本管理与审批流转
```
## 2. Tracking:手动 vs 自动
### autolog… 2% PlatformIO ```yaml
# .github/workflows/build.yml
name: PlatformIO CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3… 2% SEGGER J-Link # 批量烧录(脚本循环)
for i in {1..100}; do
JFlash -openprj production.jflash \
-open "firmware_v1.2.hex" \
-auto \
-exit
echo "设备 #$i 完成"
done
```
### 5. 序列号 CSV 定制… 1% Apache Cassandra -- 6. 更新(实际上也是插入,因为 Cassandra 是 upsert)
UPDATE students SET gpa = 3.9 WHERE department = 'Computer Science' AND student_id = <某个UUID>;
-- 7. 删除
DELETE FROM students WHERE department = 'Computer Scien… 1% STM32 HAL/LL # 4. VSCode 安装插件
# - Cortex-Debug
# - C/C++ (Microsoft)
# - ARM Assembly
```
### 方式三:PlatformIO 选项
```bash
# platformio.ini
[env:nucleo_f401re]
platform = ststm32
board = nucleo_f401re
framework = s… 1% Linux # Linux 例程:Shell 脚本——服务器资源监控
## 目标
写一个实用的 Bash 监控脚本,展示 Linux 管道、重定向、grep/awk/sed 核心技法。
## 完整脚本
```bash
#!/bin/bash
# monitor.sh —— 轻量服务器资源监控
set -euo pipefail # 严格模式:遇错即停、未定义变量报错、管道失败报错
# ── 配置… 1%