Library Search
结果页STM32F103C8T6 Blue Pill 技术文档
在 技术栈 中找到 8 个匹配结果。
技术栈
技术栈
8 个 C# ```html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>Alpine.js Demo</title>
<style>
body { font-family: system-ui; max-width: 600px; margin: 50px auto; background: #… 2% Tailwind CSS # Tailwind CSS 技术栈概览
Tailwind CSS 是 Adam Wathan 创建的**实用优先(Utility-First)CSS 框架**,通过组合原子化 class 直接在 HTML 中构建任意设计,彻底改变了 CSS 的编写方式。
## 解决什么问题
- **告别命名痛苦**:不用给每个 div 想 class 名,直接用 `flex items-center ga… 2% STM32 HAL/LL # STM32 HAL/LL 技术栈概览
STM32 HAL(Hardware Abstraction Layer)与 LL(Low-Layer)是意法半导体为 STM32 全系列 MCU 提供的官方固件库。HAL 抽象级别最高,提供可移植 API;LL 贴近寄存器,性能更优。配合 STM32CubeMX 图形化配置工具,构成完整的 STM32 开发生态。
## 解决什么问题
- **外设复… 2% Pillow ## 环境准备
- **操作系统**: Windows / macOS / Linux 均可
- **Python 版本**: 3.8 及以上(推荐 3.10+)
- **系统依赖**: libjpeg、zlib、libtiff、libwebp(pip 安装时自动处理)
## 安装命令
```bash
# 基础安装
pip install Pillow
# 如需要处理更多格式
pip in… 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% Firebase Firestore // 查询历史
async function getMessages(limit = 20) {
const snapshot = await db.collection('messages')
.orderBy('createdAt', 'desc')
.limit(limit)
.get();
const messages =… 2% Flask db = SQLAlchemy()
migrate = Migrate()
def create_app():
app = Flask(__name__)
app.config.from_object("config.Config")
# 初始化扩展
db.init_app(app)
migrate.init_app(app, db)
# 注册… 2% OpenOCD # OpenOCD:命令行烧录与 GDB 调试 STM32
## 目标
使用 OpenOCD + arm-none-eabi-gdb 通过 ST-Link 对 STM32F4 进行命令行烧录和源码级调试。
## 硬件
- STM32 Nucleo-F407ZG 开发板(内置 ST-Link/v2-1)
- 或任意 STM32 + ST-Link 连接
## 一、烧录固件
### 1.… 2%