2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
|
|
|
2011 Giovanni Di Sirio.
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @file adc.c
|
|
|
|
* @brief ADC Driver code.
|
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @addtogroup ADC
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if HAL_USE_ADC || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2011-08-26 13:47:22 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local definitions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-12-29 11:12:05 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief ADC Driver initialization.
|
2010-12-18 08:31:56 +00:00
|
|
|
* @note This function is implicitly invoked by @p halInit(), there is
|
|
|
|
* no need to explicitly initialize the driver.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @init
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcInit(void) {
|
|
|
|
|
|
|
|
adc_lld_init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Initializes the standard part of a @p ADCDriver structure.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2011-01-04 15:08:29 +00:00
|
|
|
* @param[out] adcp pointer to the @p ADCDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @init
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcObjectInit(ADCDriver *adcp) {
|
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->state = ADC_STOP;
|
|
|
|
adcp->config = NULL;
|
|
|
|
adcp->samples = NULL;
|
|
|
|
adcp->depth = 0;
|
|
|
|
adcp->grpp = NULL;
|
2010-09-11 10:57:11 +00:00
|
|
|
#if ADC_USE_WAIT
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->thread = NULL;
|
2010-10-12 15:19:15 +00:00
|
|
|
#endif /* ADC_USE_WAIT */
|
|
|
|
#if ADC_USE_MUTUAL_EXCLUSION
|
|
|
|
#if CH_USE_MUTEXES
|
2011-03-08 10:09:57 +00:00
|
|
|
chMtxInit(&adcp->mutex);
|
2010-10-12 15:19:15 +00:00
|
|
|
#else
|
2011-03-08 10:09:57 +00:00
|
|
|
chSemInit(&adcp->semaphore, 1);
|
2010-10-12 15:19:15 +00:00
|
|
|
#endif
|
|
|
|
#endif /* ADC_USE_MUTUAL_EXCLUSION */
|
|
|
|
#if defined(ADC_DRIVER_EXT_INIT_HOOK)
|
|
|
|
ADC_DRIVER_EXT_INIT_HOOK(adcp);
|
2010-09-11 10:57:11 +00:00
|
|
|
#endif
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Configures and activates the ADC peripheral.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
2010-12-21 18:25:56 +00:00
|
|
|
* @param[in] config pointer to the @p ADCConfig object. Depending on
|
|
|
|
* the implementation the value can be @p NULL.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcStart(ADCDriver *adcp, const ADCConfig *config) {
|
|
|
|
|
2010-12-21 18:25:56 +00:00
|
|
|
chDbgCheck(adcp != NULL, "adcStart");
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
chSysLock();
|
2011-03-08 10:09:57 +00:00
|
|
|
chDbgAssert((adcp->state == ADC_STOP) || (adcp->state == ADC_READY),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStart(), #1", "invalid state");
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->config = config;
|
2009-11-29 08:50:13 +00:00
|
|
|
adc_lld_start(adcp);
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->state = ADC_READY;
|
2009-11-29 08:50:13 +00:00
|
|
|
chSysUnlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Deactivates the ADC peripheral.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcStop(ADCDriver *adcp) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcStop");
|
|
|
|
|
|
|
|
chSysLock();
|
2011-03-08 10:09:57 +00:00
|
|
|
chDbgAssert((adcp->state == ADC_STOP) || (adcp->state == ADC_READY),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStop(), #1", "invalid state");
|
2009-11-29 08:50:13 +00:00
|
|
|
adc_lld_stop(adcp);
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->state = ADC_STOP;
|
2009-11-29 08:50:13 +00:00
|
|
|
chSysUnlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Starts an ADC conversion.
|
2010-10-12 15:19:15 +00:00
|
|
|
* @details Starts an asynchronous conversion operation.
|
2010-02-06 16:17:30 +00:00
|
|
|
* @note The buffer is organized as a matrix of M*N elements where M is the
|
|
|
|
* channels number configured into the conversion group and N is the
|
|
|
|
* buffer depth. The samples are sequentially written into the buffer
|
2010-02-21 07:24:53 +00:00
|
|
|
* with no gaps.
|
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
|
|
|
* @param[in] grpp pointer to a @p ADCConversionGroup object
|
2009-11-29 08:50:13 +00:00
|
|
|
* @param[out] samples pointer to the samples buffer
|
|
|
|
* @param[in] depth buffer depth (matrix rows number). The buffer depth
|
|
|
|
* must be one or an even number.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-10-12 15:19:15 +00:00
|
|
|
void adcStartConversion(ADCDriver *adcp,
|
|
|
|
const ADCConversionGroup *grpp,
|
|
|
|
adcsample_t *samples,
|
|
|
|
size_t depth) {
|
2010-09-11 10:14:05 +00:00
|
|
|
|
|
|
|
chSysLock();
|
2010-10-12 15:19:15 +00:00
|
|
|
adcStartConversionI(adcp, grpp, samples, depth);
|
2010-09-11 10:14:05 +00:00
|
|
|
chSysUnlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Starts an ADC conversion.
|
2010-10-12 15:19:15 +00:00
|
|
|
* @details Starts an asynchronous conversion operation.
|
2010-09-11 10:14:05 +00:00
|
|
|
* @note The buffer is organized as a matrix of M*N elements where M is the
|
|
|
|
* channels number configured into the conversion group and N is the
|
|
|
|
* buffer depth. The samples are sequentially written into the buffer
|
|
|
|
* with no gaps.
|
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
|
|
|
* @param[in] grpp pointer to a @p ADCConversionGroup object
|
|
|
|
* @param[out] samples pointer to the samples buffer
|
|
|
|
* @param[in] depth buffer depth (matrix rows number). The buffer depth
|
|
|
|
* must be one or an even number.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @iclass
|
2010-09-11 10:14:05 +00:00
|
|
|
*/
|
2010-10-12 15:19:15 +00:00
|
|
|
void adcStartConversionI(ADCDriver *adcp,
|
|
|
|
const ADCConversionGroup *grpp,
|
|
|
|
adcsample_t *samples,
|
|
|
|
size_t depth) {
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2011-08-21 13:19:48 +00:00
|
|
|
chDbgCheckClassI();
|
2009-11-29 08:50:13 +00:00
|
|
|
chDbgCheck((adcp != NULL) && (grpp != NULL) && (samples != NULL) &&
|
|
|
|
((depth == 1) || ((depth & 1) == 0)),
|
2010-09-11 10:14:05 +00:00
|
|
|
"adcStartConversionI");
|
2011-03-08 10:09:57 +00:00
|
|
|
chDbgAssert((adcp->state == ADC_READY) ||
|
|
|
|
(adcp->state == ADC_COMPLETE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStartConversionI(), #1", "not ready");
|
2011-08-21 13:19:48 +00:00
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->samples = samples;
|
|
|
|
adcp->depth = depth;
|
|
|
|
adcp->grpp = grpp;
|
|
|
|
adcp->state = ADC_ACTIVE;
|
2009-11-29 08:50:13 +00:00
|
|
|
adc_lld_start_conversion(adcp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-02-06 16:17:30 +00:00
|
|
|
* @brief Stops an ongoing conversion.
|
2010-09-11 10:21:12 +00:00
|
|
|
* @details This function stops the currently ongoing conversion and returns
|
|
|
|
* the driver in the @p ADC_READY state. If there was no conversion
|
|
|
|
* being processed then the function does nothing.
|
2010-02-21 07:24:53 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcStopConversion(ADCDriver *adcp) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcStopConversion");
|
|
|
|
|
|
|
|
chSysLock();
|
2011-03-08 10:09:57 +00:00
|
|
|
chDbgAssert((adcp->state == ADC_READY) ||
|
|
|
|
(adcp->state == ADC_ACTIVE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStopConversion(), #1", "invalid state");
|
2011-03-08 10:09:57 +00:00
|
|
|
if (adcp->state != ADC_READY) {
|
2009-11-29 08:50:13 +00:00
|
|
|
adc_lld_stop_conversion(adcp);
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->grpp = NULL;
|
|
|
|
adcp->state = ADC_READY;
|
2010-10-12 15:19:15 +00:00
|
|
|
_adc_reset_s(adcp);
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
|
|
|
chSysUnlock();
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:14:05 +00:00
|
|
|
/**
|
|
|
|
* @brief Stops an ongoing conversion.
|
2010-09-11 10:21:12 +00:00
|
|
|
* @details This function stops the currently ongoing conversion and returns
|
|
|
|
* the driver in the @p ADC_READY state. If there was no conversion
|
|
|
|
* being processed then the function does nothing.
|
2010-09-11 10:14:05 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @iclass
|
2010-09-11 10:14:05 +00:00
|
|
|
*/
|
|
|
|
void adcStopConversionI(ADCDriver *adcp) {
|
|
|
|
|
2011-08-21 13:19:48 +00:00
|
|
|
chDbgCheckClassI();
|
2010-09-11 10:14:05 +00:00
|
|
|
chDbgCheck(adcp != NULL, "adcStopConversionI");
|
2011-03-08 10:09:57 +00:00
|
|
|
chDbgAssert((adcp->state == ADC_READY) ||
|
|
|
|
(adcp->state == ADC_ACTIVE) ||
|
|
|
|
(adcp->state == ADC_COMPLETE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStopConversionI(), #1", "invalid state");
|
2011-08-21 13:19:48 +00:00
|
|
|
|
2011-03-08 10:09:57 +00:00
|
|
|
if (adcp->state != ADC_READY) {
|
2010-09-11 10:14:05 +00:00
|
|
|
adc_lld_stop_conversion(adcp);
|
2011-03-08 10:09:57 +00:00
|
|
|
adcp->grpp = NULL;
|
|
|
|
adcp->state = ADC_READY;
|
2010-10-12 15:19:15 +00:00
|
|
|
_adc_reset_i(adcp);
|
2010-09-11 10:14:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-11 10:57:11 +00:00
|
|
|
#if ADC_USE_WAIT || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
/**
|
2010-10-12 15:19:15 +00:00
|
|
|
* @brief Performs an ADC conversion.
|
|
|
|
* @details Performs a synchronous conversion operation.
|
|
|
|
* @note The buffer is organized as a matrix of M*N elements where M is the
|
|
|
|
* channels number configured into the conversion group and N is the
|
|
|
|
* buffer depth. The samples are sequentially written into the buffer
|
|
|
|
* with no gaps.
|
2010-02-21 07:24:53 +00:00
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
2010-10-12 15:19:15 +00:00
|
|
|
* @param[in] grpp pointer to a @p ADCConversionGroup object
|
|
|
|
* @param[out] samples pointer to the samples buffer
|
|
|
|
* @param[in] depth buffer depth (matrix rows number). The buffer depth
|
|
|
|
* must be one or an even number.
|
2010-02-06 16:17:30 +00:00
|
|
|
* @return The operation result.
|
2010-10-12 15:19:15 +00:00
|
|
|
* @retval RDY_OK Conversion finished.
|
|
|
|
* @retval RDY_RESET The conversion has been stopped using
|
|
|
|
* @p acdStopConversion() or @p acdStopConversionI(),
|
|
|
|
* the result buffer may contain incorrect data.
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
2010-10-12 15:19:15 +00:00
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
2010-10-12 15:19:15 +00:00
|
|
|
msg_t adcConvert(ADCDriver *adcp,
|
|
|
|
const ADCConversionGroup *grpp,
|
|
|
|
adcsample_t *samples,
|
|
|
|
size_t depth) {
|
|
|
|
msg_t msg;
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
chSysLock();
|
2011-03-10 13:00:39 +00:00
|
|
|
chDbgAssert(adcp->thread == NULL, "adcConvert(), #1", "already waiting");
|
2010-10-12 15:19:15 +00:00
|
|
|
adcStartConversionI(adcp, grpp, samples, depth);
|
2011-03-08 10:09:57 +00:00
|
|
|
(adcp)->thread = chThdSelf();
|
2010-10-12 15:19:15 +00:00
|
|
|
chSchGoSleepS(THD_STATE_SUSPENDED);
|
|
|
|
msg = chThdSelf()->p_u.rdymsg;
|
2009-11-29 08:50:13 +00:00
|
|
|
chSysUnlock();
|
2010-10-12 15:19:15 +00:00
|
|
|
return msg;
|
2009-11-29 08:50:13 +00:00
|
|
|
}
|
2010-09-11 10:57:11 +00:00
|
|
|
#endif /* ADC_USE_WAIT */
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-10-12 15:19:15 +00:00
|
|
|
#if ADC_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Gains exclusive access to the ADC peripheral.
|
|
|
|
* @details This function tries to gain ownership to the ADC bus, if the bus
|
|
|
|
* is already being used then the invoking thread is queued.
|
2011-03-08 10:09:57 +00:00
|
|
|
* @pre In order to use this function the option
|
|
|
|
* @p ADC_USE_MUTUAL_EXCLUSION must be enabled.
|
2010-10-12 15:19:15 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
void adcAcquireBus(ADCDriver *adcp) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcAcquireBus");
|
|
|
|
|
|
|
|
#if CH_USE_MUTEXES
|
2011-03-08 10:09:57 +00:00
|
|
|
chMtxLock(&adcp->mutex);
|
2010-10-12 15:19:15 +00:00
|
|
|
#elif CH_USE_SEMAPHORES
|
2011-03-08 10:09:57 +00:00
|
|
|
chSemWait(&adcp->semaphore);
|
2010-10-12 15:19:15 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Releases exclusive access to the ADC peripheral.
|
2011-03-08 10:09:57 +00:00
|
|
|
* @pre In order to use this function the option
|
|
|
|
* @p ADC_USE_MUTUAL_EXCLUSION must be enabled.
|
2010-10-12 15:19:15 +00:00
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
void adcReleaseBus(ADCDriver *adcp) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcReleaseBus");
|
|
|
|
|
|
|
|
#if CH_USE_MUTEXES
|
|
|
|
(void)adcp;
|
|
|
|
chMtxUnlock();
|
|
|
|
#elif CH_USE_SEMAPHORES
|
2011-03-08 10:09:57 +00:00
|
|
|
chSemSignal(&adcp->semaphore);
|
2010-10-12 15:19:15 +00:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif /* ADC_USE_MUTUAL_EXCLUSION */
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#endif /* HAL_USE_ADC */
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/** @} */
|