Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 935ac4c + c0e96d2 commit bc02f9cCopy full SHA for bc02f9c
cores/arduino/HardwareSerial.h
@@ -52,9 +52,9 @@
52
class HardwareSerial : public Stream
53
{
54
public:
55
- void begin( const uint32_t dwBaudRate ) ;
56
- void begin( const uint32_t dwBaudRate, uint8_t rx_pin, uint8_t tx_pin ) ;
57
- void end();
+ virtual void begin( const uint32_t dwBaudRate ) = 0;
+ virtual void begin( const uint32_t dwBaudRate, uint8_t rx_pin, uint8_t tx_pin ) = 0;
+ virtual void end() = 0;
58
virtual int available(void) = 0;
59
virtual int peek(void) = 0;
60
virtual int read(void) = 0;
0 commit comments