diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-24 07:59:12 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-24 07:59:12 +0000 |
commit | d447fd6ceeda74abded59704247d259e0f710fff (patch) | |
tree | f79ba4c58ef8675980151b15698a7ee937dac612 /os/rt/include/chsys.h | |
parent | 972c282b7fc8b1458326616180d414c708ae3691 (diff) | |
download | ChibiOS-d447fd6ceeda74abded59704247d259e0f710fff.tar.gz ChibiOS-d447fd6ceeda74abded59704247d259e0f710fff.tar.bz2 ChibiOS-d447fd6ceeda74abded59704247d259e0f710fff.zip |
New hooks added to RT, stronger checks on RT chconf.h files.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11071 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt/include/chsys.h')
-rw-r--r-- | os/rt/include/chsys.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/os/rt/include/chsys.h b/os/rt/include/chsys.h index aa1bb0312..4e549db52 100644 --- a/os/rt/include/chsys.h +++ b/os/rt/include/chsys.h @@ -52,26 +52,6 @@ /* Derived constants and error checks. */
/*===========================================================================*/
-#if !defined(CH_CFG_IRQ_PROLOGUE_HOOK)
-#error "CH_CFG_IRQ_PROLOGUE_HOOK not defined in chconf.h"
-#endif
-
-#if !defined(CH_CFG_IRQ_EPILOGUE_HOOK)
-#error "CH_CFG_IRQ_EPILOGUE_HOOK not defined in chconf.h"
-#endif
-
-#if !defined(CH_CFG_CONTEXT_SWITCH_HOOK)
-#error "CH_CFG_CONTEXT_SWITCH_HOOK not defined in chconf.h"
-#endif
-
-#if !defined(CH_CFG_SYSTEM_TICK_HOOK)
-#error "CH_CFG_SYSTEM_TICK_HOOK not defined in chconf.h"
-#endif
-
-#if !defined(CH_CFG_SYSTEM_HALT_HOOK)
-#error "CH_CFG_SYSTEM_HALT_HOOK not defined in chconf.h"
-#endif
-
/*===========================================================================*/
/* Module data structures and types. */
/*===========================================================================*/
|