I am having trouble getting an external serial GPS device (GY-GPS6MV2) to communicate with my CC3200.
I have this pin mapping set-up and I have connected pin 3 on the CC3200 to the TX pin of the GPS device.
I have uploaded code that should make a test light turn off if it is receiving data, but the light remains on unless I type into the serial monitor.
#define LED RED_LED
void setup() {
pinMode(3, INPUT);
pinMode(4, OUTPUT);
Serial.begin(9600);
pinMode(LED, OUTPUT);
Serial.println("GPS Module");
}
void loop() {
if (Serial.available()) {
digitalWrite(LED, LOW);