Commented out the body of bool MODSERIAL::claim (FILE *stream) since it causes problems with the latest mbed library

Dependents:   ATT_Cellular_IOT_Button Avnet_ATT_Cellular_Pubnub Hiking_Pal Avnet_ATT_Cellular_IOT ... more

Fork of MODSERIAL by Erik -

Committer:
stefanrousseau
Date:
Mon Aug 01 23:30:57 2016 +0000
Revision:
42:ae4c4f174d1f
Parent:
28:76793a84f9e5
Commented out ; bool MODSERIAL::claim (FILE *stream); because it gives errors with the latest mbed library

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Sissors 27:9c93ce7cb9d8 1 #ifdef TARGET_KL25Z
Sissors 27:9c93ce7cb9d8 2 #include "MODSERIAL.h"
Sissors 27:9c93ce7cb9d8 3
Sissors 27:9c93ce7cb9d8 4 void MODSERIAL::setBase(void ) {
Sissors 27:9c93ce7cb9d8 5 switch( _serial.index ) {
Sissors 27:9c93ce7cb9d8 6 case 0: _base = UART0; _IRQ = UART0_IRQn; break;
Sissors 27:9c93ce7cb9d8 7 case 1: _base = UART1; _IRQ = UART1_IRQn; break;
Sissors 27:9c93ce7cb9d8 8 case 2: _base = UART2; _IRQ = UART2_IRQn; break;
Sissors 27:9c93ce7cb9d8 9 default: _base = NULL; _IRQ = (IRQn_Type)NULL; break;
Sissors 27:9c93ce7cb9d8 10 }
Sissors 27:9c93ce7cb9d8 11 }
Sissors 27:9c93ce7cb9d8 12
Sissors 28:76793a84f9e5 13 void MODSERIAL::initDevice(void) {};
Sissors 28:76793a84f9e5 14
Sissors 27:9c93ce7cb9d8 15 bool MODSERIAL::txIsBusy( void )
Sissors 27:9c93ce7cb9d8 16 {
Sissors 27:9c93ce7cb9d8 17 return ( ((UART_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false;
Sissors 27:9c93ce7cb9d8 18 }
Sissors 27:9c93ce7cb9d8 19 #endif
Sissors 27:9c93ce7cb9d8 20