Tool/software: TI-RTOS
Hi All,
I am using FH mode cc1352P program at collector side. if data is not reached at sensor side then i am sending in continuously 3 times and even first time i am checking true or false send_msg next time its not coming in the condition.
if((sendMsg(Smgs_cmdIds_uartData, Cllc_associatedDevList[x].shortAddr,
Cllc_associatedDevList[x].capInfo.rxOnWhenIdle,
strlen(data),
(uint8_t*)data)) == true)
{
#ifdef DEBUG_CONNECTIVITY_MODULE
UART_write(uart,"Time Sync\n",7);
char buff[10]={0x00};
UART_write(uart,"\nShort Addr:-",strlen("\nShort Addr:-"));
ltoa(Cllc_associatedDevList[x].shortAddr,buff);
UART_write(uart,buff,strlen(buff));
UART_write(uart,"\nNO Ext Addr:-",strlen("\nNo Ext Addr:-"));
// UART_write(uart,item.devInfo.extAddress,8);
#endif
;
}
see this coding. so here i am getting result on UART first time but not at second time.
So here i am sending data back to back fastly thats why my data is missing.?
Regards,
Anil.