Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BurstSPI by
BurstSPI_LPC1768.cpp
00001 #ifdef TARGET_LPC1768 00002 #include "BurstSPI.h" 00003 00004 void BurstSPI::fastWrite(int data) { 00005 //Wait until FIFO has space 00006 while(((_spi.spi->SR) & 0x02) == 0); 00007 00008 //transmit data 00009 _spi.spi->DR = data; 00010 } 00011 00012 void BurstSPI::clearRX( void ) { 00013 //Do it while either data in RX buffer, or while it is busy 00014 while(((_spi.spi->SR) & ((1<<4) + (1<<2))) != 0) { 00015 //Wait until data in RX buffer 00016 while(((_spi.spi->SR) & (1<<2)) == 0); 00017 int dummy = _spi.spi->DR; 00018 } 00019 } 00020 #endif
Generated on Thu Jul 14 2022 05:47:27 by
1.7.2
