SSD1963-640480_fixed

所属分类:单片机开发
开发工具:C/C++
文件大小:3706KB
下载次数:84
上传日期:2012-02-08 12:20:15
上 传 者liyuyao001
说明:  SSD1963用STM32驱动,运行ZLG_GUI。这个版本是修改过后的,原来从网上下载的ZLFG_GUI里面注释乱码,这个版本参照着那个版本的源码将修改之后注释完整的ZLG_GUI源码替换了注释乱码的文件。编译可以通过。
(The SSD1963 with STM32 driven, run ZLG_GUI. This version is a modified version of the original downloaded from the Internet ZLFG_GUI inside comment garbled, this version of the reference to that version of the source code will modify annotation complete ZLG_GUI source to replace the garbled file comment. Compilation can be passed.)

文件列表:
LCD_Demo\FSA506\inc\diskio.h (1830, 2008-01-29)
LCD_Demo\FSA506\inc\ecc.h (1555, 2007-02-21)
LCD_Demo\FSA506\inc\Font_21.h (116414, 2008-05-07)
LCD_Demo\FSA506\inc\Font_8 (69994, 2008-05-06)
LCD_Demo\FSA506\inc\Font_8.h (221525, 2008-05-09)
LCD_Demo\FSA506\inc\FSA506.h (6639, 2012-02-08)
LCD_Demo\FSA506\inc\GraphicLib.h (988, 2008-06-09)
LCD_Demo\FSA506\inc\integer.h (665, 2008-05-14)
LCD_Demo\FSA506\inc\LCDC_Config.h (3994, 2009-02-17)
LCD_Demo\FSA506\inc\lpc2200nand.h (4754, 2008-05-23)
LCD_Demo\FSA506\inc\MMCMAIN.H (2183, 2008-05-13)
LCD_Demo\FSA506\inc\msd.c (29698, 2008-05-13)
LCD_Demo\FSA506\inc\msd.h (8304, 2008-05-13)
LCD_Demo\FSA506\inc\nand_flash.H (7434, 2008-06-04)
LCD_Demo\FSA506\inc\STM32_Reg.h (7983, 2007-10-29)
LCD_Demo\FSA506\inc\tff.h (9745, 2008-05-14)
LCD_Demo\FSA506\inc\TSC2046.C (10824, 2008-05-16)
LCD_Demo\FSA506\inc\TSC2046.h (1343, 2008-10-30)
LCD_Demo\FSA506\src\FSA506_Drivr.c (69302, 2012-02-08)
LCD_Demo\FSA506\src\GraphicLib.c (8235, 2008-12-18)
LCD_Demo\FSA506\src\lpc2200Nand.c (16513, 2008-05-23)
LCD_Demo\FSA506\src\msd.c (29728, 2008-05-20)
LCD_Demo\FSA506\src\nand_flash.c (11804, 2008-06-04)
LCD_Demo\FSA506\src\STM32_Init.c (258912, 2008-05-16)
LCD_Demo\FSA506\src\TSC2046.C (10348, 2008-12-18)
LCD_Demo\FSA506.C (2, 2008-06-30)
LCD_Demo\fsmc_nand.c (20145, 2008-06-13)
LCD_Demo\fsmc_nand.h (4502, 2008-06-13)
LCD_Demo\fsmc_nor.c (17239, 2008-07-02)
LCD_Demo\fsmc_nor.h (2470, 2008-06-13)
LCD_Demo\main.c (14878, 2008-12-18)
LCD_Demo\sdcard.c (95761, 2008-08-04)
LCD_Demo\sdcard.h (14077, 2008-06-13)
LCD_Demo\stm32f10x_conf.h (6305, 2008-06-13)
LCD_Demo\stm32f10x_it.c (29189, 2008-12-18)
LCD_Demo\stm32f10x_it.h (3842, 2008-06-13)
LCD_Demo\ZLG_GUI\config.h (2394, 2012-02-08)
LCD_Demo\ZLG_GUI\ConvertColor.c (7897, 2004-03-11)
LCD_Demo\ZLG_GUI\ConvertColor.h (5674, 2004-03-11)
... ...

/******************** (C) COPYRIGHT 2008 STMicroelectronics ******************** * File Name : readme.txt * Author : MCD Application Team * Version : V2.0.1 * Date : 06/13/2008 * Description : Description of the SDIO Example. ******************************************************************************** * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME. * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT, * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. *******************************************************************************/ Example description =================== This example provides a basic example of how to use the SDIO firmware library and an associate driver to perform read/write operations on the SD Card memory mounted on the STM3210E-EVAL board. Below is a description of the different example steps: - Configure the SDIO according to the desired SDIO_CK clock frequency. - Reset the SD Card - Identify the SD Card - Initializes the SD Card - Get the SD Card Info - Select the SD Card - Enable the Wide Bus mode (4-bit data) - Erase the correponding blocks - Read the Erased blocks - Test if the corresponding Blocks are well erased: check if the EraseStatus variable is equal to PASSED. - Set the Data Transfer Mode to DMA - Write a single Block - Read a single Block - Comapare the written Block and the read one: check if the TransferStatus1 variable is equal to PASSED. - Write multiple Blocks (2) - Read multiple Blocks (2) - Comapare the written Blocks and the read one: check if the TransferStatus2 variable is equal to PASSED. Directory contents ================== stm32f10x_conf.h Library Configuration file stm32f10x_it.c Interrupt handlers stm32f10x_it.h Header for stm32f10x_it.c sdcard.c SD Card Driver file sdcard.h Header for sdcard.c main.c Main program Hardware environment ==================== This example runs on STMicroelectronics STM3210E-EVAL evaluation board and can be easily tailored to any other hardware. Note: make sure that the Jumper 17 (JP17) is closed and Jumper 20 (JP20) is open in STM3210E-EVAL How to use it ============= In order to make the program work, you must do the following: - Create a project and setup all your toolchain's start-up files - Compile the directory content files and required Library files: + stm32f10x_lib.c + stm32f10x_gpio.c + stm32f10x_rcc.c + stm32f10x_nvic.c + stm32f10x_flash.c + stm32f10x_sdio.c + stm32f10x_dma.c - Link all compiled files and load your image into either RAM or Flash - Run the example ******************* (C) COPYRIGHT 2008 STMicroelectronics *****END OF FILE******

近期下载者

相关文件


收藏者