diff options
Diffstat (limited to 'os/rt/include/ch.h')
-rw-r--r-- | os/rt/include/ch.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/os/rt/include/ch.h b/os/rt/include/ch.h index eb35eb944..73faa8481 100644 --- a/os/rt/include/ch.h +++ b/os/rt/include/ch.h @@ -48,17 +48,17 @@ /**
* @brief Kernel version string.
*/
-#define CH_KERNEL_VERSION "3.2.0"
+#define CH_KERNEL_VERSION "4.0.0"
/**
* @brief Kernel version major number.
*/
-#define CH_KERNEL_MAJOR 3
+#define CH_KERNEL_MAJOR 4
/**
* @brief Kernel version minor number.
*/
-#define CH_KERNEL_MINOR 2
+#define CH_KERNEL_MINOR 0
/**
* @brief Kernel version patch number.
@@ -69,8 +69,14 @@ /* Core headers.*/
#include "chtypes.h"
#include "chconf.h"
+
+#if !defined(_CHIBIOS_RT_CONF_)
+#error "invalid configuration file"
+#endif
+
#include "chlicense.h"
#include "chsystypes.h"
+#include "chalign.h"
#include "chcore.h"
#include "chdebug.h"
#include "chtm.h"
@@ -92,10 +98,13 @@ #include "chmemcore.h"
#include "chheap.h"
#include "chmempools.h"
-#include "chdynamic.h"
#include "chqueues.h"
#include "chstreams.h"
+#if !defined(_CHIBIOS_RT_CONF_)
+#error "missing or wrong configuration file"
+#endif
+
#endif /* _CH_H_ */
/** @} */
|