Mbed Cloud Connect for Ethernet Platforms

Fork of example-Ethernet-mbed-Cloud-connect by ST

Files at this revision

API Documentation at this revision

Comitter:
davwal04@E108444.Emea.Arm.com
Date:
Mon May 14 10:37:14 2018 +0100
Branch:
update-1.3.0
Parent:
7:b52a8d71c26e
Child:
9:0749f33e2c04
Commit message:
Fixed variable name.

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sat May 12 10:53:42 2018 +0100
+++ b/main.cpp	Mon May 14 10:37:14 2018 +0100
@@ -28,7 +28,7 @@
 
 // Storage implementation definition, currently using SDBlockDevice (SPI flash, DataFlash, and internal flash are also available)
 SDBlockDevice bd(MBED_CONF_APP_SPI_MOSI, MBED_CONF_APP_SPI_MISO, MBED_CONF_APP_SPI_CLK, MBED_CONF_APP_SPI_CS);
-FATFileSystem fs("sd", &sd);
+FATFileSystem fs("sd", &bd);
 
 // Declaring pointers for access to Mbed Cloud Client resources outside of main()
 MbedCloudClientResource *button_res;