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:
41:d8422efe4761
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
Gary Servin 41:d8422efe4761 1 #ifdef TARGET_PAC_F401RB
Gary Servin 41:d8422efe4761 2 #include "MODSERIAL.h"
Gary Servin 41:d8422efe4761 3
Gary Servin 41:d8422efe4761 4 void MODSERIAL::setBase(void ) {
Gary Servin 41:d8422efe4761 5 switch( _serial.index ) {
Gary Servin 41:d8422efe4761 6 case 0: _base = USART1; _IRQ = USART1_IRQn; break;
Gary Servin 41:d8422efe4761 7 case 1: _base = USART2; _IRQ = USART2_IRQn; break;
Gary Servin 41:d8422efe4761 8 case 2: _base = USART6; _IRQ = USART6_IRQn; break;
Gary Servin 41:d8422efe4761 9 default: _base = NULL; _IRQ = (IRQn_Type)NULL; break;
Gary Servin 41:d8422efe4761 10 }
Gary Servin 41:d8422efe4761 11 }
Gary Servin 41:d8422efe4761 12
Gary Servin 41:d8422efe4761 13 void MODSERIAL::initDevice(void) {};
Gary Servin 41:d8422efe4761 14
Gary Servin 41:d8422efe4761 15 bool MODSERIAL::txIsBusy( void )
Gary Servin 41:d8422efe4761 16 {
Gary Servin 41:d8422efe4761 17 return ( (((USART_TypeDef*)_base)->SR & ( 1UL << 6 )) == 0 ) ? true : false;
Gary Servin 41:d8422efe4761 18 }
Gary Servin 41:d8422efe4761 19
Gary Servin 41:d8422efe4761 20 #endif