11.12_1:解决了接收信号量的bug,优化了网关控制节点执行器的延迟。

This commit is contained in:
2025-11-12 17:55:29 +08:00
parent bfc15aaa18
commit 5c4ba1b3c6
6 changed files with 207 additions and 150 deletions

View File

@@ -117,7 +117,7 @@ eLoRaMsgRecStatus xLoRaMessageReceived(uint8_t *pucData)
return statusExeOff;
default:
return statusNode1;
return null;
}
}
@@ -190,6 +190,6 @@ eLoRaMsgRecStatus xLoRaMsgProcess(uint8_t ucDataRecNodeId, uint8_t ucDataRecExeI
}
}
default:
return statusNode1;
return null;
}
}

View File

@@ -56,7 +56,8 @@ typedef enum {
statusBuzzerOn,
statusBuzzerOff,
statusServoOn,
statusServoOff
statusServoOff,
null
}eLoRaMsgRecStatus;
typedef struct {