Library Search
结果页

3.5寸TFT ILI9486 多平台代码例程

在 技术栈 中找到 8 个匹配结果。

返回文档库
技术栈

技术栈

8 个
查看全部
ONNX | 量化类型 | 精度损失 | 大小 | 速度 | |----------|----------|------|------| | FP32(原始) | 0 | 100% | 1x | | FP16 | <0.1% | 50% | 1.5-2x | | INT8 动态 | <0.5% | 25% | 1.5-2x | | INT8 静态 | <1% | 25% | 2-4x | ## 4. 多平… 2% Entity Framework ### 多对多(EF Core 5+ 自动处理) ```csharp public class Student { public int Id { get; set; } public List<Course> Courses { get; set; } = new(); } public class Course { public int Id { get; set; }… 2% SEGGER J-Link - RTT 默认使用上行通道 0,可通过 `SEGGER_RTT_printf(channel, ...)` 使用多个通道 - RTT 缓冲区大小在 `SEGGER_RTT_Conf.h` 的 `BUFFER_SIZE_UP` 中配置(默认 1024 字节) - Ozone 免费提供给 J-Link 用户,功能远超 Keil/IAR 自带调试器 # SEGGER J-Link 进阶:J-Flas… 2% Requests 搜索到 150000+ 个仓库 - psf/requests ⭐52300+ - httpie/cli ⭐35000+ - encode/httpx ⭐14000+ ``` 2% Nacos ```java import org.springframework.cloud.context.config.annotation.RefreshScope; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.Value; import… 2% Flutter ## 运行步骤 ```bash flutter create flutter_counter # 将上面代码覆盖 lib/main.dart flutter run ``` ## 预期表现 - 点击 `+` 按钮计数器加一 - 点击 `-` 按钮计数器减一(最小为 0) - 点击 AppBar 刷新图标重置计数器 - 计数器超过 10 时数字变为红色 ## 核心概念 | 概念 | 说明… 2% Qt # Qt 技术栈概览 Qt 是由 Qt Company(原 Trolltech)开发的**跨平台 C++ 应用程序框架**,1995 年首次发布。以「Write once, compile anywhere」为理念,是 C++ GUI 开发的事实标准。 ## 解决什么问题 - **跨平台桌面应用**:Windows / macOS / Linux 原生 GUI,一套代码三端运行 - **嵌入… 1% ESP-IDF /* ── 传感器数据结构(队列元素) ── */ typedef struct { int64_t timestamp_us; float temperature; float humidity; float pressure; uint32_t sequence; } sensor_data_t; /* ── 队列句柄 ── */ stat… 1%