2013-05-02 01:53:28 +02:00
|
|
|
/*
|
2013-06-15 21:37:22 +10:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 16:36:17 +02:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
|
|
|
*
|
2018-10-01 17:32:39 +02:00
|
|
|
* http://ugfx.io/license.html
|
2013-05-03 16:36:17 +02:00
|
|
|
*/
|
2013-03-01 09:04:52 +10:00
|
|
|
|
2014-03-11 17:13:31 +10:00
|
|
|
#ifndef GAUDIO_RECORD_CONFIG_H
|
|
|
|
#define GAUDIO_RECORD_CONFIG_H
|
2013-03-01 09:04:52 +10:00
|
|
|
|
2014-03-11 17:13:31 +10:00
|
|
|
#if GFX_USE_GAUDIO && GAUDIO_NEED_RECORD
|
2013-03-01 09:04:52 +10:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver hardware support. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2014-03-20 23:41:27 +10:00
|
|
|
#define GAUDIO_RECORD_MAX_SAMPLE_FREQUENCY GADC_MAX_HIGH_SPEED_SAMPLERATE
|
|
|
|
#define GAUDIO_RECORD_NUM_FORMATS 1
|
|
|
|
#define GAUDIO_RECORD_FORMAT1 GADC_SAMPLE_FORMAT
|
2013-03-01 09:04:52 +10:00
|
|
|
|
2013-10-28 19:06:16 +10:00
|
|
|
/* Include the user supplied board definitions */
|
2014-03-11 17:13:31 +10:00
|
|
|
#include "gaudio_record_board.h"
|
2013-03-01 09:04:52 +10:00
|
|
|
|
2014-03-11 17:13:31 +10:00
|
|
|
#endif /* GFX_USE_GAUDIO && GAUDIO_NEED_RECORD */
|
2013-03-01 09:04:52 +10:00
|
|
|
|
2014-03-11 17:13:31 +10:00
|
|
|
#endif /* GAUDIO_RECORD_CONFIG_H */
|