Skip to content

Commit 741da45

Browse files
committed
Add link from Debouncer to debouncing discussion.
1 parent 70345b9 commit 741da45

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

lib/3rd_party_adapters/FreeRTOS/debouncedIsr.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ int debouncer::defaultPriorityToInt()
3535
* - if the interrupt function is called again the timer will restart
3636
* - when the timer expires, the handler will be called
3737
*
38+
* \see \ref debouncing_approaches
3839
*/
3940
class Debouncer
4041
{

lib/3rd_party_adapters/FreeRTOS/debouncing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Debouncing Approaches
1+
# Debouncing Approaches {#debouncing_approaches}
22

33
Obtaining the state of switches and buttons generally requires to debounce the input signal because of contact bouncing.
44
The waveform of an input may be smoothed physically using a low-pass filter.

0 commit comments

Comments
 (0)