11 years, 4 months ago.

when i merge the two libraries (sdcard and vga) it gives error?

i want to interface a sd card and vga on a same mbed. both libraries for sd and vga are working separately. but when i merge them hen it gives error like missing files mbed debug .

1 Answer

11 years, 4 months ago.

Update all libraries, including the main mbed library. If you click on a library at the right side you get an update button. (if there is a newer version)

Btw in this case I happen to have read about this error before. But generally it will be pretty much impossible to help you with your problem if you don't give more information about which libraries you use, with which code.

#include "mbed.h"
#include "USBMSD_SD.h"
#include "vga640x480g.h"
 
USBMSD_SD sd(p5, p6, p7, p8);
 
int main() {
    while(1);
}
posted by Noman Malik 15 Dec 2012