JN-AN-1217 ZTIMER_eStart() FAIL ?

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

JN-AN-1217 ZTIMER_eStart() FAIL ?

912 Views
cj_veeneman
Contributor II

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

Labels (2)
4 Replies

843 Views
mario_castaneda
NXP TechSupport
NXP TechSupport

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

0 Kudos

843 Views
cj_veeneman
Contributor II

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.  

0 Kudos

843 Views
mario_castaneda
NXP TechSupport
NXP TechSupport

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.

pastedImage_1.png

Regards,

Mario

0 Kudos

843 Views
cj_veeneman
Contributor II

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.