摘要: 1 The downloadable platform includes the following emulator skins: 2 3 QVGA (240x320, low density, small screen) 4 WQVGA400 (240x400, low density, normal screen) 5 WQVGA432 (240x432, low density, normal screen) 6 HVGA (320x480, medium density, normal screen) 7 WVGA800 (480x800, high density, norma.. 阅读全文
posted @ 2012-07-31 21:19 IAmAProgrammer 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1 /****************************************Copyright (c)**************************************************** 2 ** 3 ** http://www.powermcu.com 4 ** 5 **--------------File Info--------------------------------------------------------------------------------- ... 阅读全文
posted @ 2012-07-31 14:41 IAmAProgrammer 阅读(3665) 评论(0) 推荐(0) 编辑
摘要: 1 http://cba.si/stuff/fatfs_diskio_sdcard_spi.c 2 3 /* 4 * (c) Domen Puncer, Visionect, d.o.o. 5 * BSD License 6 * 7 * v0.2 add support for SDHC 8 */ 9 10 #include <stdio.h> 11 #include "stm32f10x_lib.h" 12 13 /* 14 * Code is split into 3 parts: 15 * - generic SPI ... 阅读全文
posted @ 2012-07-31 14:34 IAmAProgrammer 阅读(2390) 评论(0) 推荐(0) 编辑
摘要: 1 // 文件复制 2 // 将psrc文件,copy到pdst. 3 // psrc,pdst:源文件和目标文件 4 // fwmode:文件写入模式 5 // 0:不覆盖原有的文件 6 // 1:覆盖原有的文件 7 u8 mf_copy ( u8 * psrc, u8 * pdst, u8 fwmode ) 8 { 9 u8 res; 10 u16 br = 0; 11 u16 bw = 0; 12 FIL * fsrc = 0; 13 FIL * fdst = 0; 14 u8 * fbuf = 0; 15 fsrc ... 阅读全文
posted @ 2012-07-31 12:14 IAmAProgrammer 阅读(2681) 评论(0) 推荐(0) 编辑