fix AC code with first 0x00 byte issue

This commit is contained in:
Yunhorn 2023-11-03 13:52:32 +08:00
parent b2c4ee3eb8
commit 3d44c927a5
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ extern volatile uint8_t sensor_data_ready;
void STS_YunhornAuthenticationCode_Process(void) void STS_YunhornAuthenticationCode_Process(void)
{ {
if (sts_ac_code[0] == 0x00) { if ((sts_ac_code[0] == 0x00) && (sts_ac_code[19] == 0x00)) {
APP_LOG(TS_OFF,VLEVEL_M, "Initial AC CODE blank... \r\n"); APP_LOG(TS_OFF,VLEVEL_M, "Initial AC CODE blank... \r\n");
return; return;
} }