mirror of https://github.com/noisymime/Arduino.git
Make private members of HardwareSerial protected
This allows users to create subclasses. Closes: #947
This commit is contained in:
parent
0bd6a2d20f
commit
f50372a2a6
|
@ -39,7 +39,7 @@
|
|||
|
||||
class HardwareSerial : public Stream
|
||||
{
|
||||
private:
|
||||
protected:
|
||||
volatile uint8_t *_ubrrh;
|
||||
volatile uint8_t *_ubrrl;
|
||||
volatile uint8_t *_ucsra;
|
||||
|
|
Loading…
Reference in New Issue