Minor spell and indent fixes

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9374 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Rocco Marco Guglielmi 2016-04-28 23:41:47 +00:00
parent 0dcfeb1366
commit 618b73dfd8
2 changed files with 7 additions and 2 deletions

View File

@ -168,7 +168,7 @@ typedef enum {
* @brief L3GD20 block data update * @brief L3GD20 block data update
*/ */
typedef enum { typedef enum {
L3GD20_BDU_CONTINOUS = 0x00, /**< Block data continuously updated. */ L3GD20_BDU_CONTINUOUS = 0x00, /**< Block data continuously updated. */
L3GD20_BDU_BLOCKED = 0x80 /**< Block data updated after reading. */ L3GD20_BDU_BLOCKED = 0x80 /**< Block data updated after reading. */
}l3gd20_bdu_t; }l3gd20_bdu_t;

View File

@ -1,16 +1,21 @@
/* /*
ChibiOS - Copyright (C) 2016 Rocco Marco Guglielmi ChibiOS - Copyright (C) 2016 Rocco Marco Guglielmi
This file is part of ChibiOS. This file is part of ChibiOS.
ChibiOS is free software; you can redistribute it and/or modify ChibiOS is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or the Free Software Foundation; either version 3 of the License, or
(at your option) any later version. (at your option) any later version.
ChibiOS is distributed in the hope that it will be useful, ChibiOS is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details. GNU General Public License for more details.
You should have received a copy of the GNU General Public License You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
/** /**
@ -413,7 +418,7 @@ typedef enum {
* @brief LSM6DS0 block data update * @brief LSM6DS0 block data update
*/ */
typedef enum { typedef enum {
LSM6DS0_BDU_CONTINOUS = 0x00, /**< Block data continuously updated. */ LSM6DS0_BDU_CONTINUOUS = 0x00, /**< Block data continuously updated. */
LSM6DS0_BDU_BLOCKED = 0x40 /**< Block data updated after reading. */ LSM6DS0_BDU_BLOCKED = 0x40 /**< Block data updated after reading. */
} lsm6ds0_bdu_t; } lsm6ds0_bdu_t;