diff options
author | Marvin Borner | 2019-09-28 23:08:13 +0200 |
---|---|---|
committer | Marvin Borner | 2019-09-28 23:08:13 +0200 |
commit | b9c103e3048d2b28a2606a3b9693ec881425a732 (patch) | |
tree | 492a1bdba84c7dc8fe5eaee5c640cf9341f120ba /src/kernel/sound/sound.h | |
parent | 4dddb5f5f8611f6df6d2ce2f019cca67a5598cdb (diff) |
Added some documentation
Diffstat (limited to 'src/kernel/sound/sound.h')
-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 |