diff options
Diffstat (limited to 'src/sound')
-rw-r--r-- | src/sound/frequency.c | 7 | ||||
-rw-r--r-- | src/sound/sound.h | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/src/sound/frequency.c b/src/sound/frequency.c index e5e831c..6d02690 100644 --- a/src/sound/frequency.c +++ b/src/sound/frequency.c @@ -11,7 +11,6 @@ static void play_sound(uint32_t frequency) { send(0x42, (uint8_t) (divided)); send(0x42, (uint8_t) (divided >> 8)); - //And play the sound using the PC speaker tmp = receive(0x61); if (tmp != (tmp | 3)) { send(0x61, tmp | 3); @@ -25,8 +24,8 @@ static void shut_up() { } //Make a beep -void beep() { - play_sound(1000); - timer_wait(100); +void beep(uint32_t frequency, uint32_t ticks) { + play_sound(frequency); + timer_wait(ticks); shut_up(); }
\ No newline at end of file diff --git a/src/sound/sound.h b/src/sound/sound.h index f8692ea..baf70b2 100644 --- a/src/sound/sound.h +++ b/src/sound/sound.h @@ -1,6 +1,6 @@ #ifndef MELVIX_SOUND_H #define MELVIX_SOUND_H -void beep(); +void beep(uint32_t frequency, uint32_t ticks); #endif |