This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Problem with SD card read/write

Hai..

Currently I am using the LPC1768 using keil uvision 4 and I am testing the example code from Keil "MCB1700_SD_File" to test SD card. While I build the code I got the below mentioned errors. Could you please tell me how to resolve the issue.

1] C:\Keil\ARM\RV31\INC\File_lib.c(45): error: #35: #error directive: all drives disabled in configuration

2} SD_File.c(518): error: #20: identifier "MMCFG" is undefined

3] SD_File.c(528): error: #165: too few arguments in function call

4] SD_File.c(541): warning: #223-D: function "mmc_read_config" declared implicitly

Thanks

Parents
  • "all drives disabled in configuration"

    So enable some, then!

    "identifier "MMCFG" is undefined"

    So define it, then!

    "too few arguments in function call"

    So supply the correct number of arguments, then!

    "function "mmc_read_config" declared implicitly"

    So declare it explicitly, then!

Reply
  • "all drives disabled in configuration"

    So enable some, then!

    "identifier "MMCFG" is undefined"

    So define it, then!

    "too few arguments in function call"

    So supply the correct number of arguments, then!

    "function "mmc_read_config" declared implicitly"

    So declare it explicitly, then!

Children