I've built the library as described in the start-up guide, but it's missing the drivers and hal for both DMA and SPI? I'm not extremely familiar with the device yet, but can I just use eDMA and DSPI to accomplish the same things, or should I build those drivers in another library and import/copy them? What library actually has them? They should be family compatible according to everything I have read.
Thanks.
解決済! 解決策の投稿を見る。
Hi,
The warnings you see are the next:
This is because the name of the folders change from spi to dspi and dma to edma. Those folders contain the drivers to use the dSPI module and the eDMA module that are the ones included in the K22 device. This is just a change in the name of the folders.
To avoid those warnings you can erase from the Included paths the one with the problem:
This change was made to be consistent with the name of the module in the device and the support driver.
I hope this information can help you.
Regards,
Adrian
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. It would be nice!
-----------------------------------------------------------------------------------------------------------------------
Hi,
The warnings you see are the next:
This is because the name of the folders change from spi to dspi and dma to edma. Those folders contain the drivers to use the dSPI module and the eDMA module that are the ones included in the K22 device. This is just a change in the name of the folders.
To avoid those warnings you can erase from the Included paths the one with the problem:
This change was made to be consistent with the name of the module in the device and the support driver.
I hope this information can help you.
Regards,
Adrian
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. It would be nice!
-----------------------------------------------------------------------------------------------------------------------
Perfect! Thank you.