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 DMX by

A bit more information: _uart->ISR & ICR are not available in the USART typedef for the F103RB. These are included in the F303, the chip where the library was ment for.
Does anyone have an idea how i can make a 'work around'?
void DMX::int_rx () { int flg, dat; #ifdef TARGET_STM dat = _dmx.getc(); flg = (_uart->ISR & (USART_FLAG_FE | USART_ISR_IDLE)) == (USART_FLAG_FE | USART_ISR_IDLE); if (flg) { _uart->ICR = USART_ICR_FECF; }