We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9d87d6 commit bd082faCopy full SHA for bd082fa
cores/arduino/wiring.c
@@ -102,11 +102,16 @@ void init( void )
102
#endif
103
104
105
+/*
106
+ Commented out to leave pins in default tri-state. This is
107
+ aimed at avoiding power consumption in DeepSleep.
108
+
109
// Setup all pins (digital and analog) in INPUT mode (default is nothing)
110
for (uint32_t ul = 0 ; ul < NUM_DIGITAL_PINS ; ul++ )
111
{
112
pinMode( ul, INPUT ) ;
113
}
114
+*/
115
116
// Initialize Analog Controller
117
// Setting clock
0 commit comments