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:40:46 -0400 |
commit | 4b967b67892337dd3886921088c440dfb4842e31 (patch) | |
tree | 76e34a988ef8c5881f2ef441aee886f1f273f555 | |
parent | 063274ba192260f69772d792de1832c402a8485d (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-pcm052-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, |