S32K312 - SPI Clock, MOSI make wrong pulse

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

S32K312 - SPI Clock, MOSI make wrong pulse

Jump to solution
435 Views
ssean
Contributor II

Hello.

When I send data to MOSI by called Spi_SyncTansmit(), SCK and MOSI make wrong pulse at start.

It happen only in use CPOL=1(Clock Idle HIGH, Active LOW).

If I set CPOL=0 (Clock Idle Low, Active HIGH), it is okay.

* RTD Version 2.0.1 (7, July, 2022)

 

1. Send 0x00 00

0x0000.jpeg

2. Send 0x07 31

0x0731.jpeg

3. LPSPI_1 Register value

LPSPI_1.jpeg

 

Best Regards,

Sean Sung

0 Kudos
Reply
1 Solution
401 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Dear @ssean,

The issue is that the Lpspi_Ip_SyncTransmit() resets the LPSPI module in function Lpspi_TransmitTxInit().

You would need to remove the code that reset the LPSPI from the function.

 

Regards,

Daniel

View solution in original post

0 Kudos
Reply
4 Replies
417 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Hi @ssean,

It was discussed here:

https://community.nxp.com/t5/S32K/S32K3-SPI-CS-problem-when-using-GPIO-to-simulate-CS/td-p/1564367

The module is reset at the beginning of each transfer.

Normally, with your configuration OUTCFG = 0, the MOSI line should retains last value when chip select is negated (beetween transfers).

But the module is reset in the driver.


Regards,

Daniel

0 Kudos
Reply
406 Views
ssean
Contributor II

Dear @danielmartynek 

Thank you for reply.

It happen with OUTCFG=1, too.

Can you give me advise for how can I fix this problem?

 

Best Regards,

SEAN SUNG

 

0 Kudos
Reply
402 Views
danielmartynek
NXP TechSupport
NXP TechSupport

Dear @ssean,

The issue is that the Lpspi_Ip_SyncTransmit() resets the LPSPI module in function Lpspi_TransmitTxInit().

You would need to remove the code that reset the LPSPI from the function.

 

Regards,

Daniel

0 Kudos
Reply
344 Views
ssean
Contributor II

Dear @danielmartynek 

 

I fix this issue to CS control by peripheral engine (not GPIO).

 

Thank you for reply.

0 Kudos
Reply