Code for our FYDP -only one IMU works right now -RTOS is working

Dependencies:   mbed

mbed/MODSERIAL/Device/MODSERIAL_KL05Z.cpp

Committer:
majik
Date:
2015-03-18
Revision:
0:964eb6a2ef00

File content as of revision 0:964eb6a2ef00:

#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