Skip to content

Commit e6bcee9

Browse files
committed
Add parameter names for doxygen
1 parent de80081 commit e6bcee9

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/Arduino_LowPowerPortentaH7.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ RTCWakeupDelay operator""_h(const unsigned long long int hours)
8686
}
8787

8888
LowPowerStandbyType::UntilEitherClass operator|(
89-
const LowPowerStandbyType::UntilPinActivityClass&,
90-
const LowPowerStandbyType::UntilTimeElapsedClass&)
89+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity,
90+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed)
9191
{
9292
return LowPowerStandbyType::UntilEitherClass();
9393
}
9494

9595
LowPowerStandbyType::UntilEitherClass operator|(
96-
const LowPowerStandbyType::UntilTimeElapsedClass&,
97-
const LowPowerStandbyType::UntilPinActivityClass&)
96+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed,
97+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity)
9898
{
9999
return LowPowerStandbyType::UntilEitherClass();
100100
}

src/Arduino_LowPowerPortentaH7.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ class LowPowerStandbyType {
7777
};
7878

7979
friend LowPowerStandbyType::UntilEitherClass operator|(
80-
const LowPowerStandbyType::UntilPinActivityClass&,
81-
const LowPowerStandbyType::UntilTimeElapsedClass&);
80+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity,
81+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed);
8282

8383
friend LowPowerStandbyType::UntilEitherClass operator|(
84-
const LowPowerStandbyType::UntilTimeElapsedClass&,
85-
const LowPowerStandbyType::UntilPinActivityClass&);
84+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed,
85+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity);
8686
};
8787

8888
class RTCWakeupDelay {
@@ -304,12 +304,12 @@ RTCWakeupDelay operator""_min(const unsigned long long int minutes);
304304

305305
RTCWakeupDelay operator""_h(const unsigned long long int hours);
306306
LowPowerStandbyType::UntilEitherClass operator|(
307-
const LowPowerStandbyType::UntilPinActivityClass&,
308-
const LowPowerStandbyType::UntilTimeElapsedClass&);
307+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity,
308+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed);
309309

310310
LowPowerStandbyType::UntilEitherClass operator|(
311-
const LowPowerStandbyType::UntilTimeElapsedClass&,
312-
const LowPowerStandbyType::UntilPinActivityClass&);
311+
const LowPowerStandbyType::UntilTimeElapsedClass& untilTimeElapsed,
312+
const LowPowerStandbyType::UntilPinActivityClass& untilPinActivity);
313313

314314
/*
315315
********************************************************************************

0 commit comments

Comments
 (0)