mirror of https://github.com/ARMmbed/mbed-os.git
Issue with mbed compile for GCC_ARM tool resolved
Functions 'serial_break_set' & 'serial_break_clear' wrongly removed during 'SERIAL_FC disabled, critical section API Updation' commit. Due to this 'mbed compile' command for GCC_ARM tool fails to compile.pull/4840/head
parent
552feccca3
commit
f79216c8d8
|
@ -239,3 +239,11 @@ void serial_pinout_tx(PinName tx)
|
||||||
{
|
{
|
||||||
pinmap_pinout(tx, PinMap_UART_TX);
|
pinmap_pinout(tx, PinMap_UART_TX);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void serial_break_set(serial_t *obj)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void serial_break_clear(serial_t *obj)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue