diff options
author | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-04-28 23:41:47 +0000 |
---|---|---|
committer | Rocco Marco Guglielmi <roccomarco.guglielmi@live.com> | 2016-04-28 23:41:47 +0000 |
commit | 618b73dfd8058223ba5c096fbe93080019c62cf9 (patch) | |
tree | edbc0e3d5f971da6a52c0b076e0cc5da765af238 /os/ex/ST | |
parent | 0dcfeb1366d00575f247401bd3a11c9f122888c4 (diff) | |
download | ChibiOS-618b73dfd8058223ba5c096fbe93080019c62cf9.tar.gz ChibiOS-618b73dfd8058223ba5c096fbe93080019c62cf9.tar.bz2 ChibiOS-618b73dfd8058223ba5c096fbe93080019c62cf9.zip |
Minor spell and indent fixes
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@9374 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ex/ST')
-rw-r--r-- | os/ex/ST/l3gd20.h | 2 | ||||
-rw-r--r-- | os/ex/ST/lsm6ds0.h | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/os/ex/ST/l3gd20.h b/os/ex/ST/l3gd20.h index 98e41cfbc..d3eb7121f 100644 --- a/os/ex/ST/l3gd20.h +++ b/os/ex/ST/l3gd20.h @@ -168,7 +168,7 @@ typedef enum { * @brief L3GD20 block data update */ 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_t; diff --git a/os/ex/ST/lsm6ds0.h b/os/ex/ST/lsm6ds0.h index 2315fd53b..47b46dfcb 100644 --- a/os/ex/ST/lsm6ds0.h +++ b/os/ex/ST/lsm6ds0.h @@ -1,16 +1,21 @@ /* ChibiOS - Copyright (C) 2016 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/>. + */ /** @@ -413,7 +418,7 @@ typedef enum { * @brief LSM6DS0 block data update */ 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_t; |