From 3d44c927a5af5c53344372f88d360d848e3a1ca0 Mon Sep 17 00:00:00 2001 From: YunHorn Technology Date: Fri, 3 Nov 2023 13:52:32 +0800 Subject: [PATCH] fix AC code with first 0x00 byte issue --- Core/Src/yunhorn_sts_process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Src/yunhorn_sts_process.c b/Core/Src/yunhorn_sts_process.c index 6e5528a..05cbb7d 100644 --- a/Core/Src/yunhorn_sts_process.c +++ b/Core/Src/yunhorn_sts_process.c @@ -129,7 +129,7 @@ extern volatile uint8_t sensor_data_ready; 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"); return; }