fix AC code with first 0x00 byte issue
This commit is contained in:
parent
b2c4ee3eb8
commit
3d44c927a5
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue