Skip to content

Commit 4e53124

Browse files
committed
fix more tabs to spaces
1 parent 8f5a2a5 commit 4e53124

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

libraries/mbed/api/DigitalInOut.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class DigitalInOut {
3232
* @param pin DigitalInOut pin to connect to
3333
*/
3434
DigitalInOut(PinName pin) {
35-
gpio_init_in(&gpio, pin);
36-
}
35+
gpio_init_in(&gpio, pin);
36+
}
3737

3838
/** Create a DigitalInOut connected to the specified pin
3939
*
@@ -43,8 +43,8 @@ class DigitalInOut {
4343
* @param value the initial value of the pin if is an output
4444
*/
4545
DigitalInOut(PinName pin, PinDirection direction, PinMode mode, int value) {
46-
gpio_init_inout(&gpio, pin, direction, mode, value);
47-
}
46+
gpio_init_inout(&gpio, pin, direction, mode, value);
47+
}
4848

4949
/** Set the output, specified as 0 or 1 (int)
5050
*

libraries/mbed/api/DigitalOut.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class DigitalOut {
4747
*/
4848
DigitalOut(PinName pin) {
4949
gpio_init_out(&gpio, pin);
50-
}
50+
}
5151

5252
/** Create a DigitalOut connected to the specified pin
5353
*
@@ -56,7 +56,7 @@ class DigitalOut {
5656
*/
5757
DigitalOut(PinName pin, int value){
5858
gpio_init_out_ex(&gpio, pin, value);
59-
}
59+
}
6060

6161
/** Set the output, specified as 0 or 1 (int)
6262
*

0 commit comments

Comments
 (0)