2009-11-29 08:50:13 +00:00
|
|
|
/*
|
2010-02-21 07:24:53 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010 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"
|
|
|
|
|
2009-11-29 10:37:31 +00:00
|
|
|
#if CH_HAL_USE_ADC || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
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-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
|
|
|
*
|
|
|
|
* @param[in] 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) {
|
|
|
|
|
|
|
|
adcp->ad_state = ADC_STOP;
|
|
|
|
adcp->ad_config = NULL;
|
|
|
|
adcp->ad_samples = NULL;
|
|
|
|
adcp->ad_depth = 0;
|
|
|
|
adcp->ad_grpp = NULL;
|
2010-09-11 10:57:11 +00:00
|
|
|
#if ADC_USE_WAIT
|
2010-10-12 15:19:15 +00:00
|
|
|
adcp->ad_thread = NULL;
|
|
|
|
#endif /* ADC_USE_WAIT */
|
|
|
|
#if ADC_USE_MUTUAL_EXCLUSION
|
|
|
|
#if CH_USE_MUTEXES
|
|
|
|
chMtxInit(&adcp->ad_mutex);
|
|
|
|
#else
|
|
|
|
chSemInit(&adcp->ad_semaphore, 1);
|
|
|
|
#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
|
|
|
|
* @param[in] config pointer to the @p ADCConfig object
|
2010-10-04 17:16:18 +00:00
|
|
|
*
|
|
|
|
* @api
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
void adcStart(ADCDriver *adcp, const ADCConfig *config) {
|
|
|
|
|
|
|
|
chDbgCheck((adcp != NULL) && (config != NULL), "adcStart");
|
|
|
|
|
|
|
|
chSysLock();
|
|
|
|
chDbgAssert((adcp->ad_state == ADC_STOP) || (adcp->ad_state == ADC_READY),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStart(), #1", "invalid state");
|
2009-11-29 08:50:13 +00:00
|
|
|
adcp->ad_config = config;
|
|
|
|
adc_lld_start(adcp);
|
|
|
|
adcp->ad_state = ADC_READY;
|
|
|
|
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();
|
|
|
|
chDbgAssert((adcp->ad_state == ADC_STOP) || (adcp->ad_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);
|
|
|
|
adcp->ad_state = ADC_STOP;
|
|
|
|
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
|
|
|
|
|
|
|
chDbgCheck((adcp != NULL) && (grpp != NULL) && (samples != NULL) &&
|
|
|
|
((depth == 1) || ((depth & 1) == 0)),
|
2010-09-11 10:14:05 +00:00
|
|
|
"adcStartConversionI");
|
2009-11-29 08:50:13 +00:00
|
|
|
|
2010-10-13 11:45:07 +00:00
|
|
|
chDbgAssert((adcp->ad_state == ADC_READY) ||
|
|
|
|
(adcp->ad_state == ADC_COMPLETE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStartConversionI(), #1", "not ready");
|
2009-11-29 08:50:13 +00:00
|
|
|
adcp->ad_samples = samples;
|
|
|
|
adcp->ad_depth = depth;
|
|
|
|
adcp->ad_grpp = grpp;
|
2010-10-12 15:19:15 +00:00
|
|
|
adcp->ad_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();
|
|
|
|
chDbgAssert((adcp->ad_state == ADC_READY) ||
|
2010-10-13 11:45:07 +00:00
|
|
|
(adcp->ad_state == ADC_ACTIVE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStopConversion(), #1", "invalid state");
|
|
|
|
if (adcp->ad_state != ADC_READY) {
|
2009-11-29 08:50:13 +00:00
|
|
|
adc_lld_stop_conversion(adcp);
|
|
|
|
adcp->ad_grpp = NULL;
|
|
|
|
adcp->ad_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) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcStopConversionI");
|
|
|
|
|
|
|
|
chDbgAssert((adcp->ad_state == ADC_READY) ||
|
2010-10-12 15:19:15 +00:00
|
|
|
(adcp->ad_state == ADC_ACTIVE) ||
|
2010-09-11 10:14:05 +00:00
|
|
|
(adcp->ad_state == ADC_COMPLETE),
|
2010-10-12 15:19:15 +00:00
|
|
|
"adcStopConversionI(), #1", "invalid state");
|
|
|
|
if (adcp->ad_state != ADC_READY) {
|
2010-09-11 10:14:05 +00:00
|
|
|
adc_lld_stop_conversion(adcp);
|
|
|
|
adcp->ad_grpp = NULL;
|
|
|
|
adcp->ad_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();
|
2010-10-12 17:59:47 +00:00
|
|
|
chDbgAssert(grpp->acg_endcb == NULL, "adcConvert(), #1", "has callback");
|
2010-10-12 15:19:15 +00:00
|
|
|
adcStartConversionI(adcp, grpp, samples, depth);
|
|
|
|
(adcp)->ad_thread = chThdSelf();
|
|
|
|
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.
|
|
|
|
* @pre In order to use this function the option @p ADC_USE_MUTUAL_EXCLUSION
|
|
|
|
* must be enabled.
|
|
|
|
*
|
|
|
|
* @param[in] adcp pointer to the @p ADCDriver object
|
|
|
|
*
|
|
|
|
* @api
|
|
|
|
*/
|
|
|
|
void adcAcquireBus(ADCDriver *adcp) {
|
|
|
|
|
|
|
|
chDbgCheck(adcp != NULL, "adcAcquireBus");
|
|
|
|
|
|
|
|
#if CH_USE_MUTEXES
|
|
|
|
chMtxLock(&adcp->ad_mutex);
|
|
|
|
#elif CH_USE_SEMAPHORES
|
|
|
|
chSemWait(&adcp->ad_semaphore);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Releases exclusive access to the ADC peripheral.
|
|
|
|
* @pre In order to use this function the option @p ADC_USE_MUTUAL_EXCLUSION
|
|
|
|
* must be enabled.
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
chSemSignal(&adcp->ad_semaphore);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif /* ADC_USE_MUTUAL_EXCLUSION */
|
|
|
|
|
2009-11-29 08:50:13 +00:00
|
|
|
#endif /* CH_HAL_USE_ADC */
|
|
|
|
|
|
|
|
/** @} */
|