2013-02-28 23:04:52 +00:00
|
|
|
/*
|
2013-06-15 11:37:22 +00:00
|
|
|
* This file is subject to the terms of the GFX License. If a copy of
|
2013-05-03 14:36:17 +00:00
|
|
|
* the license was not distributed with this file, you can obtain one at:
|
2013-02-28 23:04:52 +00:00
|
|
|
*
|
2018-10-01 15:32:39 +00:00
|
|
|
* http://ugfx.io/license.html
|
2013-02-28 23:04:52 +00:00
|
|
|
*/
|
2013-05-06 04:44:47 +00:00
|
|
|
|
2014-03-11 07:13:31 +00:00
|
|
|
#define GAUDIO_RECORD_IMPLEMENTATION
|
2013-02-28 23:04:52 +00:00
|
|
|
#include "gfx.h"
|
|
|
|
|
2014-03-11 07:13:31 +00:00
|
|
|
#if GFX_USE_GAUDIO && GAUDIO_NEED_RECORD
|
2013-02-28 23:04:52 +00:00
|
|
|
|
|
|
|
/* Double check the GADC system is turned on */
|
|
|
|
#if !GFX_USE_GADC
|
2018-02-27 07:44:21 +00:00
|
|
|
#error "GAUDIO - The GADC driver for GAUDIO requires GFX_USE_GADC to be GFXON"
|
2013-02-28 23:04:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Include the driver defines */
|
2015-11-21 09:27:08 +00:00
|
|
|
#include "../../../src/gaudio/gaudio_driver_record.h"
|
2013-02-28 23:04:52 +00:00
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
static void gadcCallbackI(void) {
|
|
|
|
GDataBuffer *pd;
|
|
|
|
|
|
|
|
pd = gadcHighSpeedGetDataI();
|
|
|
|
if (pd)
|
|
|
|
gaudioRecordSaveDataBlockI(pd);
|
|
|
|
}
|
|
|
|
|
2013-02-28 23:04:52 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2018-11-03 00:51:23 +00:00
|
|
|
gBool gaudio_record_lld_init(gU16 channel, gU32 frequency, ArrayDataFormat format) {
|
2014-03-20 13:41:27 +00:00
|
|
|
/* Check the parameters */
|
|
|
|
if (channel >= GAUDIO_RECORD_NUM_CHANNELS || frequency > GAUDIO_RECORD_MAX_SAMPLE_FREQUENCY || format != GAUDIO_RECORD_FORMAT1)
|
2018-06-23 03:02:07 +00:00
|
|
|
return gFalse;
|
2014-03-20 13:41:27 +00:00
|
|
|
|
2013-02-28 23:04:52 +00:00
|
|
|
/* Setup the high speed GADC */
|
2014-03-20 13:41:27 +00:00
|
|
|
gadcHighSpeedInit(gaudio_gadc_physdevs[channel], frequency);
|
2013-02-28 23:04:52 +00:00
|
|
|
|
|
|
|
/* Register ourselves for ISR callbacks */
|
2014-03-20 13:41:27 +00:00
|
|
|
gadcHighSpeedSetISRCallback(gadcCallbackI);
|
2013-02-28 23:04:52 +00:00
|
|
|
|
2018-06-23 03:02:07 +00:00
|
|
|
return gTrue;
|
2013-02-28 23:04:52 +00:00
|
|
|
}
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
void gaudio_record_lld_start(void) {
|
2013-02-28 23:04:52 +00:00
|
|
|
gadcHighSpeedStart();
|
|
|
|
}
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
void gaudio_record_lld_stop(void) {
|
2013-02-28 23:04:52 +00:00
|
|
|
gadcHighSpeedStop();
|
|
|
|
}
|
|
|
|
|
2014-03-11 07:13:31 +00:00
|
|
|
#endif /* GFX_USE_GAUDIO && GAUDIO_NEED_RECORD */
|