Wiflash demo program

Dependencies:   EthernetInterface mbed-rtos mbed wiflash

Fork of TCPSocket_HelloWorld by mbed official

Committer:
adhithyan15
Date:
Thu Apr 30 23:58:32 2015 +0000
Revision:
16:7735da154f2f
Parent:
11:59dcefdda506
Wiflash demo program

Who changed what in which revision?

UserRevisionLine numberNew contents of line
donatien 0:bb128f0e952f 1 #include "mbed.h"
donatien 0:bb128f0e952f 2 #include "EthernetInterface.h"
adhithyan15 16:7735da154f2f 3 #include "wiflash.h" // Include our wiflash library
adhithyan15 16:7735da154f2f 4
adhithyan15 16:7735da154f2f 5 Wiflash wf; // Pass in a reference to the Ethernet interface object to the Wiflash object
adhithyan15 16:7735da154f2f 6
donatien 0:bb128f0e952f 7
emilmont 7:65188f4a8c25 8 int main() {
adhithyan15 16:7735da154f2f 9 wf.setUp();
adhithyan15 16:7735da154f2f 10 printf("Inside main!\n");
donatien 0:bb128f0e952f 11 }