BurstSPI fork
Fork of BurstSPI by
BurstSPI_LPC_1549.cpp
- Committer:
- Backstrom
- Date:
- 2015-04-03
- Revision:
- 14:c99022511536
- Parent:
- 13:36ac5fd058dd
File content as of revision 14:c99022511536:
#if defined(TARGET_LPC1549) #include "BurstSPI.h" void BurstSPI::fastWrite(int data) { while (!(_spi.spi->STAT & (1 << 1))); _spi.spi->TXDAT = (data & 0xffff); // end of transfer and receive ignore flag _spi.spi->TXCTL |= ((1 << 20) | (1 << 22)); } void BurstSPI::clearRX( void ) { //We already set receive ignore flag, so this function is never run. } #endif