mirror of https://github.com/ARMmbed/mbed-os.git
Fix stub constructor
parent
0a395b6833
commit
b3b7f98698
|
@ -19,7 +19,8 @@
|
|||
|
||||
namespace mbed {
|
||||
|
||||
SerialBase::SerialBase(PinName tx, PinName rx, int baud)
|
||||
SerialBase::SerialBase(PinName tx, PinName rx, int baud) :
|
||||
_tx_pin(tx), _rx_pin(rx)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue