File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed
Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -137,10 +137,6 @@ CustomSoftwareSerial *CustomSoftwareSerial::active_object = 0;
137137char CustomSoftwareSerial::_receive_buffer[_SS_MAX_RX_BUFF];
138138volatile uint8_t CustomSoftwareSerial::_receive_buffer_tail = 0 ;
139139volatile uint8_t CustomSoftwareSerial::_receive_buffer_head = 0 ;
140- uint8_t CustomSoftwareSerial::_numberOfDataBit = 8 ;
141- Parity CustomSoftwareSerial::_parityBit = NONE;
142- uint8_t CustomSoftwareSerial::_numberOfStopBit = 1 ;
143- uint8_t CustomSoftwareSerial::_maxValueOfDataBit = 128 ;
144140
145141
146142//
Original file line number Diff line number Diff line change @@ -98,10 +98,10 @@ class CustomSoftwareSerial : public Stream
9898 uint16_t _buffer_overflow:1 ;
9999 uint16_t _inverse_logic:1 ;
100100
101- static uint8_t _numberOfDataBit;
102- static uint8_t _maxValueOfDataBit;
103- static Parity _parityBit;
104- static uint8_t _numberOfStopBit;
101+ uint8_t _numberOfDataBit;
102+ uint8_t _maxValueOfDataBit;
103+ Parity _parityBit;
104+ uint8_t _numberOfStopBit;
105105
106106
107107 // static data
You can’t perform that action at this time.
0 commit comments