
这个工程主要是简单的显示SD卡的文件目录。" ]+ D {* j* K* }) N6 w! L7 C( D This project implements a simple file explorer that displays the directory structure on the SD card.The included CircleOs binary include a SDIO driver and a Fat12/16/32 implementation based on DosFS. This a demo project to show usage of the SD card. This project is aimed to be a demo project about how to use the CircleOS filesystem. It can display PRM (converted BMP, JPG, etc) images with a sample viewer. Included in this project an application to convert BMP, JPG, etc files to PRM with the functionality to scale the image to a desired resolution. Current layout of PRM image file:) Y: F U% V! u+ i% r' E% w 8byte header: - byte 0: height) ^' \% m( M5 I+ _/ P6 h# w - byte 1: width0 W. q$ d' o2 ~( q) }* @0 Z2 W. p - 6 bytes for future use - pixel data (2 bytes per pixel)0 x" w2 N8 |/ I- i+ i, m2 L FS interface functions:( j. c% f9 D# i- E# y2 u' { u32 FS_Mount(enum STORAGE_device device);! g: b" H' z( T7 c& \- U% W+ f u32 FS_Unmount(enum STORAGE_device device);+ t9 U' ]7 m# A( s4 Y u32 FS_OpenFile(PVOLINFO volinfo, u8 *path, u8 mode, PFILEINFO fileinfo); @5 w3 S. A# A( Z* J5 g' y u32 FS_ReadFile(PFILEINFO fileinfo, u8 *buffer, u32 *successcount, u32 len); u32 FS_WriteFile(PFILEINFO fileinfo, u8 *buffer, u32 *successcount, u32 len);! w4 G2 b* v0 G8 s4 J$ | u32 FS_Close(PFILEINFO fileinfo);* R2 j. I% I+ Y. g. w' W& w void FS_Seek(PFILEINFO fileinfo, u32 offset);% @& ?+ n1 L6 B; A8 P( g1 I$ ` u32 FS_Delete(PVOLINFO volinfo, u8 *path); u32 FS_GetNextEntry(PVOLINFO volinfo, PDIRINFO dirinfo, PDIRENT dirent);4 Q2 g0 o1 j5 u* B# z0 y% y u32 FS_OpenDirectory(PVOLINFO volinfo,u8 *dirname, PDIRINFO dirinfo); u32 FS_GetVolumeInfo(u8 unit, u32 startsector, PVOLINFO volinfo);4 r! E+ K; T5 e; j+ F7 N) ] Q0 S This is a snapshot of my current work in progress with partially integrated jpg decompressor1 k3 _8 G$ v7 |# | 4 B+ _' z3 u1 W1 U |