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
Device/MODSERIAL_KL05Z.cpp@43:8c46846be166, 2016-09-16 (annotated)
- Committer:
- JeffreyBrimm
- Date:
- Fri Sep 16 07:58:33 2016 +0000
- Revision:
- 43:8c46846be166
- Parent:
- 34:e84b8ad1d98b
first attempt at getc led toggle
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
chaegle | 34:e84b8ad1d98b | 1 | #ifdef TARGET_KL05Z |
chaegle | 34:e84b8ad1d98b | 2 | #include "MODSERIAL.h" |
chaegle | 34:e84b8ad1d98b | 3 | |
chaegle | 34:e84b8ad1d98b | 4 | void MODSERIAL::setBase(void ) { |
chaegle | 34:e84b8ad1d98b | 5 | _base = UART0; |
chaegle | 34:e84b8ad1d98b | 6 | _IRQ = UART0_IRQn; |
chaegle | 34:e84b8ad1d98b | 7 | } |
chaegle | 34:e84b8ad1d98b | 8 | |
chaegle | 34:e84b8ad1d98b | 9 | void MODSERIAL::initDevice(void) {}; |
chaegle | 34:e84b8ad1d98b | 10 | |
chaegle | 34:e84b8ad1d98b | 11 | bool MODSERIAL::txIsBusy( void ) |
chaegle | 34:e84b8ad1d98b | 12 | { |
chaegle | 34:e84b8ad1d98b | 13 | return ( ((UARTLP_Type*)_base)->S1 & ( 1UL << 6 ) == 0 ) ? true : false; |
chaegle | 34:e84b8ad1d98b | 14 | } |
chaegle | 34:e84b8ad1d98b | 15 | #endif |
chaegle | 34:e84b8ad1d98b | 16 |