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.

AWR6843: Maximum SPI clock

Part Number: AWR6843

What is the maximum SPI clock when communicating with PC through FTDI?

I read the following test code, but I couldn't understand the maximum SPI clock.

mmwave_sdk_03_05_00_04\packages\ti\drivers\spi\test\common\test_common.c

    /* When communicating with PC through FTDI, it is difficult to toggle CS for every two bytes, hence set csHold to 1.
       In this mode, the highest working SPI clock is 2MHz */

mmwave_sdk_03_05_00_04\packages\ti\drivers\spi\test\windows\spiTest.cpp

        /* Divider low value . 60Mhz/(((high * 256+low)+1)*2)) ,
           0xE -> 2MHz SPI clock
           0x5 -> 5MHz
           0x4 -> 6MHz
           0x2 -> 10MHz        
           0x1 -> 15MHz
           0x0 -> 30MHz
        */
        txConfBuffer[4] = 0x4;