ok here is more info, sorry very new at this, so in over my head.
ARduino uno r3
drrobot xbee shield v1.4
roving networks rn-xv
Looks like it is getting stuck on wifly.begin(); for some reason.
below is my sketch (ok... not a map)
#include <SPI.h>
#include <WiFly.h>
#include "Credentials.h"
void setup() {
Serial.begin(9600);
Serial.println("\n\r\n\rWiFly Shield Terminal Routine");
WiFly.begin();
if (!WiFly.join(ssid, passphrase)) {
Serial.println("Association failed.");
while (1) {
}
}
Serial.println("Associated!");
}
void loop() {
// Terminal routine
// Always display a response uninterrupted by typing
// but note that this makes the terminal unresponsive
// while a response is being received.
while(SpiSerial.available() > 0) {
Serial.write(SpiSerial.read());
}
if(Serial.available()) { // Outgoing data
SpiSerial.write(Serial.read());
}
}