diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-07-01 15:22:02 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-07-01 15:22:02 +0000 |
commit | 0cb899ded255d916a3b1cef880c22cf0b87134ea (patch) | |
tree | 3d1a81139025298743279aab5fd930aea6732e0d /os | |
parent | fb3c3f45c7a22fe7dcf42a91de4f34ec0c8a1af5 (diff) | |
download | ChibiOS-0cb899ded255d916a3b1cef880c22cf0b87134ea.tar.gz ChibiOS-0cb899ded255d916a3b1cef880c22cf0b87134ea.tar.bz2 ChibiOS-0cb899ded255d916a3b1cef880c22cf0b87134ea.zip |
Fixed bug #848.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10269 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/rt/include/chchecks.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/os/rt/include/chchecks.h b/os/rt/include/chchecks.h index a4c02c510..a7d1fb34f 100644 --- a/os/rt/include/chchecks.h +++ b/os/rt/include/chchecks.h @@ -20,9 +20,6 @@ /**
* @file chchecks.h
* @brief Configuration checks macros and structures.
- *
- * @addtogroup checks
- * @{
*/
#ifndef CHCHECKS_H
@@ -46,7 +43,7 @@ #if (CH_LICENSE_FEATURES != CH_FEATURES_FULL) && \
(CH_LICENSE_FEATURES != CH_FEATURES_INTERMEDIATE) && \
- (CH_LICENSE_FEATURES == CH_FEATURES_BASIC)
+ (CH_LICENSE_FEATURES != CH_FEATURES_BASIC)
#error "invalid CH_LICENSE_FEATURES setting"
#endif
@@ -107,5 +104,3 @@ /*===========================================================================*/
#endif /* CHCHECKS_H */
-
-/** @} */
|