Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/application/buzzer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ typedef uint16_t buzzer_freq_t;
* @brief The minimum supported frequency for the buzzer, in Hz.
* @note This is empirical, based on audio quality with the current buzzer hardware.
*/
#define BUZZER_MINIMUM_FREQUENCY 400
#define BUZZER_MINIMUM_FREQUENCY 100

/**
* @def BUZZER_MAXIMUM_FREQUENCY
* @brief The maximum supported frequency for the buzzer, in Hz.
* @note This is empirical, based on audio quality with the current buzzer hardware.
*/
#define BUZZER_MAXIMUM_FREQUENCY 2000
#define BUZZER_MAXIMUM_FREQUENCY 5000

_Static_assert( BUZZER_MINIMUM_FREQUENCY < BUZZER_MAXIMUM_FREQUENCY, "Invalid frequency range!" );

Expand Down