Hi
the problem is to get a picture flashed on the CC3200 to show up in the web browser.
In Arduino when including the library SD.h, gives the possibility to generate a file handle, for example
File webFile;
then using the handle to open a web page file
webFile = SD.open("index.htm");
finally web page is sent to client if (webFile) { while(webFile.available()) { client.write(webFile.read()); } webFile.close(); }
Any idea how to accomplish this in Energia?
If have researched into use of SLFS but can not find any so