As the title suggests, I am trying to port the libraries over. I already have the libraries working on the 5739, but I need more memory for my application, and the 5438 has much more. When trying to port over the SPI code, I noticed that it uses P2IE and P2IFG. I was going to use the SPI port on port 9 of 5438, but when I changed P2IE to P9IE, the compiler told me that those do not exist. Sure enough, only P1IE and P2IE are defined in <msp430f5438a.h>. And unfortunately, there is no SPI port on port 1 or 2 of the 5438.
What should I do? Should I just move the interrupt pin to port 2, and leave the rest of the SPI on port 9?
Are there any better porting guides than this one?
http://processors.wiki.ti.com/index.php/CC3000_Host_Driver_Porting_Guide
Thank you