diff options
author | edolomb <none@example.com> | 2017-10-30 09:11:51 +0000 |
---|---|---|
committer | edolomb <none@example.com> | 2017-10-30 09:11:51 +0000 |
commit | 8f6afd211bbf59d084e66cebbadefde1e59bb119 (patch) | |
tree | aa05765801a99eed8ad295b4f94a23f18cee79de /os | |
parent | 2c336630996b26bd10fb69c2a3648d4448b16b3a (diff) | |
download | ChibiOS-8f6afd211bbf59d084e66cebbadefde1e59bb119.tar.gz ChibiOS-8f6afd211bbf59d084e66cebbadefde1e59bb119.tar.bz2 ChibiOS-8f6afd211bbf59d084e66cebbadefde1e59bb119.zip |
Fixed Bug Errata Mask
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@10908 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/hal/ports/SAMA/LLD/PIOv1/hal_pal_lld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/hal/ports/SAMA/LLD/PIOv1/hal_pal_lld.h b/os/hal/ports/SAMA/LLD/PIOv1/hal_pal_lld.h index ae877c5a4..df871956a 100644 --- a/os/hal/ports/SAMA/LLD/PIOv1/hal_pal_lld.h +++ b/os/hal/ports/SAMA/LLD/PIOv1/hal_pal_lld.h @@ -44,7 +44,7 @@ * @name SAMA-specific I/O mode flags
* @{
*/
-#define PAL_SAMA_FUNC_MASK (3U << 0U)
+#define PAL_SAMA_FUNC_MASK (7U << 0U)
#define PAL_SAMA_FUNC_GPIO (0U << 0U)
#define PAL_SAMA_FUNC_PERIPH_A (1U << 0U)
#define PAL_SAMA_FUNC_PERIPH_B (2U << 0U)
|