aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/sound/frequency.c
blob: fdc32e472f70e0c0feaeeb1e8634079c8717bda5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <stdint.h>
#include "../io/io.h"
#include "../timer/timer.h"

static void play_sound(uint32_t frequency) {
    uint32_t divided;
    uint8_t tmp;

    divided = 1193180 / frequency;
    send_b(0x43, 0xb6);
    send_b(0x42, (uint8_t) (divided));
    send_b(0x42, (uint8_t) (divided >> 8));

    tmp = receive_b(0x61);
    if (tmp != (tmp | 3)) {
        send_b(0x61, tmp | 3);
    }
}

static void shut_up() {
    uint8_t tmp = receive_b(0x61) & 0xFC;

    send_b(0x61, tmp);
}

//Make a beep
void beep(uint32_t frequency, uint32_t ticks) {
    play_sound(frequency);
    timer_wait(ticks);
    shut_up();
}