DIYmall 0.96" Inch I2c IIC Serial 128x64 Oled LCD LED White Display Module

Dependencies:   Adafruit_GFX SDFileSystem

Fork of ATT_AWS_IoT_demo by AT&T IoT

WNCInterface/WncControllerK64F/MODSERIAL/Device/MODSERIAL_KL05Z.cpp

Committer:
afmiee
Date:
2018-10-09
Revision:
28:4650c541b029
Parent:
15:6f2798e45099

File content as of revision 28:4650c541b029:

#ifdef TARGET_KL05Z
#include "MODSERIAL.h"

void MODSERIAL::setBase(void ) {
    _base = UART0;
    _IRQ  = UART0_IRQn;
}

void MODSERIAL::initDevice(void) {};

bool MODSERIAL::txIsBusy( void ) 
{ 
    return ( ((UARTLP_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false; 
} 
#endif