forked from johnath/beep
-
Notifications
You must be signed in to change notification settings - Fork 11
/
beep-drivers.h
106 lines (84 loc) · 2.45 KB
/
beep-drivers.h
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/** \file beep-drivers.h
* \brief interface to the beep driver infrastructure
* \author Copyright (C) 2019 Hans Ulrich Niedermann
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*
* \addtogroup beep_drivers
*
* @{
*
*/
#ifndef BEEP_DRIVERS_H
#define BEEP_DRIVERS_H
#include "beep-compiler.h"
#include "beep-driver.h"
/**
* Register a beep driver with the beep driver infrastructure.
*
* To be called from driver's CONSTRUCTOR function which means once
* per program invocation.
*
* @param driver The driver to register.
*/
void beep_drivers_register(beep_driver *driver)
__attribute__(( nonnull(1) ));
/**
* Return the first driver whose detect() function returns true.
*
* @param device_name The device name.
*
* @return NULL if no driver has been detected.
* @return Otherwise, the detected driver.
*/
beep_driver *beep_drivers_detect(const char *const device_name);
/**
* Initialize the beep driver via driver's init() function.
*
* @param driver The beep driver.
*/
void beep_drivers_init(beep_driver *driver)
__attribute__(( nonnull(1) ));
/**
* Deinitialize the beep driver via driver's fini() function.
*
* @param driver The beep driver.
*/
void beep_drivers_fini(beep_driver *driver)
__attribute__(( nonnull(1) ));
/**
* Call the beep driver's begin_tone() function.
*
* @param driver The beep driver.
* @param freq The frequency to play.
*/
void beep_drivers_begin_tone(beep_driver *driver, const uint16_t freq)
__attribute__(( nonnull(1) ));
/**
* Call the beep driver's end_tone() function.
*
* @param driver The beep driver.
*/
void beep_drivers_end_tone(beep_driver *driver)
__attribute__(( nonnull(1) ));
#endif /* !defined(BEEP_DRIVERS_H) */
/** @} */
/*
* Local Variables:
* c-basic-offset: 4
* indent-tabs-mode: nil
* End:
*/