File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -80,9 +80,9 @@ RTCWakeupDelay operator""_min(const unsigned long long int minutes)
80
80
return RTCWakeupDelay (minutes * 60 );
81
81
}
82
82
83
- RTCWakeupDelay operator " " _h(const unsigned long long int minutes )
83
+ RTCWakeupDelay operator " " _h(const unsigned long long int hours )
84
84
{
85
- return RTCWakeupDelay (minutes * 60 * 60 );
85
+ return RTCWakeupDelay (hours * 60 * 60 );
86
86
}
87
87
88
88
LowPowerStandbyType::UntilEitherClass operator |(
Original file line number Diff line number Diff line change @@ -109,8 +109,8 @@ class RTCWakeupDelay {
109
109
}
110
110
111
111
friend RTCWakeupDelay operator " " _s(const unsigned long long int seconds);
112
- friend RTCWakeupDelay operator " " _min(const unsigned long long int seconds );
113
- friend RTCWakeupDelay operator " " _h(const unsigned long long int seconds );
112
+ friend RTCWakeupDelay operator " " _min(const unsigned long long int minutes );
113
+ friend RTCWakeupDelay operator " " _h(const unsigned long long int hours );
114
114
friend RTCWakeupDelay operator +(const RTCWakeupDelay d1,
115
115
const RTCWakeupDelay d2);
116
116
@@ -301,8 +301,8 @@ extern const LowPowerPortentaH7& LowPower;
301
301
RTCWakeupDelay operator +(const RTCWakeupDelay d1, const RTCWakeupDelay d2);
302
302
RTCWakeupDelay operator " " _s(const unsigned long long int seconds);
303
303
RTCWakeupDelay operator " " _min(const unsigned long long int minutes);
304
- RTCWakeupDelay operator " " _h(const unsigned long long int minutes);
305
304
305
+ RTCWakeupDelay operator " " _h(const unsigned long long int hours);
306
306
LowPowerStandbyType::UntilEitherClass operator |(
307
307
const LowPowerStandbyType::UntilPinActivityClass&,
308
308
const LowPowerStandbyType::UntilTimeElapsedClass&);
You can’t perform that action at this time.
0 commit comments