Other Parts Discussed in Thread: CC2538
Hello sir,
I am using zstack mesh 1.0.0 and cc2538.
i am successfully able to send and receive the msg in this project project but i am facing one issue ->
i hav my own fn and i want to integrate this in GenericAPP so i did like this ->
1) GenericApp_Init();
{
.....
my_function() ;
}
static void my_function(void)
{
....................
}
this approach is working fine and my code inside the fn is also getting executed properly but when i am calling this fn from inside the GenericApp_SendTheMessage() fn then my_function is not working properly......
1) GenericApp_Init();
{
.....
......
}
GenericApp_SendTheMessage( void )
{
my_function();
AF_DataRequest() ;.............
}
static void my_function(void)
{
....................
}
so my question is that ----> is there any limitation with in send msg fn that only AF_data_request and few other fn will work but any user defined fn will not work?
plz reply...
Thanks & Regards,
Maneesh singh