diff options
author | edolomb <none@example.com> | 2018-09-06 11:32:37 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2018-09-06 11:32:37 +0000 |
commit | 7fdf849e4ee0764fbeb8acd9df92b5e432c79424 (patch) | |
tree | 63b7b99ceffdd97ecf9ecbf1ea1bd3e112bce221 /os/hal/ports/SAMA | |
parent | ed50615d58ad755e7288cd444d2326432ca2ab2a (diff) | |
download | ChibiOS-7fdf849e4ee0764fbeb8acd9df92b5e432c79424.tar.gz ChibiOS-7fdf849e4ee0764fbeb8acd9df92b5e432c79424.tar.bz2 ChibiOS-7fdf849e4ee0764fbeb8acd9df92b5e432c79424.zip |
Fixed bugs
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12238 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/ports/SAMA')
-rw-r--r-- | os/hal/ports/SAMA/SAMA5D2x/sama_trng.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/os/hal/ports/SAMA/SAMA5D2x/sama_trng.h b/os/hal/ports/SAMA/SAMA5D2x/sama_trng.h index 4eed31160..ba9ab34a9 100644 --- a/os/hal/ports/SAMA/SAMA5D2x/sama_trng.h +++ b/os/hal/ports/SAMA/SAMA5D2x/sama_trng.h @@ -25,6 +25,13 @@ #ifndef SAMA_TRNG_LLD_H
#define SAMA_TRNG_LLD_H
+/**
+ * @brief Using the TRNG driver.
+ */
+#if !defined(HAL_USE_TRNG) || defined(__DOXYGEN__)
+#define HAL_USE_TRNG FALSE
+#endif
+
#if (HAL_USE_TRNG) || defined(__DOXYGEN__)
/*===========================================================================*/
|