Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Wifly_configure by
main.cpp
00001 #include "mbed.h" 00002 00003 Serial pc(USBTX, USBRX); 00004 //Serial wifi(p9,p10); // app board 00005 Serial wifi(p28,p27); // Polulu 00006 00007 00008 int main() { 00009 00010 pc.printf("Test Polulu ifly!\r\n"); 00011 00012 while (1) 00013 { 00014 while(pc.readable()) 00015 wifi.putc(pc.getc()); 00016 while(wifi.readable()) 00017 pc.putc(wifi.getc()); 00018 } 00019 }
Generated on Tue Jul 12 2022 18:49:54 by
1.7.2
