Library Search
结果页

2.4寸TFT ILI9341 多平台代码例程

在 技术栈 中找到 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% Flutter ## 运行步骤 ```bash flutter create flutter_counter # 将上面代码覆盖 lib/main.dart flutter run ``` ## 预期表现 - 点击 `+` 按钮计数器加一 - 点击 `-` 按钮计数器减一(最小为 0) - 点击 AppBar 刷新图标重置计数器 - 计数器超过 10 时数字变为红色 ## 核心概念 | 概念 | 说明… 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% 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% Spring Batch for (int i = 0; i < gridSize; i++) { ExecutionContext ctx = new ExecutionContext(); ctx.putInt("minId", i * range); ctx.putInt("maxId", (i + 1) * range - 1);… 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% PHP ```sql CREATE TABLE messages ( id INT AUTO_INCREMENT PRIMARY KEY, author VARCHAR(100) NOT NULL, content TEXT NOT NULL, created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP ); ``` ### 步骤 2 —… 1% STM32 HAL/LL // 流水灯定时 (200ms) if (now - last_toggle_tick >= 200) { last_toggle_tick = now; led_shift(); } // 按键检测 (每 10ms) if (now - last_key_check >= 10) {… 1%