Tool/software: TI-RTOS
When the concentrator and the node perform time synchronization, can the RAT value of the node be reset according to the time difference between the two?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI-RTOS
When the concentrator and the node perform time synchronization, can the RAT value of the node be reset according to the time difference between the two?
Hi TER,
If not, let's assume that there is a situation where the nodes have been running for a few days and the concentrators are just running. The difference T of their RATs will be large. How do I synchronize them even if I calculate their time difference?
Since my node needs to implement TDM, I thought of a way: I have 10 nodes, and when they receive the broadcast command, I use :
RF_cmdPropRxSniff.pNextOp = (rfc_radioOp_t *)&RF_cmdPropTxAdv; RF_cmdPropRxSniff.condition.rule = COND_STOP_ON_FALSE; RF_cmdPropTxAdv.startTrigger.triggerType = TRIG_REL_PREVEND; RF_cmdPropTxAdv.startTime = RF_convertMsToRatTicks(100 * address);
Since the nodes are receiving at the same time, the delay is accurate. Is this reliable?