Other Parts Discussed in Thread: CC1310
Tool/software: TI-RTOS
Hello ,
we need please CC1310 , Transmit and receive to RF from uart , that we connect RX and Tx to Pc terminal and send to other cc1310 via RF cons nection .
thank , yaniv
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
Hello ,
we need please CC1310 , Transmit and receive to RF from uart , that we connect RX and Tx to Pc terminal and send to other cc1310 via RF cons nection .
thank , yaniv
Hi,
we don't have an out-of-the-box example. But I suggest to start with one of the EasyLink examples and try to integrate the uartEcho example.
RF_UART.zipI made a simple example based on the rfPacketRx/Tx examples.
For RX, it's two versions:
- Use semaphore: The drawback with this is that RX and UART uses the same buffer. Some care has to be taken to avoid UART blocking RX in a final solution.
- Use mailbox. The drawback is the allocation of memory for the mailbox.