Reputation: 11
I am using a PIC18F25K80 microporcessor and i want to store data into a SD card. Which libraries should I to implement data transfer between the PIC and SD card. I am not sure if I can use the MLA library for file I/O.
Upvotes: 0
Views: 121
Reputation: 1598
you need to use SPI Communication to communicate with SD card. There is one hardware SPI module available with PIC18F25K80
micro-controller. You don't need to depend upon MLA
. You can create your own SPI driver, but you just need to understands basics for SPI communication
. This link will surely help you to understand guidelines for interfacing PIC
with SD Card
Upvotes: 1