We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b4047f commit 37177c3Copy full SHA for 37177c3
examples/TurnPeripheralsOff/TurnPeripheralsOff.ino
@@ -13,7 +13,13 @@
13
* This code is in the public domain
14
*/
15
16
+// WARNING: The following #define disables automatically turning off the Ethernet chip when the
17
+// microcontroller goes into Standby Mode. Doing so can damage the Ethernet transmission
18
+// termination resistors unless the power to the Ethernet chip is turned off manually,
19
+// as in this example sketch, before entering Standby Mode.
20
+// -->
21
#define NO_ETHERNET_TURN_OFF
22
+// <--
23
24
#include "Arduino_LowPowerPortentaH7.h"
25
#include "Arduino_PMIC.h"
@@ -68,4 +74,4 @@ void setup() {
68
74
#endif
69
75
}
70
76
71
-void loop() {}
77
+void loop() {}
0 commit comments