Merge pull request #10579 from s-hadinger/zigbee_increase_timeout

Zigbee increase timeout to 5s for first command
This commit is contained in:
s-hadinger 2021-01-16 10:56:52 +01:00 committed by GitHub
commit dd2dc6e6b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -785,7 +785,7 @@ static const Zigbee_Instruction zb_prog[] PROGMEM = {
ZI_WAIT_UNTIL(5000, ZBR_RSTACK) // wait for RSTACK message
// Init device and probe version
ZI_SEND(ZBS_VERSION) ZI_WAIT_RECV_FUNC(1000, ZBR_VERSION, &EZ_ReceiveCheckVersion) // check EXT PAN ID
ZI_SEND(ZBS_VERSION) ZI_WAIT_RECV_FUNC(5000, ZBR_VERSION, &EZ_ReceiveCheckVersion) // check EXT PAN ID
// configure EFR32
ZI_MQTT_STATE(ZIGBEE_STATUS_STARTING, kConfiguredCoord)