aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-17 17:53:57 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-09-17 17:53:57 +0000
commit278fc39f993660a8d7ebf4df4a89f6beb10c7f7b (patch)
tree6884853985e1a3c90e95c6361fe1704b118071df /os
parentbaabff16e61179d497fe986d63e325e83272d4ed (diff)
downloadChibiOS-278fc39f993660a8d7ebf4df4a89f6beb10c7f7b.tar.gz
ChibiOS-278fc39f993660a8d7ebf4df4a89f6beb10c7f7b.tar.bz2
ChibiOS-278fc39f993660a8d7ebf4df4a89f6beb10c7f7b.zip
UART driver tested with STM32L.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3330 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r--os/hal/platforms/STM32/GPIOv2/pal_lld.h40
1 files changed, 2 insertions, 38 deletions
diff --git a/os/hal/platforms/STM32/GPIOv2/pal_lld.h b/os/hal/platforms/STM32/GPIOv2/pal_lld.h
index 4c82141e3..6c799c14c 100644
--- a/os/hal/platforms/STM32/GPIOv2/pal_lld.h
+++ b/os/hal/platforms/STM32/GPIOv2/pal_lld.h
@@ -96,32 +96,6 @@
PAL_STM32_PUDR_PULLDOWN)
/**
- * @brief Alternate input high-Z pad.
- *
- * @param[in] n alternate function selector
- */
-#define PAL_MODE_ALT_INPUT(n) (PAL_STM32_MODE_INPUT | \
- PAL_STM32_ALTERNATE(n))
-
-/**
- * @brief Alternate input pad with weak pull up resistor.
- *
- * @param[in] n alternate function selector
- */
-#define PAL_MODE_ALT_INPUT_PULLUP(n) (PAL_STM32_MODE_INPUT | \
- PAL_STM32_PUDR_PULLUP | \
- PAL_STM32_ALTERNATE(n))
-
-/**
- * @brief Alternate input pad with weak pull down resistor.
- *
- * @param[in] n alternate function selector
- */
-#define PAL_MODE_ALT_INPUT_PULLDOWN(n) (PAL_STM32_MODE_INPUT | \
- PAL_STM32_PUDR_PULLDOWN | \
- PAL_STM32_ALTERNATE(n))
-
-/**
* @brief Analog input mode.
*/
#define PAL_MODE_INPUT_ANALOG PAL_STM32_MODE_ANALOG
@@ -139,21 +113,11 @@
PAL_STM32_OTYPE_OPENDRAIN)
/**
- * @brief Alternate push-pull output.
- *
- * @param[in] n alternate function selector
- */
-#define PAL_MODE_ALT_OUTPUT_PUSHPULL(n) (PAL_STM32_MODE_ALTERNATE | \
- PAL_STM32_OTYPE_PUSHPULL | \
- PAL_STM32_ALTERNATE(n))
-
-/**
- * @brief Alternate push-pull output.
+ * @brief Alternate function.
*
* @param[in] n alternate function selector
*/
-#define PAL_MODE_ALT_OUTPUT_OPENDRAIN(n) (PAL_STM32_MODE_ALTERNATE | \
- PAL_STM32_OTYPE_OPENDRAIN | \
+#define PAL_MODE_ALTERNATE(n) (PAL_STM32_MODE_ALTERNATE | \
PAL_STM32_ALTERNATE(n))
/*===========================================================================*/