ok black antenna MUST be up

Dependencies:   mbed

Fork of Wifly_configure by Samuel Mokrani

main.cpp

Committer:
avnisha
Date:
2013-11-15
Revision:
2:012b53613270
Parent:
1:20eea0789016

File content as of revision 2:012b53613270:

#include "mbed.h"

Serial pc(USBTX, USBRX);
//Serial wifi(p9,p10);          // app board
Serial wifi(p28,p27);            // Polulu


int main() {
    
    pc.printf("Test Polulu ifly!\r\n");

    while (1) 
    {
        while(pc.readable())
            wifi.putc(pc.getc());
        while(wifi.readable())
            pc.putc(wifi.getc());
    }
}