diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-31 10:07:43 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-12-31 10:07:43 +0000 |
commit | c397738010966f85c7ae841e21d74790ac49611c (patch) | |
tree | 71fc62ea0e2f86481586f51dbe55ffe691b4b363 /os/hal/platforms/LPC11xx | |
parent | 72266f8b591c6e7857f4578ba753eeea7222ac6b (diff) | |
download | ChibiOS-c397738010966f85c7ae841e21d74790ac49611c.tar.gz ChibiOS-c397738010966f85c7ae841e21d74790ac49611c.tar.bz2 ChibiOS-c397738010966f85c7ae841e21d74790ac49611c.zip |
Changes to palSetGroupMode(), various adjustments to the PAL driver.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3695 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/LPC11xx')
-rw-r--r-- | os/hal/platforms/LPC11xx/pal_lld.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/os/hal/platforms/LPC11xx/pal_lld.h b/os/hal/platforms/LPC11xx/pal_lld.h index 2e99f0697..2040e9426 100644 --- a/os/hal/platforms/LPC11xx/pal_lld.h +++ b/os/hal/platforms/LPC11xx/pal_lld.h @@ -244,12 +244,13 @@ typedef LPC_GPIO_TypeDef *ioportid_t; *
* @param[in] port port identifier
* @param[in] mask group mask
+ * @param[in] offset group bit offset within the port
* @param[in] mode group mode
*
* @notapi
*/
-#define pal_lld_setgroupmode(port, mask, mode) \
- _pal_lld_setgroupmode(port, mask, mode)
+#define pal_lld_setgroupmode(port, mask, offset, mode) \
+ _pal_lld_setgroupmode(port, mask << offset, mode)
/**
* @brief Writes a logical state on an output pad.
|