iMXRT FlexIO SPI CS high time between two transfers

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

iMXRT FlexIO SPI CS high time between two transfers

1,663 Views
johannzimmerman
Contributor II

Hi everyone,

I would like to control an ADC chip via FlexIO SPI.
How can I influence the clock cycle between the slave select
negating and before the next transfer?

In SDK examples this time is always an SPI clock.
I need longer time for CS high before the next transfer started.
Is that possible?

Tags (1)
0 Kudos
7 Replies

1,423 Views
Hui_Ma
NXP TechSupport
NXP TechSupport

Hi,

Please help to provide the i.MXRT product detailed part number?

Then I will check with related SDK driver. Thanks.


Have a great day,
Mike

0 Kudos

1,423 Views
johannzimmerman
Contributor II
Hi Mike,

I am trying to control the AD7699 via FlexIO3 on an iMXRT 1060.
AD7699 should run in "read / write after convert" mode.
Need exactly 1.6us CS high between the data.
At a SPI clock e.g. 20MHz.

Thank you in advance,

Johann
0 Kudos

1,423 Views
Hui_Ma
NXP TechSupport
NXP TechSupport

Hi Johann,

Sorry for the later reply.

I did a test with MIMXRT1060-EVK board with [flexio3_spi_int_lpspi_transfer_master] demo.

I could find your mentioned behavior.

I want to modify the Flexio spi driver at <fsl_flexio_spi.c> file FLEXIO_SPI_MasterInit() function without success.

So far, when customer write data to shifter buffer, the FlexIO_SPI engine will start to transfer data.

So, customer can set TRANSFER_SIZE to 1, which means only transfer one byte, and then call FLEXIO_SPI_MasterTransferNonBlocking function again to transfer another byte with related time interval.

#define TRANSFER_SIZE 1U        /*! Transfer dataSize */

    /*Start master transfer*/
    masterXfer.txData   = masterTxData;
    masterXfer.rxData   = masterRxData;
    masterXfer.dataSize = TRANSFER_SIZE;
    masterXfer.flags    = kFLEXIO_SPI_8bitMsb;

    isMasterTransferCompleted = false;
    FLEXIO_SPI_MasterTransferNonBlocking(&spiDev, &g_m_handle, &masterXfer);

    for(int i = 0; i<0xfff; i++)
    {
        asm("nop");
    }
    while (!(isMasterTransferCompleted))
    {
    }
    isMasterTransferCompleted = false;
    FLEXIO_SPI_MasterTransferNonBlocking(&spiDev, &g_m_handle, &masterXfer);
    for(int i = 0; i<0xffff; i++)
    {
        asm("nop");
    }
    while (!(isMasterTransferCompleted))
    {
    }
    isMasterTransferCompleted = false;
    FLEXIO_SPI_MasterTransferNonBlocking(&spiDev, &g_m_handle, &masterXfer);
    for(int i = 0; i<0xfff; i++)
    {
        asm("nop");
    }
    while (!(isMasterTransferCompleted))
    {
    }
    isMasterTransferCompleted = false;
    FLEXIO_SPI_MasterTransferNonBlocking(&spiDev, &g_m_handle, &masterXfer);

The test result is below:

pastedImage_1.png

I couldn't change the Flexio_spi low level driver, just called related API using a tricky way.

Thanks for the attention.

best regards,

Mike

0 Kudos

1,423 Views
johannzimmerman
Contributor II

Hi Mike,
thanks for the answer.

The idea is to control 4x the AD7699 with the FlexIO.
SPI-Enable, SPI-Clock and SPI-MOSI connected parallel to all ADC's,
just read in the MISO from each AD7699 via FlexIO extra.
Would that be possible in principle with FlexIO?
Can you give me a hint how to expand the existing driver?

best regards
Johann

0 Kudos

1,423 Views
Hui_Ma
NXP TechSupport
NXP TechSupport

Hi Johann,

First of all, sorry for the later reply.

It is possible to use FlexIO with more MISO pins.

Please refer current <fsl_flexio_spi.c> file FLEXIO_SPI_MasterInit() function to add three more shifter for rx.

And it also need to set required pins with FlexIO function.

Wish it helps.

best regards,

Mike

0 Kudos

1,423 Views
johannzimmerman
Contributor II

Hi Mike,

I have implemented 2x AD7699 read in parallel SPI.
It works so far.
Only I was surprised that the SDK MIMXRT1064.h SHIFTBUFBIS [4] is limited to 4. In the i.MX RT1064 rtreference manual page 2925 the registers are described with SHIFTBUFBIS0 -
SHIFTBUFBIS7.
Is it a survival of the i.MXRT1060 or what's right there?

best regards
Johann

0 Kudos

1,423 Views
Hui_Ma
NXP TechSupport
NXP TechSupport

Hi Johann,

Sorry for the later reply.

I did a test with MIMXRT1064-EVK board, the debug info showed there with 4 shifter with one FlixIO module.

pastedImage_1.png

The RT1064 reference manual with incorrect info.

I will report that document issue.

Thanks and have a nice day!

best regards,

Mike

0 Kudos