diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-06-12 08:35:55 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-06-12 08:35:55 +0000 |
commit | f08f9497530e3cd82b17260638867cf5e354a742 (patch) | |
tree | 357c10a1f82a7d6ea8e6611631700509970bf158 | |
parent | 453458c94a83ec5e2931c1c0e40f6bae3782e18e (diff) | |
download | ChibiOS-f08f9497530e3cd82b17260638867cf5e354a742.tar.gz ChibiOS-f08f9497530e3cd82b17260638867cf5e354a742.tar.bz2 ChibiOS-f08f9497530e3cd82b17260638867cf5e354a742.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5837 35acf78f-673a-0410-8e92-d51de3d6d3f4
-rw-r--r-- | os/hal/platforms/SPC5xx/SIUL_v1/pal_lld.h | 4 | ||||
-rw-r--r-- | os/hal/platforms/SPC5xx/SIU_v1/pal_lld.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/os/hal/platforms/SPC5xx/SIUL_v1/pal_lld.h b/os/hal/platforms/SPC5xx/SIUL_v1/pal_lld.h index 9460d093a..dac37c448 100644 --- a/os/hal/platforms/SPC5xx/SIUL_v1/pal_lld.h +++ b/os/hal/platforms/SPC5xx/SIUL_v1/pal_lld.h @@ -78,13 +78,13 @@ /**
* @brief Input pad with weak pull up resistor.
*/
-#define PAL_MODE_INPUT_PULLUP (PAL_SPC5_IBE |PAL_SPC5_WPE | \
+#define PAL_MODE_INPUT_PULLUP (PAL_SPC5_IBE | PAL_SPC5_WPE | \
PAL_SPC5_WPS)
/**
* @brief Input pad with weak pull down resistor.
*/
-#define PAL_MODE_INPUT_PULLDOWN (PAL_SPC5_IBE |PAL_SPC5_WPE)
+#define PAL_MODE_INPUT_PULLDOWN (PAL_SPC5_IBE | PAL_SPC5_WPE)
/**
* @brief Analog input mode.
diff --git a/os/hal/platforms/SPC5xx/SIU_v1/pal_lld.h b/os/hal/platforms/SPC5xx/SIU_v1/pal_lld.h index ef35082fe..f8648b305 100644 --- a/os/hal/platforms/SPC5xx/SIU_v1/pal_lld.h +++ b/os/hal/platforms/SPC5xx/SIU_v1/pal_lld.h @@ -80,13 +80,13 @@ /**
* @brief Input pad with weak pull up resistor.
*/
-#define PAL_MODE_INPUT_PULLUP (PAL_SPC5_IBE |PAL_SPC5_WPE | \
+#define PAL_MODE_INPUT_PULLUP (PAL_SPC5_IBE | PAL_SPC5_WPE | \
PAL_SPC5_WPS)
/**
* @brief Input pad with weak pull down resistor.
*/
-#define PAL_MODE_INPUT_PULLDOWN (PAL_SPC5_IBE |PAL_SPC5_WPE)
+#define PAL_MODE_INPUT_PULLDOWN (PAL_SPC5_IBE | PAL_SPC5_WPE)
/**
* @brief Push-pull output pad.
|