Eagle sd card Example
From Manuals
(Difference between revisions)
(Created page with '__TOC__ =microSD card using FAT file system (sd_card)= ==Compatibility [http://www.micromint.com/index.php/SBC/eagle-50.html Eagle50], [http://www.micromint.com/index.php/SBC/eag…') |
|||
| (4 intermediate revisions not shown) | |||
| Line 1: | Line 1: | ||
| - | |||
=microSD card using FAT file system (sd_card)= | =microSD card using FAT file system (sd_card)= | ||
| - | ==Compatibility [http://www.micromint.com/index.php/SBC/eagle-50.html | + | ==Compatibility [http://www.micromint.com/index.php/SBC/eagle-50.html Eagle 50], [http://www.micromint.com/index.php/SBC/eagle-50.html 50E], [http://www.micromint.com/index.php/SBC/eagle-100.html 100]== |
This example application demonstrates reading a file system from an SD card. It makes use of FatFs, a FAT file system driver. It provides a simple command console via a serial port for issuing commands to view and navigate the file system on the SD card. | This example application demonstrates reading a file system from an SD card. It makes use of FatFs, a FAT file system driver. It provides a simple command console via a serial port for issuing commands to view and navigate the file system on the SD card. | ||
| + | The first UART, which is connected to the COM1 on the Eagle microcontroller board, is configured for 115,200 bits per second, and 8-n-1 mode. When the program is started a message will be printed to the terminal. Type “help” for command help. | ||
| + | [[Image:Eagle_sd_card.gif|center|]] | ||
| - | |||
| - | |||
==References:== | ==References:== | ||
| - | |||
| - | |||
For additional details about FatFs, see the following site: | For additional details about FatFs, see the following site: | ||
| - | |||
| - | |||
http://elm-chan.org/fsw/ff/00index_e.html | http://elm-chan.org/fsw/ff/00index_e.html | ||
Current revision as of 14:56, 11 March 2011
microSD card using FAT file system (sd_card)
Compatibility Eagle 50, 50E, 100
This example application demonstrates reading a file system from an SD card. It makes use of FatFs, a FAT file system driver. It provides a simple command console via a serial port for issuing commands to view and navigate the file system on the SD card.
The first UART, which is connected to the COM1 on the Eagle microcontroller board, is configured for 115,200 bits per second, and 8-n-1 mode. When the program is started a message will be printed to the terminal. Type “help” for command help.
References:
For additional details about FatFs, see the following site:

