blob: 0734fcab0ffa7f0138a3226f5c812b60d13cc78b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/*
* (C) Copyright 2002
* Keith Outwater, keith_outwater@mvis.com
*
* SPDX-License-Identifier: GPL-2.0+
*/
void init_beeper(void);
void set_beeper_frequency(uint frequency);
void beeper_on(void);
void beeper_off(void);
void set_beeper_volume(int steps);
int do_beeper(char *sequence);
|