MODSERIAL with support for more devices - Added target NUCLEO_F103RB

Committer:
riaancillie
Date:
Sun May 05 14:57:11 2019 +0000
Revision:
46:d2a5e26fd658
Parent:
33:a65f89de75c5
Added support for target NUCLEO_F103RB

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sissors 27:9c93ce7cb9d8 1 #ifdef TARGET_LPC11U24
Sissors 27:9c93ce7cb9d8 2 #include "MODSERIAL.h"
Sissors 27:9c93ce7cb9d8 3
Sissors 27:9c93ce7cb9d8 4 void MODSERIAL::setBase(void ) {
Sissors 27:9c93ce7cb9d8 5 _base = LPC_USART;
Sissors 27:9c93ce7cb9d8 6 _IRQ = UART_IRQn;
Sissors 27:9c93ce7cb9d8 7 }
Sissors 27:9c93ce7cb9d8 8
Sissors 28:76793a84f9e5 9 void MODSERIAL::initDevice(void) {
Sissors 28:76793a84f9e5 10 ((LPC_USART_Type*)_base)->FCR = (1UL<<0) + (1UL<<1) + (1UL<<2);
Sissors 28:76793a84f9e5 11 }
Sissors 28:76793a84f9e5 12
Sissors 27:9c93ce7cb9d8 13 bool MODSERIAL::txIsBusy( void )
Sissors 27:9c93ce7cb9d8 14 {
Sissors 33:a65f89de75c5 15 return ( (((LPC_USART_Type*)_base)->LSR & ( 1UL << 6 )) == 0 ) ? true : false;
Sissors 27:9c93ce7cb9d8 16 }
Sissors 27:9c93ce7cb9d8 17 #endif