MODSERIAL with support for more devices
Fork of MODSERIAL by
MODSERIAL_KL25Z.cpp@27:9c93ce7cb9d8, 2013-07-11 (annotated)
- Committer:
- Sissors
- Date:
- Thu Jul 11 13:34:53 2013 +0000
- Revision:
- 27:9c93ce7cb9d8
v0.1 for KL25 support
;
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Sissors | 27:9c93ce7cb9d8 | 1 | #ifdef TARGET_KL25Z |
Sissors | 27:9c93ce7cb9d8 | 2 | #include "MODSERIAL.h" |
Sissors | 27:9c93ce7cb9d8 | 3 | |
Sissors | 27:9c93ce7cb9d8 | 4 | void MODSERIAL::setBase(void ) { |
Sissors | 27:9c93ce7cb9d8 | 5 | switch( _serial.index ) { |
Sissors | 27:9c93ce7cb9d8 | 6 | case 0: _base = UART0; _IRQ = UART0_IRQn; break; |
Sissors | 27:9c93ce7cb9d8 | 7 | case 1: _base = UART1; _IRQ = UART1_IRQn; break; |
Sissors | 27:9c93ce7cb9d8 | 8 | case 2: _base = UART2; _IRQ = UART2_IRQn; break; |
Sissors | 27:9c93ce7cb9d8 | 9 | default: _base = NULL; _IRQ = (IRQn_Type)NULL; break; |
Sissors | 27:9c93ce7cb9d8 | 10 | } |
Sissors | 27:9c93ce7cb9d8 | 11 | } |
Sissors | 27:9c93ce7cb9d8 | 12 | |
Sissors | 27:9c93ce7cb9d8 | 13 | bool MODSERIAL::txIsBusy( void ) |
Sissors | 27:9c93ce7cb9d8 | 14 | { |
Sissors | 27:9c93ce7cb9d8 | 15 | return ( ((UART_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false; |
Sissors | 27:9c93ce7cb9d8 | 16 | } |
Sissors | 27:9c93ce7cb9d8 | 17 | #endif |
Sissors | 27:9c93ce7cb9d8 | 18 |