Other Parts Discussed in Thread: CC2591, CC2592
Tool/software: TI C/C++ Compiler
I am using cc2541+cc2591. I am using these configuration
P0SEL = 0; // Configure Port 0 as GPIO
P1SEL = 0; // Configure Port 1 as GPIO
P2SEL = 0; // Configure Port 2 as GPIO
P0DIR = 0xFF; .
P1DIR = 0x13;//00010011 13
P2DIR = 0x1F;
P0 = 0;
P1 = 0xEC;// 11101100 EC
P2 = 0;
RFC_OBS_CTRL0=0x68;
RFC_OBS_CTRL1=0x6A;
OBSSEL1=0xFB;
OBSSEL3=0xFC;
When I am setting OBSSEL1=0xFB; BLE pin P1.1 stop working. Is this(OBSSEL1=0xFB;) necessary to set to extended range.?
or how can i use P1.1 after setting this(OBSSEL1=0xFB;).