File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ class TwoWire : public Stream
39
39
void begin (uint8_t );
40
40
void end ();
41
41
void setClock (uint32_t );
42
- void setPins (uint8_t pin_SDA , uint8_t pin_SCL );
42
+ void setPins (uint8_t pinSDA , uint8_t pinSCL );
43
43
44
44
void beginTransmission (uint8_t );
45
45
uint8_t endTransmission (bool stopBit);
Original file line number Diff line number Diff line change @@ -127,10 +127,10 @@ void TwoWire::setClock(uint32_t baudrate) {
127
127
}
128
128
}
129
129
130
- void TwoWire::setPins (uint8_t pin_SDA , uint8_t pin_SCL )
130
+ void TwoWire::setPins (uint8_t pinSDA , uint8_t pinSCL )
131
131
{
132
- this ->_uc_pinSDA = g_ADigitalPinMap[pin_SDA ];
133
- this ->_uc_pinSCL = g_ADigitalPinMap[pin_SCL ];
132
+ this ->_uc_pinSDA = g_ADigitalPinMap[pinSDA ];
133
+ this ->_uc_pinSCL = g_ADigitalPinMap[pinSCL ];
134
134
}
135
135
136
136
void TwoWire::end () {
You can’t perform that action at this time.
0 commit comments