Skip to content

Commit 81d89ad

Browse files
committed
Remove superfluous lines
1 parent e783f52 commit 81d89ad

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

examples/WakeFromPin/WakeFromPin.ino

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
********************************************************************************
3-
*
42
* This example demonstrates how to wake up the Portenta C33 from deep sleep using a GPIO pin.
53
* The pin can be configured to wake up the device on a rising or falling edge, but not all pins are supported.
64
* Please check the README.md file for more information about the supported pins.

examples/WakeFromRTC/WakeFromRTC.ino

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/*
2-
********************************************************************************
3-
*
42
* This example demonstrates how to use the RTC to wake up the
53
* Portenta C33 from deep sleep. The device will go to sleep for 5 seconds and
64
* then wake up. The built-in LED will blink every second.
@@ -88,7 +86,7 @@ void setup(){
8886
delay(5000); // lets the user see the led for 5 seconds
8987

9088
// The device will go to sleep after 5 seconds and wake up after 5 seconds to light up the LED
91-
// effectivelly creating the same visual effect as the blink sketch.
89+
// effectively creating the same visual effect as the blink sketch.
9290
if(!lowPower.setWakeUpAlarm(0, 0, 5)){
9391
// Blink the red LED indefinitely to indicate an error
9492
while(true){

0 commit comments

Comments
 (0)