Hi TI Guys,
Please fix this bug in data sheet. In user manual data sheet for cc2540/41 (Revised April 2014) on page 81 it state that UART1 is on alternate location 1 which is P0 and pin 4 tx and pin 5 Rx, according to datasheet physical pin locations are ok but software configurations are not ok.
If I want to use UART1 at alternate location 1, according to datasheet register configuration for UART1 at Alternate location 1 should be:
PERCFG &= ~0x02; /* Configure UART1 for alternative 1 */
P0SEL |= 0x30; /* Configure Port P0 pins for UART Peripheral function */
but this configuration is only working for Tx, and Rx no working. And I spent couple of days to figure out why Rx no responsive. i also posted here but did not find good response fro TI.

The interesting thing is when I changed above config to below configuration:
PERCFG |= 0x01;
P0SEL |= 0x30;
but according datasheet this configuration is for Alternative2 (P1) and UART1. but this configuration is working on Alternative1 (P0) UART1. So there is error in datasheet for configurations of UART1.
I hope this information will also help others.
Please ugrade the datasheet to avoid confusion to others also.
regards,
Sattar Malokani