SDK: LPC54628 2.3.0
When I config a new project with this SDK, a head file (fat fs) miss when compiled: fsl_dspi.h. I search sdk directory, no such file.
../fatfs/fatfs_source/fsl_sdspi_disk.c:39:22: fatal error: fsl_dspi.h: No such file or directory
#include "fsl_dspi.h"
anyone can help me? Thanks
Hello Steven,
I'm working with this issue. Meanwhile if what you need to do is read/write in an SD card you can check the SDK example "sdcard_fatfs" that works fine.
Best regards,
Victor Jimenez.
Hi Steven,
This bug was already reported with the developers so it will be fix in future releases of the SDK.
Best regards,
Victor Jimenez.
I have a similar problem with using SD card(fat fs) on KL27Z - SDK 2.3.0. I'm also missing fsl_dspi.h. I found that in SDK v. 2.0 fsl_dspi is a driver for SPI and in the 2.3 version this driver is replaced with fsl_spi. I think that in fsl_sdspi_disk - the spi should be configured with the new driver. (rewrite functions spi_init: dspi_transfer_t = spi_transfer_t ,spi_exchange,spi_set_frequency, etc.). I didn't have time to implement this changes, so I don't know if it will work.