WiFlyHQ cant connect with any examples

Hello

I cant connect to the wireless network using the UDP example.

I get the following error;

setPrompt failed

Failed to enter command mode

Failed to start wifly

Terminal ready

from the code;

#include <SoftwareSerial.h>
SoftwareSerial wifiSerial(8,9);

//#include <AltSoftSerial.h>
//AltSoftSerial wifiSerial(8,9);

#include <WiFlyHQ.h>

/* Change these to match your WiFi network */
const char mySSID[] = "BTHub3-HKP4";
const char myPassword[] = "9d7cdbc6ce";

void terminal();

WiFly wifly;

void setup()
{
    char buf[32];

    Serial.begin(115200);
    Serial.println("Starting");
    Serial.print("Free memory: ");
    Serial.println(wifly.getFreeMemory(),DEC);

    wifiSerial.begin(9600);

    if (!wifly.begin(&wifiSerial, &Serial)) {
        Serial.println("Failed to start wifly");
	terminal();
    }

I have pin bent pins 0,1 so they dont connect to the arduino board, and have put wires to pins 8,9.

changing the code to```
if (!wifly.begin(&wifiSerial, NULL)) {


<QUOTE>

> Failed to start wifly
> 
> Terminal ready

</QUOTE>

But this error is irrespective of whether i have the wires routing to 8,9 from 0,1 and irrespective of my SoftwareSerial wifiSerial(8,9); pin values.

Any ideas?

Are you using the wireless sd shield? If so have you tried changing the position of the micro USB switch?

hi,i change the position of the swicth and don`t work