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.

TDA3XEVM: How to set SPI1 from UART3

Part Number: TDA3XEVM
Other Parts Discussed in Thread: TCA6424

Hello,

I am checking "C:\ti\PROCESSOR_SDK_RADAR_03_08_00_00\ti_components\drivers" to operate SPI1 from UART3 using TDA3xEVM.

1)Please give us the name of folder path for the sample code regarding SPI1 operation.

2)Can we use this parts to change MUX H of CPLD?



C:\ti\PROCESSOR_SDK_RADAR_03_08_00_00\ti_components\drivers\pdk_01_10_04_05\packages\ti\drv\vps\src\boards\src\bsp_boardTda3xx.c

/* Base EVM mux select */
static Int32 Bsp_boardSelectDeviceTda3xx(UInt32 devDrvId, UInt32 instId)

---
else if (BSP_DRV_ID_MCSPI == devDrvId)
{
if (BSP_DEVICE_MCSPI_INST_ID_0 == instId)
{
/* Mux H - MUX_CNTL[8] to 1 */
regValueTemp = ((UInt32) regValue[TCA64XX_PORT1_OFFSET] |
(UInt32) BOARD_TCA6424_MUX_CNTL8_MASK);
regValue[TCA64XX_PORT1_OFFSET] = (UInt8) regValueTemp;

---

Thanks and Regards

Youhei