2013-02-18 07:33:35 +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-18 07:33:35 +00:00
|
|
|
*
|
2013-07-21 20:20:37 +00:00
|
|
|
* http://ugfx.org/license.html
|
2013-02-18 07:33:35 +00:00
|
|
|
*/
|
|
|
|
|
2013-05-06 04:44:47 +00:00
|
|
|
/**
|
|
|
|
* @file drivers/gadc/AT91SAM7/gadc_lld.c
|
|
|
|
* @brief GADC - Periodic ADC driver source file for the AT91SAM7 cpu.
|
|
|
|
*/
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
#include "gfx.h"
|
|
|
|
|
|
|
|
#if GFX_USE_GADC
|
|
|
|
|
2014-02-18 14:36:52 +00:00
|
|
|
#include "src/gadc/driver.h"
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
static uint32_t nextfreq;
|
2014-03-20 13:41:27 +00:00
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
// Forward references to ISR routines
|
2014-03-20 13:41:27 +00:00
|
|
|
static void ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n);
|
|
|
|
static void ISR_ErrorI(ADCDriver *adcp, adcerror_t err);
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
static ADCConversionGroup acg = {
|
|
|
|
FALSE, // circular
|
|
|
|
1, // num_channels
|
2014-03-20 13:41:27 +00:00
|
|
|
ISR_CompleteI, // end_cb
|
|
|
|
ISR_ErrorI, // error_cb
|
2013-02-18 07:33:35 +00:00
|
|
|
0, // channelselects
|
|
|
|
0, // trigger
|
|
|
|
0, // frequency
|
|
|
|
};
|
|
|
|
|
2014-03-20 13:41:27 +00:00
|
|
|
static void ISR_CompleteI(ADCDriver *adcp, adcsample_t *buffer, size_t n) {
|
|
|
|
(void) adcp;
|
|
|
|
(void) buffer;
|
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
gadcGotDataI(n);
|
2014-03-20 13:41:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void ISR_ErrorI(ADCDriver *adcp, adcerror_t err) {
|
|
|
|
(void) adcp;
|
|
|
|
(void) err;
|
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
gadcGotDataI(0);
|
2014-03-20 13:41:27 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 07:33:35 +00:00
|
|
|
void gadc_lld_init(void) {
|
2013-12-21 03:21:59 +00:00
|
|
|
adcStart(&ADCD1, 0);
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
size_t gadc_lld_samplesperconversion(uint32_t physdev) {
|
|
|
|
size_t samples;
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
for(samples = 0; physdev; physdev >>= 1)
|
|
|
|
if (physdev & 0x01)
|
|
|
|
samples++;
|
|
|
|
return samples;
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
void gadc_lld_start_timerI(uint32_t frequency) {
|
|
|
|
// Nothing to do here - the AT91SAM7 adc driver uses an internal timer
|
|
|
|
// which is set up when the job is started. We save this here just to
|
|
|
|
// indicate the timer should be re-initialised on the next timer job
|
|
|
|
nextfreq = frequency;
|
|
|
|
}
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
void gadc_lld_stop_timerI(void) {
|
|
|
|
// Nothing to do here. The AT91SAM7 adc driver automatically turns off timer interrupts
|
|
|
|
// on completion of the job
|
|
|
|
}
|
2013-02-18 07:33:35 +00:00
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
void gadc_lld_timerjobI(GadcTimerJob *pj) {
|
|
|
|
acg.channelselects = pj->physdev;
|
|
|
|
acg.trigger = ADC_TRIGGER_TIMER;
|
|
|
|
acg.frequency = nextfreq;
|
|
|
|
nextfreq = 0; // Next job use the same timer
|
|
|
|
adcStartConversionI(&ADCD1, &acg, pj->buffer, pj->todo);
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
2014-03-24 00:08:15 +00:00
|
|
|
void gadc_lld_nontimerjobI(GadcNonTimerJob *pj) {
|
|
|
|
acg.channelselects = pj->physdev;
|
2013-02-18 07:33:35 +00:00
|
|
|
acg.trigger = ADC_TRIGGER_SOFTWARE;
|
2014-03-24 00:08:15 +00:00
|
|
|
adcStartConversionI(&ADCD1, &acg, pj->buffer, 1);
|
2013-02-18 07:33:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* GFX_USE_GADC */
|