11.24_1:优化了环境监测节点的串口驱动。

This commit is contained in:
2025-11-24 20:52:26 +08:00
parent 555d2ef442
commit 6497cc3eb8
18 changed files with 442 additions and 707 deletions

View File

@@ -81,5 +81,5 @@ xSemaphoreGive(xSemaphoreHandler);
```
- 接收信号量:(接收句柄、等待时长)
```c
if (xSemaphoreTake(xSemLedOnHdlr, pdMS_TO_TICKS(10)) == pdTRUE);
if (xSemaphoreTake(xSemaphoreHandler, pdMS_TO_TICKS(10)) == pdTRUE);
```