大学生
最后登录1970-1-1
在线时间 小时
注册时间2014-3-14
|
楼主 |
发表于 2014-3-19 10:04:51
|
显示全部楼层
红思雨 发表于 2014-3-19 09:36
你应该是使用错程序了,你下载的是ISO版本的程序吧,这两个版本的程序不兼容,在资料里找ISO-MINI的程序来试 ...
/**
******************************************************************************
* @file main.c
* @author fire
* @version V1.0
* @date 2013-xx-xx
* @brief Òº¾§ÏÔʾÖÐÎÄ
******************************************************************************
* @attention
*
* ʵÑéƽ̨:Ò°»ð ISO-MINI STM32 ¿ª·¢°å
* ÂÛ̳ :http://www.firebbs.cn
* ÌÔ±¦ :http://firestm32.taobao.com
*
******************************************************************************
*/
#include "stm32f10x.h"
#include "bsp_usart1.h"
#include "bsp_ili9341_lcd.h"
#include "bsp_sdfs_app.h"
#include "bsp_bmp.h"
/*
* ÒªÏëÖÐÎÄÏÔʾ³É¹¦
* Ðè°Ñ×ֿ⿽±´µ½sd¿¨ÉÏ£¬È»ºó°Ñsd¿¨²åµ½¿ª·¢°åµÄ¿¨²ÛÉÏ
*/
int main(void)
{
LCD_Init();
/* USART1 config */
//USART1_Config();
//printf("\r\n this is a fatfs test demo \r\n");
/* ÉèÖÃLcd Gram ɨÃè·½ÏòΪ: ÓÒϽÇ->×óÉÏ½Ç */
Lcd_GramScan( 3 );
LCD_Clear(0, 0, 320, 240, BACKGROUND);
/* ³õʼ»¯sd¿¨Îļþϵͳ£¬ÒòΪºº×ÖµÄ×Ö¿âºÍbmpͼƬ·ÅÔÚÁËsd¿¨ÀïÃæ */
Sd_fs_init();
/* ÏÔʾsd¿¨ÀïÃæµÄbmpͼƬ */
Lcd_show_bmp(0, 0,"/wildfire.bmp");
Lcd_show_bmp( 10,10,"/pic1.bmp");
Lcd_show_bmp( 170,0,"/pic2.bmp");
Screen_shot(0,0,320,240,"/myscreen");
while(1);
}
|
|