123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642 |
- /*
- ChibiOS - Copyright (C) 2016..2018 Rocco Marco Guglielmi
- This file is part of ChibiOS.
- ChibiOS 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 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/>.
-
- */
- /**
- * @file l3gd20.c
- * @brief L3GD20 MEMS interface module code.
- *
- * @addtogroup L3GD20
- * @ingroup EX_ST
- * @{
- */
- #include "hal.h"
- #include "l3gd20.h"
- /*===========================================================================*/
- /* Driver local definitions. */
- /*===========================================================================*/
- /*===========================================================================*/
- /* Driver exported variables. */
- /*===========================================================================*/
- /*===========================================================================*/
- /* Driver local variables and types. */
- /*===========================================================================*/
- /*===========================================================================*/
- /* Driver local functions. */
- /*===========================================================================*/
- #if (L3GD20_USE_SPI) || defined(__DOXYGEN__)
- /**
- * @brief Reads a generic register value using SPI.
- * @pre The SPI interface must be initialized and the driver started.
- *
- * @param[in] spip pointer to the SPI interface
- * @param[in] reg starting register address
- * @param[in] n number of consecutive registers to read
- * @param[in] b pointer to an output buffer.
- */
- static void l3gd20SPIReadRegister(SPIDriver *spip, uint8_t reg, size_t n,
- uint8_t* b) {
- uint8_t cmd;
- (n == 1) ? (cmd = reg | L3GD20_RW) : (cmd = reg | L3GD20_RW | L3GD20_MS);
- spiSelect(spip);
- spiSend(spip, 1, &cmd);
- spiReceive(spip, n, b);
- spiUnselect(spip);
- }
- /**
- * @brief Writes a value into a generic register using SPI.
- * @pre The SPI interface must be initialized and the driver started.
- *
- * @param[in] spip pointer to the SPI interface
- * @param[in] reg starting register address
- * @param[in] n number of adjacent registers to write
- * @param[in] b pointer to a buffer of values.
- */
- static void l3gd20SPIWriteRegister(SPIDriver *spip, uint8_t reg, size_t n,
- uint8_t* b) {
- uint8_t cmd;
- (n == 1) ? (cmd = reg) : (cmd = reg | L3GD20_MS);
- spiSelect(spip);
- spiSend(spip, 1, &cmd);
- spiSend(spip, n, b);
- spiUnselect(spip);
- }
- #endif /* L3GD20_USE_SPI */
- /**
- * @brief Return the number of axes of the BaseGyroscope.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- *
- * @return the number of axes.
- */
- static size_t gyro_get_axes_number(void *ip) {
- (void)ip;
-
- return L3GD20_GYRO_NUMBER_OF_AXES;
- }
- /**
- * @brief Retrieves raw data from the BaseGyroscope.
- * @note This data is retrieved from MEMS register without any algebraical
- * manipulation.
- * @note The axes array must be at least the same size of the
- * BaseGyroscope axes number.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- * @param[out] axes a buffer which would be filled with raw data.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_read_raw(void *ip, int32_t axes[L3GD20_GYRO_NUMBER_OF_AXES]) {
- L3GD20Driver* devp;
- int16_t tmp;
- uint8_t i, buff [2 * L3GD20_GYRO_NUMBER_OF_AXES];
- msg_t msg = MSG_OK;
-
- osalDbgCheck((ip != NULL) && (axes != NULL));
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
-
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_read_raw(), invalid state");
- #if L3GD20_USE_SPI
- osalDbgAssert((devp->config->spip->state == SPI_READY),
- "gyro_read_raw(), channel not ready");
-
- #if L3GD20_SHARED_SPI
- spiAcquireBus(devp->config->spip);
- spiStart(devp->config->spip,
- devp->config->spicfg);
- #endif /* L3GD20_SHARED_SPI */
- l3gd20SPIReadRegister(devp->config->spip, L3GD20_AD_OUT_X_L,
- L3GD20_GYRO_NUMBER_OF_AXES * 2, buff);
- #if L3GD20_SHARED_SPI
- spiReleaseBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- #endif /* L3GD20_USE_SPI */
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- tmp = buff[2 * i] + (buff[2 * i + 1] << 8);
- axes[i] = (int32_t)tmp;
- }
- return msg;
- }
- /**
- * @brief Retrieves cooked data from the BaseGyroscope.
- * @note This data is manipulated according to the formula
- * cooked = (raw * sensitivity) - bias.
- * @note Final data is expressed as DPS.
- * @note The axes array must be at least the same size of the
- * BaseGyroscope axes number.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- * @param[out] axes a buffer which would be filled with cooked data.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_read_cooked(void *ip, float axes[]) {
- L3GD20Driver* devp;
- uint32_t i;
- int32_t raw[L3GD20_GYRO_NUMBER_OF_AXES];
- msg_t msg;
- osalDbgCheck((ip != NULL) && (axes != NULL));
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
-
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_read_cooked(), invalid state");
- msg = gyro_read_raw(ip, raw);
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++){
- axes[i] = (raw[i] * devp->gyrosensitivity[i]) - devp->gyrobias[i];
- }
- return msg;
- }
- /**
- * @brief Samples bias values for the BaseGyroscope.
- * @note The L3GD20 shall not be moved during the whole procedure.
- * @note After this function internal bias is automatically updated.
- * @note The behavior of this function depends on @p L3GD20_BIAS_ACQ_TIMES
- * and @p L3GD20_BIAS_SETTLING_US.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_sample_bias(void *ip) {
- L3GD20Driver* devp;
- uint32_t i, j;
- int32_t raw[L3GD20_GYRO_NUMBER_OF_AXES];
- int32_t buff[L3GD20_GYRO_NUMBER_OF_AXES] = {0, 0, 0};
- msg_t msg;
-
- osalDbgCheck(ip != NULL);
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
-
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_sample_bias(), invalid state");
- #if L3GD20_USE_SPI
- osalDbgAssert((devp->config->spip->state == SPI_READY),
- "gyro_sample_bias(), channel not ready");
- #endif
- for(i = 0; i < L3GD20_BIAS_ACQ_TIMES; i++){
- msg = gyro_read_raw(ip, raw);
- if(msg != MSG_OK)
- return msg;
- for(j = 0; j < L3GD20_GYRO_NUMBER_OF_AXES; j++){
- buff[j] += raw[j];
- }
- osalThreadSleepMicroseconds(L3GD20_BIAS_SETTLING_US);
- }
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++){
- devp->gyrobias[i] = (buff[i] / L3GD20_BIAS_ACQ_TIMES);
- devp->gyrobias[i] *= devp->gyrosensitivity[i];
- }
- return msg;
- }
- /**
- * @brief Set bias values for the BaseGyroscope.
- * @note Bias must be expressed as DPS.
- * @note The bias buffer must be at least the same size of the BaseGyroscope
- * axes number.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- * @param[in] bp a buffer which contains biases.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_set_bias(void *ip, float *bp) {
- L3GD20Driver* devp;
- uint32_t i;
- msg_t msg = MSG_OK;
-
- osalDbgCheck((ip != NULL) && (bp != NULL));
-
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
-
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_set_bias(), invalid state");
-
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- devp->gyrobias[i] = bp[i];
- }
- return msg;
- }
- /**
- * @brief Reset bias values for the BaseGyroscope.
- * @note Default biases value are obtained from device datasheet when
- * available otherwise they are considered zero.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_reset_bias(void *ip) {
- L3GD20Driver* devp;
- uint32_t i;
- msg_t msg = MSG_OK;
- osalDbgCheck(ip != NULL);
-
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
-
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_reset_bias(), invalid state");
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++)
- devp->gyrobias[i] = L3GD20_GYRO_BIAS;
- return msg;
- }
- /**
- * @brief Set sensitivity values for the BaseGyroscope.
- * @note Sensitivity must be expressed as DPS/LSB.
- * @note The sensitivity buffer must be at least the same size of the
- * BaseGyroscope axes number.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- * @param[in] sp a buffer which contains sensitivities.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- */
- static msg_t gyro_set_sensivity(void *ip, float *sp) {
- L3GD20Driver* devp;
- uint32_t i;
- msg_t msg = MSG_OK;
-
- osalDbgCheck((ip != NULL) && (sp !=NULL));
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_set_sensivity(), invalid state");
-
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- devp->gyrosensitivity[i] = sp[i];
- }
- return msg;
- }
- /**
- * @brief Reset sensitivity values for the BaseGyroscope.
- * @note Default sensitivities value are obtained from device datasheet.
- *
- * @param[in] ip pointer to @p BaseGyroscope interface.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- * @retval MSG_RESET otherwise.
- */
- static msg_t gyro_reset_sensivity(void *ip) {
- L3GD20Driver* devp;
- uint32_t i;
- msg_t msg = MSG_OK;
-
- osalDbgCheck(ip != NULL);
- /* Getting parent instance pointer.*/
- devp = objGetInstance(L3GD20Driver*, (BaseGyroscope*)ip);
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_reset_sensivity(), invalid state");
- if(devp->config->gyrofullscale == L3GD20_FS_250DPS)
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_250DPS;
- else if(devp->config->gyrofullscale == L3GD20_FS_500DPS)
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_500DPS;
- else if(devp->config->gyrofullscale == L3GD20_FS_2000DPS)
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_2000DPS;
- else {
- osalDbgAssert(FALSE, "gyro_reset_sensivity(), full scale issue");
- return MSG_RESET;
- }
- return msg;
- }
- /**
- * @brief Changes the L3GD20Driver gyroscope fullscale value.
- * @note This function also rescale sensitivities and biases based on
- * previous and next fullscale value.
- * @note A recalibration is highly suggested after calling this function.
- *
- * @param[in] devp pointer to @p BaseGyroscope interface.
- * @param[in] fs new fullscale value.
- *
- * @return The operation status.
- * @retval MSG_OK if the function succeeded.
- * @retval MSG_RESET otherwise.
- */
- static msg_t gyro_set_full_scale(L3GD20Driver *devp, l3gd20_fs_t fs) {
- float newfs, scale;
- uint8_t i, cr;
- msg_t msg = MSG_OK;
- osalDbgCheck(devp != NULL);
- osalDbgAssert((devp->state == L3GD20_READY),
- "gyro_set_full_scale(), invalid state");
- #if L3GD20_USE_SPI
- osalDbgAssert((devp->config->spip->state == SPI_READY),
- "gyro_set_full_scale(), channel not ready");
- #endif
- if(fs == L3GD20_FS_250DPS) {
- newfs = L3GD20_250DPS;
- }
- else if(fs == L3GD20_FS_500DPS) {
- newfs = L3GD20_500DPS;
- }
- else if(fs == L3GD20_FS_2000DPS) {
- newfs = L3GD20_2000DPS;
- }
- else {
- return MSG_RESET;
- }
- if(newfs != devp->gyrofullscale) {
- scale = newfs / devp->gyrofullscale;
- devp->gyrofullscale = newfs;
- #if L3GD20_USE_SPI
- #if L3GD20_SHARED_SPI
- spiAcquireBus(devp->config->spip);
- spiStart(devp->config->spip,
- devp->config->spicfg);
- #endif /* L3GD20_SHARED_SPI */
- /* Updating register.*/
- l3gd20SPIReadRegister(devp->config->spip,
- L3GD20_AD_CTRL_REG4, 1, &cr);
- #if L3GD20_SHARED_SPI
- spiReleaseBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- #endif /* L3GD20_USE_SPI */
- cr &= ~(L3GD20_CTRL_REG4_FS_MASK);
- cr |= fs;
- #if L3GD20_USE_SPI
- #if L3GD20_SHARED_SPI
- spiAcquireBus(devp->config->spip);
- spiStart(devp->config->spip,
- devp->config->spicfg);
- #endif /* L3GD20_SHARED_SPI */
- l3gd20SPIWriteRegister(devp->config->spip,
- L3GD20_AD_CTRL_REG4, 1, &cr);
- #if L3GD20_SHARED_SPI
- spiReleaseBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- #endif /* L3GD20_USE_SPI */
- /* Scaling sensitivity and bias. Re-calibration is suggested anyway. */
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- devp->gyrosensitivity[i] *= scale;
- devp->gyrobias[i] *= scale;
- }
- }
- return msg;
- }
- static const struct L3GD20VMT vmt_device = {
- (size_t)0,
- gyro_set_full_scale
- };
- static const struct BaseGyroscopeVMT vmt_gyroscope = {
- sizeof(struct L3GD20VMT*),
- gyro_get_axes_number, gyro_read_raw, gyro_read_cooked,
- gyro_sample_bias, gyro_set_bias, gyro_reset_bias,
- gyro_set_sensivity, gyro_reset_sensivity
- };
- /*===========================================================================*/
- /* Driver exported functions. */
- /*===========================================================================*/
- /**
- * @brief Initializes an instance.
- *
- * @param[out] devp pointer to the @p L3GD20Driver object
- *
- * @init
- */
- void l3gd20ObjectInit(L3GD20Driver *devp) {
- devp->vmt = &vmt_device;
- devp->gyro_if.vmt = &vmt_gyroscope;
-
- devp->config = NULL;
- devp->state = L3GD20_STOP;
- }
- /**
- * @brief Configures and activates L3GD20 Complex Driver peripheral.
- *
- * @param[in] devp pointer to the @p L3GD20Driver object
- * @param[in] config pointer to the @p L3GD20Config object
- *
- * @api
- */
- void l3gd20Start(L3GD20Driver *devp, const L3GD20Config *config) {
- uint32_t i;
- uint8_t cr[5] = {0, 0, 0, 0, 0};
- osalDbgCheck((devp != NULL) && (config != NULL));
- osalDbgAssert((devp->state == L3GD20_STOP) || (devp->state == L3GD20_READY),
- "l3gd20Start(), invalid state");
- devp->config = config;
-
- /* Control register 1 configuration block.*/
- {
- cr[0] = L3GD20_CTRL_REG1_XEN | L3GD20_CTRL_REG1_YEN |
- L3GD20_CTRL_REG1_ZEN | L3GD20_CTRL_REG1_PD |
- devp->config->gyrooutputdatarate;
- #if L3GD20_USE_ADVANCED || defined(__DOXYGEN__)
- cr[0] |= devp->config->gyrobandwidth;
- #endif
- }
-
- /* Control register 2 configuration block.*/
- {
- #if L3GD20_USE_ADVANCED || defined(__DOXYGEN__)
- if(devp->config->gyrohpmode != L3GD20_HPM_BYPASSED)
- cr[1] = devp->config->gyrohpmode | devp->config->gyrohpconfiguration;
- #endif
- }
-
- /* Control register 4 configuration block.*/
- {
- cr[3] = devp->config->gyrofullscale;
- #if L3GD20_USE_ADVANCED || defined(__DOXYGEN__)
- cr[3] |= devp->config->gyroblockdataupdate |
- devp->config->gyroendianness;
- #endif
- }
-
- /* Control register 5 configuration block.*/
- {
- #if L3GD20_USE_ADVANCED || defined(__DOXYGEN__)
- if((devp->config->gyrohpmode != L3GD20_HPM_BYPASSED)) {
- cr[4] = L3GD20_CTRL_REG5_HPEN;
- if(devp->config->gyrolp2mode != L3GD20_LP2M_BYPASSED) {
- cr[4] |= L3GD20_CTRL_REG5_INT1_SEL1 |
- L3GD20_CTRL_REG5_OUT_SEL1;
- }
- else {
- cr[4] |= L3GD20_CTRL_REG5_INT1_SEL0 |
- L3GD20_CTRL_REG5_OUT_SEL0;
- }
- }
- #endif
- }
- #if L3GD20_USE_SPI
- #if L3GD20_SHARED_SPI
- spiAcquireBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- spiStart(devp->config->spip,
- devp->config->spicfg);
-
- l3gd20SPIWriteRegister(devp->config->spip, L3GD20_AD_CTRL_REG1,
- 5, cr);
- #if L3GD20_SHARED_SPI
- spiReleaseBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- #endif /* L3GD20_USE_SPI */
-
- /* Storing sensitivity information according to full scale.*/
- if(devp->config->gyrofullscale == L3GD20_FS_250DPS) {
- devp->gyrofullscale = L3GD20_250DPS;
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- if (devp->config->gyrosensitivity == NULL)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_250DPS;
- else
- devp->gyrosensitivity[i] = devp->config->gyrosensitivity[i];
- }
- }
- else if(devp->config->gyrofullscale == L3GD20_FS_500DPS) {
- devp->gyrofullscale = L3GD20_500DPS;
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- if (devp->config->gyrosensitivity == NULL)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_500DPS;
- else
- devp->gyrosensitivity[i] = devp->config->gyrosensitivity[i];
- }
- }
- else if(devp->config->gyrofullscale == L3GD20_FS_2000DPS) {
- devp->gyrofullscale = L3GD20_2000DPS;
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- if (devp->config->gyrosensitivity == NULL)
- devp->gyrosensitivity[i] = L3GD20_GYRO_SENS_2000DPS;
- else
- devp->gyrosensitivity[i] = devp->config->gyrosensitivity[i];
- }
- }
- else
- osalDbgAssert(FALSE, "l3gd20Start(), full scale issue");
- /* Storing bias information.*/
- if(devp->config->gyrobias != NULL) {
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++) {
- devp->gyrobias[i] = devp->config->gyrobias[i];
- }
- }
- else {
- for(i = 0; i < L3GD20_GYRO_NUMBER_OF_AXES; i++)
- devp->gyrobias[i] = L3GD20_GYRO_BIAS;
- }
-
- /* This is the Gyroscope transient recovery time.*/
- osalThreadSleepMilliseconds(10);
- devp->state = L3GD20_READY;
- }
- /**
- * @brief Deactivates the L3GD20 Complex Driver peripheral.
- *
- * @param[in] devp pointer to the @p L3GD20Driver object
- *
- * @api
- */
- void l3gd20Stop(L3GD20Driver *devp) {
- uint8_t cr1;
- osalDbgCheck(devp != NULL);
- osalDbgAssert((devp->state == L3GD20_STOP) || (devp->state == L3GD20_READY),
- "l3gd20Stop(), invalid state");
- if (devp->state == L3GD20_READY) {
- /* Disabling all axes and enabling power down mode.*/
- cr1 = 0;
-
- #if L3GD20_USE_SPI
- #if L3GD20_SHARED_SPI
- spiAcquireBus(devp->config->spip);
- spiStart(devp->config->spip,
- devp->config->spicfg);
- #endif /* L3GD20_SHARED_SPI */
- l3gd20SPIWriteRegister(devp->config->spip, L3GD20_AD_CTRL_REG1,
- 1, &cr1);
- spiStop(devp->config->spip);
-
- #if L3GD20_SHARED_SPI
- spiReleaseBus(devp->config->spip);
- #endif /* L3GD20_SHARED_SPI */
- #endif /* L3GD20_USE_SPI */
- }
- devp->state = L3GD20_STOP;
- }
- /** @} */
|