diff options
author | Ed Nash <enash54@gmail.com> | 2013-05-08 11:10:19 -0400 |
---|---|---|
committer | Anthony Felice <tony.felice@timesys.com> | 2013-05-10 17:37:09 -0400 |
commit | 2c4ead2dd6da019f5052a69b12c8f5b6b71f8dca (patch) | |
tree | 1ba974b3c63c587d4aa9f108483375677f059a07 | |
parent | c4802ad3f3a00ac8f01ad84b84711c942b60cba0 (diff) |
Don't reassign pads PTB6 and PTB7. They are used for uart-2 which is the default console (i.e. printf) for MQX as of the beta-3 release.3.0-vybrid-ts2.4
-rw-r--r-- | arch/arm/mach-mvf/board-twr-vf700.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/arm/mach-mvf/board-twr-vf700.c b/arch/arm/mach-mvf/board-twr-vf700.c index 01fd4dc364cc..fe409af32c7e 100644 --- a/arch/arm/mach-mvf/board-twr-vf700.c +++ b/arch/arm/mach-mvf/board-twr-vf700.c @@ -196,11 +196,15 @@ static iomux_v3_cfg_t mvf600_pads[] = { MVF600_PAD24_PTB2_FTM0CH2, MVF600_PAD25_PTB3_FTM0CH3, - MVF600_PAD28_PTB6_FTM0CH6, - MVF600_PAD29_PTB7_FTM0CH7, + /* + * PTB6 & PTB7 are commented out as they conflict with uart2 + * which is the MQX default console (e.g for printf) + */ + /* MVF600_PAD28_PTB6_FTM0CH6, */ + /* MVF600_PAD29_PTB7_FTM0CH7, */ + /*MVF600_PAD30_PTB8_FTM1CH0,*/ MVF600_PAD31_PTB9_FTM1CH1, - /* Touch Screen */ MVF600_PAD21_PTA31_TS_IRQ, |