diff options
author | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-01-04 15:35:42 +0000 |
---|---|---|
committer | tfateba <tfateba@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2017-01-04 15:35:42 +0000 |
commit | 44fd241085f8d5d08d0075998ff06ef5b04502e4 (patch) | |
tree | d9ae0c80a2bcd2a6eba43443ba8f14309d3845e5 /testhal/AVR/GPT/mcuconf.h | |
parent | 88fb5a300170328eed00bb9846077cbe8c90a736 (diff) | |
download | ChibiOS-44fd241085f8d5d08d0075998ff06ef5b04502e4.tar.gz ChibiOS-44fd241085f8d5d08d0075998ff06ef5b04502e4.tar.bz2 ChibiOS-44fd241085f8d5d08d0075998ff06ef5b04502e4.zip |
Update AVR testhal GPT and fixed #error invalid configuration file.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10014 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal/AVR/GPT/mcuconf.h')
-rw-r--r-- | testhal/AVR/GPT/mcuconf.h | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/testhal/AVR/GPT/mcuconf.h b/testhal/AVR/GPT/mcuconf.h index 69ec6da52..99f88382a 100644 --- a/testhal/AVR/GPT/mcuconf.h +++ b/testhal/AVR/GPT/mcuconf.h @@ -31,10 +31,24 @@ #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.
*/
/*
+ * MAC driver system settings.
+ */
+
+/*
* PWM driver system settings.
*/
#define AVR_PWM_USE_TIM1 FALSE
@@ -54,9 +68,9 @@ /*
* GPT driver system settings.
*/
-#define AVR_GPT_USE_TIM1 TRUE
+#define AVR_GPT_USE_TIM1 FALSE
#define AVR_GPT_USE_TIM2 FALSE
-#define AVR_GPT_USE_TIM3 FALSE
+#define AVR_GPT_USE_TIM3 TRUE
#define AVR_GPT_USE_TIM4 FALSE
#define AVR_GPT_USE_TIM5 FALSE
|