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.
Dependents: Autoflight2018_22_MODSERIAL
Fork of MODSERIAL by
Diff: ISR_RX.cpp
- Revision:
- 8:775f860e94d3
- Parent:
- 4:28de979b77cf
- Child:
- 12:8c7394e2ae7f
--- a/ISR_RX.cpp Mon Nov 22 09:19:50 2010 +0000 +++ b/ISR_RX.cpp Mon Nov 22 09:58:34 2010 +0000 @@ -28,7 +28,10 @@ void MODSERIAL::isr_rx(void) { - if (! _base ) return; + if (! _base || buffer_size[RxIrq] == 0 || buffer[RxIrq] == (char *)NULL) { + _isr[RxIrq].call(); + return; + } while( MODSERIAL_RBR_HAS_DATA ) { rxc = (char)(_RBR & 0xFF);