discussion on supporting the TI CC3000 WiFi module

I'd love to see this ported.

Some similar qustions being discussed here: AWR2243: new mmwave dfp supported devices - Sensors forum - Sensors - TI E2E support forums

void SpiPauseSpi(void)
{
SPI_IRQ_PORT &= ~SPI_IRQ_PIN;
}
void SpiResumeSpi(void)
{
SPI_IRQ_PORT |= SPI_IRQ_PIN;
}
As far I understand these functions enable or disabled the IRQ_SPI Line in your Microcontroller, and in case of CC3000 produce a falling edge in the IRQ Pin it would not be treated

I do the same using a Flag
void SpiPauseSpi(void)
{
irq_flag=0;
}
void SpiResumeSpi(void)
{
irq_flag=1;
}