MODSERIAL with support for more devices
Fork of MODSERIAL by
Device/MODSERIAL_KL25Z.cpp@28:76793a84f9e5, 2013-07-12 (annotated)
- Committer:
- Sissors
- Date:
- Fri Jul 12 15:27:07 2013 +0000
- Revision:
- 28:76793a84f9e5
- Parent:
- MODSERIAL_KL25Z.cpp@27:9c93ce7cb9d8
- Child:
- 43:8c8d13e1840b
Refactoring + KL25Z support v1.0
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 | 28:76793a84f9e5 | 13 | void MODSERIAL::initDevice(void) {}; |
Sissors | 28:76793a84f9e5 | 14 | |
Sissors | 27:9c93ce7cb9d8 | 15 | bool MODSERIAL::txIsBusy( void ) |
Sissors | 27:9c93ce7cb9d8 | 16 | { |
Sissors | 27:9c93ce7cb9d8 | 17 | return ( ((UART_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false; |
Sissors | 27:9c93ce7cb9d8 | 18 | } |
Sissors | 27:9c93ce7cb9d8 | 19 | #endif |
Sissors | 27:9c93ce7cb9d8 | 20 |