diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-19 09:14:18 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-03-19 09:14:18 +0000 |
commit | 5b82050f03ec5574fce2591e24549b9f683ccd37 (patch) | |
tree | 36979b5fac5856881e1255b96709825aa5ad4946 /os/hal | |
parent | 9388b24c161f037371ac11262301d030c07feafe (diff) | |
download | ChibiOS-5b82050f03ec5574fce2591e24549b9f683ccd37.tar.gz ChibiOS-5b82050f03ec5574fce2591e24549b9f683ccd37.tar.bz2 ChibiOS-5b82050f03ec5574fce2591e24549b9f683ccd37.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5453 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h b/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h index 667f9648b..a0ded1eb4 100644 --- a/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h +++ b/os/hal/platforms/SPC5xx/EQADC_v1/adc_lld.h @@ -267,6 +267,21 @@ #define ADC_ACR_RESSEL_8BITS (2U << 6)
/** @} */
+/**
+ * @name ADC PUDCRx registers definitions
+ * @{
+ */
+#define ADC_PUDCR_NONE 0x0000
+#define ADC_PUDCR_UP_200K 0x1100
+#define ADC_PUDCR_UP_100K 0x1200
+#define ADC_PUDCR_UP_5K 0x1300
+#define ADC_PUDCR_DOWN_200K 0x2100
+#define ADC_PUDCR_DOWN_100K 0x2200
+#define ADC_PUDCR_DOWN_5K 0x2300
+#define ADC_PUDCR_UP_DOWN_200K 0x3100
+#define ADC_PUDCR_UP_DOWN_100K 0x3200
+/** @} */
+
/*===========================================================================*/
/* Driver pre-compile time settings. */
/*===========================================================================*/
@@ -424,7 +439,14 @@ * @brief Initialization value for PUDCRx registers.
*/
#if !defined(SPC5_ADC_PUDCR) || defined(__DOXYGEN__)
-#define SPC5_ADC_PUDCR {0, 0, 0, 0, 0, 0, 0, 0}
+#define SPC5_ADC_PUDCR {ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE, \
+ ADC_PUDCR_NONE}
#endif
/** @} */
|