µGFX  2.9
version 2.9
gaudio_options.h
Go to the documentation of this file.
1 /*
2  * This file is subject to the terms of the GFX License. If a copy of
3  * the license was not distributed with this file, you can obtain one at:
4  *
5  * http://ugfx.io/license.html
6  */
7 
8 /**
9  * @file src/gaudio/gaudio_options.h
10  * @brief GAUDIO - Audio subsystem options header file.
11  *
12  * @addtogroup GAUDIO
13  * @{
14  */
15 
16 #ifndef _GAUDIO_OPTIONS_H
17 #define _GAUDIO_OPTIONS_H
18 
19 /**
20  * @name GAUDIO Functionality to be included
21  * @{
22  */
23  /**
24  * @brief Audio Play capability is needed
25  */
26  #ifndef GAUDIO_NEED_PLAY
27  #define GAUDIO_NEED_PLAY GFXOFF
28  #endif
29  /**
30  * @brief Audio Recording capability is needed
31  */
32  #ifndef GAUDIO_NEED_RECORD
33  #define GAUDIO_NEED_RECORD GFXOFF
34  #endif
35 /**
36  * @}
37  *
38  * @name GAUDIO Optional Sizing Parameters
39  * @{
40  */
41 /** @} */
42 
43 #endif /* _GAUDIO_OPTIONS_H */
44 /** @} */