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

************Please help~SD Card @ LPC2368*****************

Hi,
I'm trying to communicate with a SD card on SD bus.
now,I read manual LPC23xx in chapter SD/MMC card and Data sheet sandisk SD card.is it enough?
Have you got any suggestion to me(or for read)?
Have you got any simple piece of software that configure the card.
I don't know what to do first?
Thank you...

popo+

Parents
  • A normal SPI interface has one data line, one MOSI (Master Out Slave In) and one MISO (Master In Slave Out). So each clock transition will transfer a single bit from the memory card to the processor and the reverse.

    The SD memories has a mode where they can use four data lines, transmitting a nibble at a time. This is obviously four times faster for a given clock frequency, but will require that you either implement the bit transfers in software, or select a processor with specific support for SD cards.

    Your specific processor can run four bits concurrently.

Reply
  • A normal SPI interface has one data line, one MOSI (Master Out Slave In) and one MISO (Master In Slave Out). So each clock transition will transfer a single bit from the memory card to the processor and the reverse.

    The SD memories has a mode where they can use four data lines, transmitting a nibble at a time. This is obviously four times faster for a given clock frequency, but will require that you either implement the bit transfers in software, or select a processor with specific support for SD cards.

    Your specific processor can run four bits concurrently.

Children