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

Committer:
afmiee
Date:
Tue Oct 09 20:57:34 2018 +0000
Revision:
28:4650c541b029
Parent:
15:6f2798e45099
DIYmall 0.96" Inch I2c IIC Serial 128x64 Oled LCD LED White Display Module

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ampembeng 15:6f2798e45099 1 #ifdef TARGET_KL05Z
ampembeng 15:6f2798e45099 2 #include "MODSERIAL.h"
ampembeng 15:6f2798e45099 3
ampembeng 15:6f2798e45099 4 void MODSERIAL::setBase(void ) {
ampembeng 15:6f2798e45099 5 _base = UART0;
ampembeng 15:6f2798e45099 6 _IRQ = UART0_IRQn;
ampembeng 15:6f2798e45099 7 }
ampembeng 15:6f2798e45099 8
ampembeng 15:6f2798e45099 9 void MODSERIAL::initDevice(void) {};
ampembeng 15:6f2798e45099 10
ampembeng 15:6f2798e45099 11 bool MODSERIAL::txIsBusy( void )
ampembeng 15:6f2798e45099 12 {
ampembeng 15:6f2798e45099 13 return ( ((UARTLP_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false;
ampembeng 15:6f2798e45099 14 }
ampembeng 15:6f2798e45099 15 #endif
ampembeng 15:6f2798e45099 16
ampembeng 15:6f2798e45099 17