diff options
Diffstat (limited to 'src/kernel/sound')
-rw-r--r-- | src/kernel/sound/sound.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/kernel/sound/sound.h b/src/kernel/sound/sound.h index 15c67c5..312f0d8 100644 --- a/src/kernel/sound/sound.h +++ b/src/kernel/sound/sound.h @@ -3,6 +3,11 @@ #include <stdint.h> +/** + * Beep in specific frequency for amount of ticks + * @param frequency The frequency of the beep + * @param ticks The duration in ticks + */ void beep(uint32_t frequency, uint32_t ticks); #endif |