diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-03 13:06:37 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2015-05-03 13:06:37 +0000 |
commit | f713242debeb447884d17657c0e26751dc1d84e8 (patch) | |
tree | b44d4ecd4f0dca687e2ef8eb809580cc1426a8ac /testhal | |
parent | f180c606d8485911240ba5441cbd1ca5a9a5d56a (diff) | |
download | ChibiOS-f713242debeb447884d17657c0e26751dc1d84e8.tar.gz ChibiOS-f713242debeb447884d17657c0e26751dc1d84e8.tar.bz2 ChibiOS-f713242debeb447884d17657c0e26751dc1d84e8.zip |
Renamed some DAC identifiers for consistency.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@7947 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'testhal')
-rw-r--r-- | testhal/STM32/STM32F4xx/DAC/mcuconf.h | 12 | ||||
-rw-r--r-- | testhal/STM32/STM32F4xx/DAC_DUAL/mcuconf.h | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/testhal/STM32/STM32F4xx/DAC/mcuconf.h b/testhal/STM32/STM32F4xx/DAC/mcuconf.h index a6bc10980..9fc39d4f8 100644 --- a/testhal/STM32/STM32F4xx/DAC/mcuconf.h +++ b/testhal/STM32/STM32F4xx/DAC/mcuconf.h @@ -96,12 +96,12 @@ #define STM32_DAC_DUAL_MODE FALSE
#define STM32_DAC_USE_DAC1_CH1 TRUE
#define STM32_DAC_USE_DAC1_CH2 TRUE
-#define STM32_DAC1_CH1_IRQ_PRIORITY 10
-#define STM32_DAC1_CH2_IRQ_PRIORITY 10
-#define STM32_DAC1_CH1_DMA_PRIORITY 2
-#define STM32_DAC1_CH2_DMA_PRIORITY 2
-#define STM32_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
-#define STM32_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
+#define STM32_DAC_DAC1_CH1_IRQ_PRIORITY 10
+#define STM32_DAC_DAC1_CH2_IRQ_PRIORITY 10
+#define STM32_DAC_DAC1_CH1_DMA_PRIORITY 2
+#define STM32_DAC_DAC1_CH2_DMA_PRIORITY 2
+#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
+#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
/*
* EXT driver system settings.
diff --git a/testhal/STM32/STM32F4xx/DAC_DUAL/mcuconf.h b/testhal/STM32/STM32F4xx/DAC_DUAL/mcuconf.h index d16ac4194..a7f177b36 100644 --- a/testhal/STM32/STM32F4xx/DAC_DUAL/mcuconf.h +++ b/testhal/STM32/STM32F4xx/DAC_DUAL/mcuconf.h @@ -96,12 +96,12 @@ #define STM32_DAC_DUAL_MODE TRUE
#define STM32_DAC_USE_DAC1_CH1 TRUE
#define STM32_DAC_USE_DAC1_CH2 FALSE
-#define STM32_DAC1_CH1_IRQ_PRIORITY 10
-#define STM32_DAC1_CH2_IRQ_PRIORITY 10
-#define STM32_DAC1_CH1_DMA_PRIORITY 2
-#define STM32_DAC1_CH2_DMA_PRIORITY 2
-#define STM32_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
-#define STM32_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
+#define STM32_DAC_DAC1_CH1_IRQ_PRIORITY 10
+#define STM32_DAC_DAC1_CH2_IRQ_PRIORITY 10
+#define STM32_DAC_DAC1_CH1_DMA_PRIORITY 2
+#define STM32_DAC_DAC1_CH2_DMA_PRIORITY 2
+#define STM32_DAC_DAC1_CH1_DMA_STREAM STM32_DMA_STREAM_ID(1, 5)
+#define STM32_DAC_DAC1_CH2_DMA_STREAM STM32_DMA_STREAM_ID(1, 6)
/*
* EXT driver system settings.
|