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 /testhal/STM32/STM32F1xx/RTC/chconf.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 'testhal/STM32/STM32F1xx/RTC/chconf.h')
-rw-r--r-- | testhal/STM32/STM32F1xx/RTC/chconf.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testhal/STM32/STM32F1xx/RTC/chconf.h b/testhal/STM32/STM32F1xx/RTC/chconf.h index 00b9a9a04..896829d93 100644 --- a/testhal/STM32/STM32F1xx/RTC/chconf.h +++ b/testhal/STM32/STM32F1xx/RTC/chconf.h @@ -479,6 +479,22 @@ /*===========================================================================*/ /** + * @brief System structure extension. + * @details User fields added to the end of the @p ch_system_t structure. + */ +#define CH_CFG_SYSTEM_EXTRA_FIELDS \ + /* Add threads custom fields here.*/ + +/** + * @brief System initialization hook. + * @details User initialization code added to the @p chSysInit() function + * just before interrupts are enabled globally. + */ +#define CH_CFG_SYSTEM_INIT_HOOK(tp) { \ + /* Add threads initialization code here.*/ \ +} + +/** * @brief Threads descriptor structure extension. * @details User fields added to the end of the @p thread_t structure. */ |