kiran nayak

Registered on 02/28/2013 • Last connection on 03/18/2015

zboss porting msp430f2618+cc2520

hi

 

how tedious could be porting zboss to msp430 with cc2520 radio ?

 

can u briefly explain what are the possible steps involved in doing so ?

 

which folders/files need to be modified ?

 

error while compliling zboss stack

hi

 

while compiling the zboss stack i am getting thousands of below errors

 

Error[Pe167]: argument of type "char *" is incompatible with parameter of type "char __code *"

 

all errors are targeting to th line

 

TRACE_MSG( ... ) line in various files ..

 

if i turn off ZB_TRACE_LEVEL=2 then it will compile successfully

 

pls tell me how i can solve this ?

 

thank u

 

RE: error while compliling zboss stack

hi

 

i am using IAR 8.10 compiler and it is for cc2530 soc

 

actually i created my own project and used all your source files under it

 

all the setting related to compiler, linker etc are as per your project

 

routing algorithm

hi

 

which network layer routing algorithm used in zboss?

 

is it AODV as in zstack ?

 

in which file it is implemented ?

 

RE: Porting to new hardware

hi m baker

 

can u tel me which are the RADIO related ISRs implemented in the zboss ?

 

in which file the radio ISRs code is located ?

 

i m trying to port the zboss to msp430f2618+cc2520 combination

 

thanks in advance

 

kindly explain this code segment

hi

 

i m going through the source code of zboss and not able to get what the following code is doing

 

for (i = 0 ; i < ZB_SCHEDULER_Q_SIZE ; ++i)

 

{

 

ZB_STK_PUSH(ZG->sched.tm_freelist, next, &ZG->sched.tm_buffer[i]);

 

}

 

for (i = 0; i < ZB_BUF_Q_SIZE ; ++i)

 

{

 

ZB_STK_PUSH(ZG->sched.buf_freelist, next, &ZG->sched.delayed_buf[i]);

 

}

 

is it initializing the timer callback buffers ? pls explain