Other Parts Discussed in Thread: TMS320F28335
I am currently having issues with disabling an interrupt on the TMS320F28335. We are currently using the SPI to send data via interrupts to a TFT LCD. We only need it for initialization and wish to turn off the interrupt once the initialization is complete. We have tried changing the control register to disable it as well as attempted to use DINT (no idea if that actually works, just a hope that if EINT enables the interrupts, DINT will disable them). Since its interrupt driven, we didnt want to place the disable in the main since we didnt know when it would fire so we currently have disable in the ISR itself (Why we think we are having an issue). The reason we are using interrupts over simply polling is we were having some issues with our chip select which seemed to disappear when we used the interrupt technique. How should we go about disabling the interrupt once we are done using it?