Hammer Uart2 Configuration

From eLinux.org
Revision as of 04:51, 16 June 2008 by Rohde (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

It seems that the default setting for the Hammer board is to use RXD2 and TXD2 as RTS and CTS for UART1, which is not available. If you want to have access to UART2 using /dev/ttySAC2 then you need to make a small modification to arch/arm/mach-s3c2410/mach-tct_hammer.c

Add the following lines to the tct_hammer_init function:

       s3c2410_gpio_cfgpin(S3C2410_GPH6, S3C2410_GPH6_TXD2);
       s3c2410_gpio_pullup(S3C2410_GPH6, 1);
       s3c2410_gpio_cfgpin(S3C2410_GPH7, S3C2410_GPH7_RXD2);
       s3c2410_gpio_pullup(S3C2410_GPH7, 1);