Greetings;
I'm using JN-AN-1217 (base device / router) for JN5169, in app_zcl_task.c / APP_ZCL_vInitialise() / ZTIMER_eStart(u8TimerZCLTick, ZCL_TICK_TIME) <-- Fails!
debug output: APP: Failed to Start Tick Timer
The end device example appears to not have the same issue ? Can anyone point me in the right direction please?
Cheers
Hi Christopher,
Did you modify the code? Is it possible that you could erase the EEPROM?
What is the AN version that you are working on?
Regards,
Mario
Hi Mario and thank you for taking the time to help me out.
The only modification was to zcl_options.h (because build threw an error)
#define CLD_SCENES
#define SCENES_SERVER
I have erased the EEPROM during flashing, no change. AN version 1005.
Hi Christopher,
I am checking the AN and I do not have any build problems. Also, I ran the example and it works without any issue.
Regards,
Mario
Hi Mario;
(sorry for the delay in my reply)
I started from scratch, and to my amazement, the base device / router worked.
(Router/Build/Makefile)
disabling BDB features, I have discovered that the following produces the condition for me:
BDB_SUPPORT_TOUCHLINK_INITIATOR ?= 0
BDB_SUPPORT_TOUCHLINK_TARGET ?= 0
BDB_SUPPORT_NWK_STEERING ?= 1
BDB_SUPPORT_NWK_FORMATION ?= 0
BDB_SUPPORT_FIND_AND_BIND_INITIATOR ?= 0
BDB_SUPPORT_FIND_AND_BIND_TARGET ?= 0
while:
BDB_SUPPORT_TOUCHLINK_INITIATOR ?= 0
BDB_SUPPORT_TOUCHLINK_TARGET ?= 0
BDB_SUPPORT_NWK_STEERING ?= 1
BDB_SUPPORT_NWK_FORMATION ?= 0
BDB_SUPPORT_FIND_AND_BIND_INITIATOR ?= 1
BDB_SUPPORT_FIND_AND_BIND_TARGET ?= 0
works as expected... ?
Again, thank you for your help.
Best regards.