Project

General

Profile

Statistics
| Revision:

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

History | View | Annotate | Download (315 Bytes)

1
#include "buzzer.h"
2

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

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

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

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

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