Other Parts Discussed in Thread: CC2640R2F
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.
// UART RX FIFO access functions void scifUartSetRxFifoThr(uint16_t threshold); uint32_t scifUartGetRxFifoCount(void); uint16_t scifUartRxGetChar(void); void scifUartRxGetChars(char* pBuffer, uint32_t count); void scifUartRxGetCharsWithFlags(uint16_t* pBuffer, uint32_t count); // UART TX FIFO access functions void scifUartSetTxFifoThr(uint16_t threshold); uint32_t scifUartGetTxFifoCount(void); void scifUartTxPutChar(char c); void scifUartTxPutCharDelayed(char c, uint8_t delay); void scifUartTxPutChars(char* pBuffer, uint32_t count);
可以查看 默认路径
Texas Instruments\Sensor Controller Studio\examples\uart_emulator_launchpad\source 下的 scif.c