Initial Fork
Fork of MODSERIAL by
Device/MODSERIAL_LPC11U24.cpp@36:657e235d88f8, 2014-10-05 (annotated)
- Committer:
- Throwbot
- Date:
- Sun Oct 05 12:22:18 2014 +0000
- Revision:
- 36:657e235d88f8
- Parent:
- 33:a65f89de75c5
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 |