i reformatted the card as FAT32. i loaded a webserver sketch onto the board and it worked fine. but i've tried many sketches for microSD interface and gotten nowhere.
i simplified the code down to this:
Code: Untitled.c Select all
#include "SD.h"
void setup()
Serial.begin(9600);
if(!SD.begin()) Serial.println("Card Mount Failed");
else Serial.println("success");
}
void loop() {}