Example program demonstrates SD card library

Dependencies:   SDFileSystem USBDevice max32630fthr

Fork of FTHR_SD_Demo by Greg Steiert

This example program writes "Hello World!" into a file named "myfile.txt" on the card inserted into the microSD card connector.

Revision:
3:247c750f9f3d
Parent:
1:90313362ec11
Child:
4:bafcac667ef6
--- a/main.cpp	Wed Nov 16 01:04:04 2016 +0000
+++ b/main.cpp	Sun Nov 20 23:57:26 2016 +0000
@@ -2,6 +2,8 @@
 #include "max32630fthr.h"
 #include "SDFileSystem.h"
 
+MAX32630FTHR pegasus(MAX32630FTHR::VIO_3V3);
+
 DigitalOut rLED(LED1);
 DigitalOut gLED(LED2);
 
@@ -14,11 +16,7 @@
     gLED = LED_OFF;
     rLED = LED_ON;
     
-    max32630fthrInit();
-    vddioh(P0_4, TRUE);
-    vddioh(P0_5, TRUE);
-    vddioh(P0_6, TRUE);
-    vddioh(P0_7, TRUE);
+    pegasus.init();
     gLED = LED_ON;
 
     FILE *fp = fopen("/sd/myfile.txt", "w");