Jump to content
43oh

CC3200 LaunchPad Pins Map


Recommended Posts

 

Hi Rei,

 

while developing an application i took a look at the schematics of the CC3200 LP and noticed that many Pins are not connected to the booster pins and therefore not usable without modifying the Launchpad, or are already in use by system components:

 

P1.3 -> Switch3, Accelerometer INT (detachable from sensors by jumper)
P1.9 -> Yellow LED, SCL (detachable from sensors by jumper)
P1.10 -> Green LED, SDA (detachable from sensors by jumper)
P3.3 -> FTDI_TX
P3.5 + P3.6 are not connected by default
P3.9 -> Red LED
P4.1 - P4.8 are not connected by default
P4.9 -> JTAG_TDO, RS232_RX
P4.10 -> JTAG_TDI, RS232_TX
P2.2 -> JTAG_TCK
P2.8 -> SOP2
P2.9 -> FTDI_RX
P2.10 -> Switch 2
 
regards, Nick

 

 

Hi - I know it's been a bit since this discussion was active but hope you guys can steer me in the right direction. 

 

We want to use Energia to develop an application that will be run on bare CC3200MOD module (just released from TI - http://www.ti.com/product/CC3200MOD/description). The hardware is absolutely awesome and finally is super-easy to integrate into a product since the module just needs power and antenna to work. 

 

Is there such a thing as Energia pin map for that device somewhere. If not, how would one go about interfacing the module in Energia?

 

Thanks!

Val

Link to post
Share on other sites
  • Replies 33
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Please find the pins map of the CC3200 LaunchPad.   Edit Sept. 08, 2014

Fixed. 1 MBytes. Added comment Storage in Flash, execution in SRAM       Removed. Label from another LaunchPad!       Done, with faded colours.       Done, with faded colours. The

Well, the PIN_57 naming scheme is misleading. Use instead the pins numbers in black.   So please find an updated version of the pins map for the LaunchPad CC3200.  

Posted Images

  • 1 year later...
PIN 39 is not working with the following source:

 

#define RELAY_PIN 39

 

void setup() { 

  pinMode(RELAY_PIN, OUTPUT); // initialize the digital pin as an output. 

}

 

void loop() {

  digitalWrite(RELAY_PIN, HIGH); // turn the relay on (HIGH is the voltage level)

  delay(2000);   // wait for a second

  digitalWrite(RELAY_PIN, LOW);   // turn the relay off by making the voltage LOW

  delay(2000);   // wait for a second

}

 

In stead of a pulse signal on PIN 39 the yello led turns on and off.

 

Any sugestions?

 

Regards WIlliam

Link to post
Share on other sites

@@william67

 

Earlier in this thread there is some information from igor:

 

I will try to explain what I meant - but since I haven't studied the data sheet in full detail I am not sure of all the ramifications/limitations/etc.
Unlike some of the other faded pins (which are not connected at all), pins 39 and 40 are connected to pins on the CPU. They are just connected to pins with special functions.
The pins they are connected to are listed with the names ANTSEL1 and ANTSEL2.
They are controlled by GPIO26 and GPIO27.

There is a note saying they are "Connected to enable pin of RF switch. Other usage not recommended."
swru367a, table 16-5

I haven't dug into that, but it it may be better not to use pin 39.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...