I am using MCUxpresso 11.1 with a Kinetis K60 in the 100 pin LQFP package in a bare metal project. I want to test the SD interface, so I installed the example code from the K60 tower board SDK. That codes uses a 100 pin K60 in a BGA package.
I used the Quick Start panel to create a new bare metal project, used the Pins config to set the SD port pins, and then copied and pasted the Tower SD project code into mine. I made sure to copy the folders and all their contents. I did not make any changes to this code.
Obviously, it's not compiling. I get a dozen or so errors, all about functions such as f_read, f_write, f_mount etc, not being defined. I know there are software switches to control what is included, but all the ones I could find are set to include everything. In poking around, I see that although I copied all the folders over, only about half of them are listed in the make file. In particular, fatfs and sdmmc are not included, although they are in the folder. When I compile the example code and run it on a Tower board, it works perfectly.
My question is how do I get the rest of the files into the mak files?