diff options
author | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-01-14 14:08:09 +0000 |
---|---|---|
committer | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-01-14 14:08:09 +0000 |
commit | 5893750163ff96f9f9d15d6d256d6e083c293c89 (patch) | |
tree | ee1642e8b2a89fbd720a741a61d0645c39774337 /testhal/AVR/PWM/mcuconf.h | |
parent | 7e6afddc6eca9e786301fdcabec496d87acd8828 (diff) | |
download | ChibiOS-5893750163ff96f9f9d15d6d256d6e083c293c89.tar.gz ChibiOS-5893750163ff96f9f9d15d6d256d6e083c293c89.tar.bz2 ChibiOS-5893750163ff96f9f9d15d6d256d6e083c293c89.zip |
Update the testhal/AVR/PWM with the new ChibiOS architecture.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10048 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/AVR/PWM/mcuconf.h')
-rw-r--r-- | testhal/AVR/PWM/mcuconf.h | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/testhal/AVR/PWM/mcuconf.h b/testhal/AVR/PWM/mcuconf.h index 638edd0d4..6412bdf92 100644 --- a/testhal/AVR/PWM/mcuconf.h +++ b/testhal/AVR/PWM/mcuconf.h @@ -31,6 +31,16 @@ #define AVR_ADC_USE_ADC1 FALSE
/*
+ * EXT drivers system settings.
+ */
+#define AVR_EXT_USE_INT0 FALSE
+#define AVR_EXT_USE_INT1 FALSE
+#define AVR_EXT_USE_INT2 FALSE
+#define AVR_EXT_USE_INT3 FALSE
+#define AVR_EXT_USE_INT4 FALSE
+#define AVR_EXT_USE_INT5 FALSE
+
+/*
* CAN driver system settings.
*/
@@ -41,9 +51,9 @@ /*
* PWM driver system settings.
*/
-#define AVR_PWM_USE_TIM1 TRUE
-#define AVR_PWM_USE_TIM2 TRUE
-#define AVR_PWM_USE_TIM3 FALSE
+#define AVR_PWM_USE_TIM1 FALSE
+#define AVR_PWM_USE_TIM2 FALSE
+#define AVR_PWM_USE_TIM3 TRUE
#define AVR_PWM_USE_TIM4 FALSE
#define AVR_PWM_USE_TIM5 FALSE
@@ -67,7 +77,7 @@ /*
* SERIAL driver system settings.
*/
-#define AVR_SERIAL_USE_USART0 FALSE
+#define AVR_SERIAL_USE_USART0 TRUE
#define AVR_SERIAL_USE_USART1 FALSE
/*
|