Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f97ffc6

Browse files
committed
[Docs] fix reference
1 parent 9507540 commit f97ffc6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/AH/Hardware/MultiPurposeButton.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +87,13 @@ class MultiPurposeButton {
8787
this->multiPressDelay = multiPressDelay;
8888
}
8989

90-
/// @see @ref Button::previousBounceTime()
90+
/// @see @ref Button::previousBounceTime() const
9191
unsigned long previousBounceTime() const {
9292
return button.previousBounceTime();
9393
}
94-
/// @see @ref Button::stableTime()
94+
/// @see @ref Button::stableTime() const
9595
unsigned long stableTime() const { return button.stableTime(); }
96-
/// @see @ref Button::stableTime(unsigned long)
96+
/// @see @ref Button::stableTime(unsigned long) const
9797
unsigned long stableTime(unsigned long now) const {
9898
return button.stableTime(now);
9999
}
@@ -113,7 +113,7 @@ class MultiPurposeButton {
113113
/// Return the name of the event as a string.
114114
static FlashString_t getName(Event ev) { return to_string(ev); }
115115

116-
/// @see @ref Button::getState()
116+
/// @see @ref Button::getState() const
117117
Button::State getButtonState() const { return button.getState(); }
118118
/// @see @ref Button::invert()
119119
void invert() { button.invert(); }

0 commit comments

Comments
 (0)