diff options
author | Uladzimir Pylinski <barthess@yandex.ru> | 2016-05-17 19:47:12 +0300 |
---|---|---|
committer | Uladzimir Pylinski <barthess@yandex.ru> | 2016-05-17 19:47:12 +0300 |
commit | e1311c4db6cd366cf760673f769e925741ac0ad3 (patch) | |
tree | 569b5c024381fc82d77600271d5abb695ce5d02f /os/hal/include/hal_timcap.h | |
parent | aefe1f951b166e3e6043c6126ddcb42299eae4e7 (diff) | |
parent | c6f143e357a5897480b0821c7c578ec2245ec985 (diff) | |
download | ChibiOS-Contrib-e1311c4db6cd366cf760673f769e925741ac0ad3.tar.gz ChibiOS-Contrib-e1311c4db6cd366cf760673f769e925741ac0ad3.tar.bz2 ChibiOS-Contrib-e1311c4db6cd366cf760673f769e925741ac0ad3.zip |
Merge pull request #75 from pl4nkton/hal_default_config
use config default as in chibios
Diffstat (limited to 'os/hal/include/hal_timcap.h')
-rw-r--r-- | os/hal/include/hal_timcap.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/os/hal/include/hal_timcap.h b/os/hal/include/hal_timcap.h index 9629564..bd43dd1 100644 --- a/os/hal/include/hal_timcap.h +++ b/os/hal/include/hal_timcap.h @@ -32,11 +32,7 @@ #include "ch.h" #include "hal.h" -#ifndef HAL_USE_TIMCAP -#define HAL_USE_TIMCAP FALSE -#endif - -#if HAL_USE_TIMCAP || defined(__DOXYGEN__) +#if (HAL_USE_TIMCAP == TRUE) || defined(__DOXYGEN__) /*===========================================================================*/ /* Driver constants. */ |