aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gaudio/gadc/gaudio_record_config.h
blob: 22d8750ff3acdb717425002c34fc316e3f5011fb (plain)
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
/*
 * This file is subject to the terms of the GFX License. If a copy of
 * the license was not distributed with this file, you can obtain one at:
 *
 *              http://ugfx.org/license.html
 */

/**
 * @file    drivers/gaudio/gadc/gaudio_record_config.h
 * @brief   GAUDIN Record Driver config file.
 *
 * @addtogroup GAUDIO
 * @{
 */

#ifndef GAUDIO_RECORD_CONFIG_H
#define GAUDIO_RECORD_CONFIG_H

#if GFX_USE_GAUDIO && GAUDIO_NEED_RECORD

/*===========================================================================*/
/* Driver hardware support.                                                  */
/*===========================================================================*/

/**
 * @brief	The audio record sample type
 * @details	For this driver it matches the cpu sample type
 */
typedef adcsample_t		audio_record_sample_t;

/**
 * @brief	The maximum sample frequency supported by this audio device
 * @details	For this driver it matches the GADC maximum high speed sample rate
 */
#define GAUDIO_RECORD_MAX_SAMPLE_FREQUENCY		GADC_MAX_HIGH_SPEED_SAMPLERATE

/**
 * @brief	The number of bits in a sample
 * @details	For this driver it matches the cpu sample bits
 */
#define GAUDIO_RECORD_BITS_PER_SAMPLE			GADC_BITS_PER_SAMPLE

/**
 * @brief	The format of an audio sample
 * @details	For this driver it matches the cpu sample format
 */
#define GAUDIO_RECORD_SAMPLE_FORMAT				GADC_SAMPLE_FORMAT

/**
 * For the GAUDIO driver that uses GADC - all the remaining config definitions are specific
 * to the board.
 */
/* Include the user supplied board definitions */
#include "gaudio_record_board.h"

#endif	/* GFX_USE_GAUDIO && GAUDIO_NEED_RECORD */

#endif	/* GAUDIO_RECORD_CONFIG_H */
/** @} */