Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / libsim / buzzer.c @ 942

History | View | Annotate | Download (333 Bytes)

1
#include "buzzer.h"
2
#include "util.h"
3

    
4
void buzzer_init(void)
5
{
6
        UNIMPLEMENTED
7
}
8

    
9
void buzzer_set_val(unsigned int buzz_val)
10
{
11
        UNIMPLEMENTED
12
}
13

    
14
void buzzer_set_freq(unsigned int buzzer_freq)
15
{
16
        UNIMPLEMENTED
17
}
18

    
19
void buzzer_chirp(unsigned int ms, unsigned int buzz_freq)
20
{
21
        UNIMPLEMENTED
22
}
23

    
24
void buzzer_off(void)
25
{
26
        UNIMPLEMENTED
27
}
28