Fork of the MODSERIAL library by Erik Olieman.
Fork of MODSERIAL by
Device/MODSERIAL_LPC11U24.cpp@45:8ef4f91813fd, 2015-02-08 (annotated)
- Committer:
- Sissors
- Date:
- Sun Feb 08 19:59:54 2015 +0000
- Revision:
- 45:8ef4f91813fd
- Parent:
- 39:a65f89de75c5
Added K22F support (probably)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Sissors | 33:9c93ce7cb9d8 | 1 | #ifdef TARGET_LPC11U24 |
Sissors | 33:9c93ce7cb9d8 | 2 | #include "MODSERIAL.h" |
Sissors | 33:9c93ce7cb9d8 | 3 | |
Sissors | 33:9c93ce7cb9d8 | 4 | void MODSERIAL::setBase(void ) { |
Sissors | 33:9c93ce7cb9d8 | 5 | _base = LPC_USART; |
Sissors | 33:9c93ce7cb9d8 | 6 | _IRQ = UART_IRQn; |
Sissors | 33:9c93ce7cb9d8 | 7 | } |
Sissors | 33:9c93ce7cb9d8 | 8 | |
Sissors | 34:76793a84f9e5 | 9 | void MODSERIAL::initDevice(void) { |
Sissors | 34:76793a84f9e5 | 10 | ((LPC_USART_Type*)_base)->FCR = (1UL<<0) + (1UL<<1) + (1UL<<2); |
Sissors | 34:76793a84f9e5 | 11 | } |
Sissors | 34:76793a84f9e5 | 12 | |
Sissors | 33:9c93ce7cb9d8 | 13 | bool MODSERIAL::txIsBusy( void ) |
Sissors | 33:9c93ce7cb9d8 | 14 | { |
Sissors | 39:a65f89de75c5 | 15 | return ( (((LPC_USART_Type*)_base)->LSR & ( 1UL << 6 )) == 0 ) ? true : false; |
Sissors | 33:9c93ce7cb9d8 | 16 | } |
Sissors | 33:9c93ce7cb9d8 | 17 | #endif |