aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/templates/halconf.h
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-03-09 09:13:53 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-03-09 09:13:53 +0000
commit53e7842505bd75038d531693928985f51e7ac980 (patch)
tree1967254e691403452bf915caa3b631cef81f63e1 /os/hal/templates/halconf.h
parentccdc24bfd1edd2bd0d8a11bec8c6c782c69dcdfd (diff)
downloadChibiOS-53e7842505bd75038d531693928985f51e7ac980.tar.gz
ChibiOS-53e7842505bd75038d531693928985f51e7ac980.tar.bz2
ChibiOS-53e7842505bd75038d531693928985f51e7ac980.zip
Fixed some crypto-related errors.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11658 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/templates/halconf.h')
-rw-r--r--os/hal/templates/halconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/templates/halconf.h b/os/hal/templates/halconf.h
index 3080c14e8..84f39392c 100644
--- a/os/hal/templates/halconf.h
+++ b/os/hal/templates/halconf.h
@@ -58,14 +58,14 @@
* @brief Enables the cryptographic subsystem.
*/
#if !defined(HAL_USE_CRY) || defined(__DOXYGEN__)
-#define HAL_USE_CRY FALSE
+#define HAL_USE_CRY TRUE
#endif
/**
* @brief Enables the DAC subsystem.
*/
#if !defined(HAL_USE_DAC) || defined(__DOXYGEN__)
-#define HAL_USE_DAC FALSE
+#define HAL_USE_DAC TRUE
#endif
/**