feat(DLD154V4B): 灵敏度最高档调整 SENS=3 10→20 + 文档同步

- src/TaskLoop.c: SensTable[3] 10→20 (Δf/f 0.015%→0.031%,
  ΔL/L 0.031%→0.061%), SensTable_1[3] 9→14 (滞回 90%→70%) —
  最高档原阈值贴近噪声底易误触发, 提高并加大滞回
- src/main.c: 注释掉重复定义 g_input_div=1 (TaskLoop.c:23 已有, 清理 ODR)
- docs/technical-spec.md §4.3.1 灵敏度表+表格+口径说明
- docs/reference_analysis.md §5.6 灵敏度表
- docs/devlog.md 置顶 2026-08-27 条目 + 修订记录 V2.8
This commit is contained in:
wangfq
2026-08-27 16:22:58 +08:00
parent d5fc1ea1f7
commit 50dbb07dde
5 changed files with 39 additions and 8 deletions
+5 -3
View File
@@ -219,8 +219,8 @@ if (CAPVD < Origin - dlt_ORG) {
#### 4.3.1 灵敏度表
```c
const uint16_t SensTable[4] = {216, 108, 36, 10}; // 进入阈值
const uint16_t SensTable_1[4] = {108, 72, 18, 9}; // 离开阈值(滞回 ~50%
const uint16_t SensTable[4] = {216, 108, 36, 20}; // 进入阈值
const uint16_t SensTable_1[4] = {108, 72, 18, 14}; // 离开阈值(滞回 ~50%
```
| SENS | SensTable | 进入阈值 (×Origin/65536) | SensTable_1 | 离开阈值 (×Origin/65536) |
@@ -228,7 +228,9 @@ const uint16_t SensTable_1[4] = {108, 72, 18, 9}; // 离开阈值(滞回
| 0 (低) | 216 | 0.33% | 108 | 0.16% |
| 1 | 108 | 0.16% | 72 | 0.11% |
| 2 | 36 | 0.055% | 18 | 0.027% |
| 3 (高) | 10 | 0.015% | 9 | 0.014% |
| 3 (高) | 20 | 0.031% | 14 | 0.021% |
> ⚠ V2.82026-08-27):SENS=3 最高档进入阈值 10→200.015%→0.031% Δf/f,ΔL/L 0.031%→0.061%),离开 9→14(滞回 90%→70%)——原 10 贴近噪声底易误触发,提高阈值并加大滞回。
#### 4.3.2 进入检测(M4 优化:确认机制)