Hi folks,
I recently upgraded to the latest AM335x_platform SDK, and I made API / library changes based on this upgrade webpage:
processors.wiki.ti.com/.../AM335x_IA_SDK_Changes_from_1.1.0.1_to_1.1.0.3
My problem now is that some of my SPI channels wont start communication.
One of the mayor changes I did as part of the API upgrade was this:
replaced:
SpiFlashInit(0);
for:
SpiFlashInit(0, 0);
SpiFlashInit(0, 1);
SpiFlashInit(0, 2);
SpiFlashInit(0, 3);
I can't give that much detail about the project, but Anything you might suggest checking that could potentially help?
Any tutorials on how to use McSPI API on projects?