Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: ATT_Cellular_IOT_Button Avnet_ATT_Cellular_Pubnub Hiking_Pal Avnet_ATT_Cellular_IOT ... more
Fork of MODSERIAL by
Device/MODSERIAL_K64F.cpp
- Committer:
- chaegle
- Date:
- 2014-04-29
- Revision:
- 34:e84b8ad1d98b
File content as of revision 34:e84b8ad1d98b:
#ifdef TARGET_K64F #include "MODSERIAL.h" void MODSERIAL::setBase(void ) { switch( _serial.index ) { case 0: _base = UART0; _IRQ = UART0_RX_TX_IRQn; break; case 1: _base = UART1; _IRQ = UART1_RX_TX_IRQn; break; case 2: _base = UART2; _IRQ = UART2_RX_TX_IRQn; break; case 3: _base = UART3; _IRQ = UART3_RX_TX_IRQn; break; case 4: _base = UART4; _IRQ = UART4_RX_TX_IRQn; break; default: _base = NULL; _IRQ = (IRQn_Type)NULL; break; } } void MODSERIAL::initDevice(void) {}; bool MODSERIAL::txIsBusy( void ) { return ( ((UART_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false; } #endif