Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of MODSERIAL by
MODSERIAL_LPC11U24.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_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 | 27:9c93ce7cb9d8 | 9 | bool MODSERIAL::txIsBusy( void ) |
Sissors | 27:9c93ce7cb9d8 | 10 | { |
Sissors | 27:9c93ce7cb9d8 | 11 | return ( ((LPC_USART_Type*)_base)->LSR & ( 3UL << 5 ) == 0 ) ? true : false; |
Sissors | 27:9c93ce7cb9d8 | 12 | } |
Sissors | 27:9c93ce7cb9d8 | 13 | #endif |