あ
Dependents: Autoflight2018_22_MODSERIAL
Fork of MODSERIAL by
Device/MODSERIAL_KL05Z.cpp
- Committer:
- TUATBM
- Date:
- 2018-09-18
- Revision:
- 47:8d2e26e2345c
- Parent:
- 34:e84b8ad1d98b
File content as of revision 47:8d2e26e2345c:
#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