Skip to content

Commit 5e4be6d

Browse files
committed
small indent fix
1 parent b3f619c commit 5e4be6d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cores/arduino/main.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ int main( void )
2727
init();
2828

2929
delay(1);
30-
#if defined(USBCON)
31-
USBDevice.init();
32-
USBDevice.attach();
30+
#if defined(USBCON)
31+
USBDevice.init();
32+
USBDevice.attach();
3333
#endif
3434

3535
setup();

cores/arduino/wiring.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void init( void )
8585
PM->APBCMASK.reg |= PM_APBCMASK_ADC | PM_APBCMASK_DAC ;
8686

8787
// Setup all pins (digital and analog) in INPUT mode (default is nothing)
88-
for ( ul = 0 ; ul < NUM_DIGITAL_PINS ; ul++ )
88+
for ( ul = 0 ; ul < NUM_DIGITAL_PINS ; ul++ )
8989
{
9090
pinMode( ul, INPUT ) ;
9191
}

0 commit comments

Comments
 (0)