Hi everybody,
I wrote software uses z-stack, add debugged using SmartRF04Eb with CC2430. It worked great.
Now I have SmartRF04Eb with CC2431 and I cannot run the same code on it.
So my first question is if there is any migration application note from CC2430 to CC2431?
I started to debug the code on the new chip. The chip is running well , until
the first initial functions:
// Initialize NV System
osal_nv_init( NULL )
It seems that the problem is Initnv():
if ( pgRes == OSAL_NV_PAGE_NULL )
{
for ( pg = OSAL_NV_PAGE_BEG; pg <= OSAL_NV_PAGE_END; pg++
)
{
erasePage( pg );
}
initNV();
}
the function initNV() be repeated continuously.
Can anyone tell me what the source of this problem is? Is there any workaround?