MODSERIAL with support for more devices
Fork of MODSERIAL by
Device/MODSERIAL_LPC11U24.cpp@33:a65f89de75c5, 2014-05-11 (annotated)
- Committer:
- Sissors
- Date:
- Sun May 11 19:28:04 2014 +0000
- Revision:
- 33:a65f89de75c5
- Parent:
- 28:76793a84f9e5
Fixed ts_busy according to: http://mbed.org/questions/3404/Can-I-have-more-comment-on-my-MODSERIAL-/
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Sissors | 27:9c93ce7cb9d8 | 1 | #ifdef TARGET_LPC11U24 |
Sissors | 27:9c93ce7cb9d8 | 2 | #include "MODSERIAL.h" |
Sissors | 27:9c93ce7cb9d8 | 3 | |
Sissors | 27:9c93ce7cb9d8 | 4 | void MODSERIAL::setBase(void ) { |
Sissors | 27:9c93ce7cb9d8 | 5 | _base = LPC_USART; |
Sissors | 27:9c93ce7cb9d8 | 6 | _IRQ = UART_IRQn; |
Sissors | 27:9c93ce7cb9d8 | 7 | } |
Sissors | 27:9c93ce7cb9d8 | 8 | |
Sissors | 28:76793a84f9e5 | 9 | void MODSERIAL::initDevice(void) { |
Sissors | 28:76793a84f9e5 | 10 | ((LPC_USART_Type*)_base)->FCR = (1UL<<0) + (1UL<<1) + (1UL<<2); |
Sissors | 28:76793a84f9e5 | 11 | } |
Sissors | 28:76793a84f9e5 | 12 | |
Sissors | 27:9c93ce7cb9d8 | 13 | bool MODSERIAL::txIsBusy( void ) |
Sissors | 27:9c93ce7cb9d8 | 14 | { |
Sissors | 33:a65f89de75c5 | 15 | return ( (((LPC_USART_Type*)_base)->LSR & ( 1UL << 6 )) == 0 ) ? true : false; |
Sissors | 27:9c93ce7cb9d8 | 16 | } |
Sissors | 27:9c93ce7cb9d8 | 17 | #endif |