diff options
author | edolomb <none@example.com> | 2018-04-11 16:48:35 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2018-04-11 16:48:35 +0000 |
commit | 6fc6f50af73499b9d375bb39287d58c83a57b379 (patch) | |
tree | 94b0ed4342f7850d83946a914409f4aae6af8cbd | |
parent | 9877090f8b1a5730d2ecb78b6c3486a32ef1a089 (diff) | |
download | ChibiOS-6fc6f50af73499b9d375bb39287d58c83a57b379.tar.gz ChibiOS-6fc6f50af73499b9d375bb39287d58c83a57b379.tar.bz2 ChibiOS-6fc6f50af73499b9d375bb39287d58c83a57b379.zip |
Updated demo project and chconf.h
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11895 110e8d01-0319-4d1e-a829-52ad28d1bb01
-rw-r--r-- | testhal/ATSAMA5D2/CRYPTO/.project | 6 | ||||
-rw-r--r-- | testhal/ATSAMA5D2/CRYPTO/chconf.h | 3 |
2 files changed, 2 insertions, 7 deletions
diff --git a/testhal/ATSAMA5D2/CRYPTO/.project b/testhal/ATSAMA5D2/CRYPTO/.project index a91ef1674..e20edfd7d 100644 --- a/testhal/ATSAMA5D2/CRYPTO/.project +++ b/testhal/ATSAMA5D2/CRYPTO/.project @@ -92,10 +92,4 @@ <locationURI>CHIBIOS/os</locationURI> </link> </linkedResources> - <variableList> - <variable> - <name>CHIBIOS</name> - <value>file:/C:/ChibiStudio/chibios_trunk</value> - </variable> - </variableList> </projectDescription> diff --git a/testhal/ATSAMA5D2/CRYPTO/chconf.h b/testhal/ATSAMA5D2/CRYPTO/chconf.h index 0c9477e7a..a8150cd31 100644 --- a/testhal/ATSAMA5D2/CRYPTO/chconf.h +++ b/testhal/ATSAMA5D2/CRYPTO/chconf.h @@ -49,7 +49,8 @@ * @details Frequency of the system timer that drives the system ticks. This
* setting also defines the system tick time unit.
*/
-#define CH_CFG_ST_FREQUENCY 1000
+#define CH_CFG_ST_FREQUENCY 1000 /* periodic tick. */
+//#define CH_CFG_ST_FREQUENCY (83000000 / 32) /* tick-less. */
/**
* @brief Time intervals data size.
|