研究生
最后登录1970-1-1
在线时间 小时
注册时间2014-4-29
|
int main(void)
{
/* USART1 config */
//USART1_Config();
//printf("\r\n this is a fatfs test demo \r\n");
LCD_Init();
LCD_Clear(0, 0, 240, 320, BACKGROUND);
/* 初始化sd卡文件系统,因为汉字的字库放在了sd卡里面 */
Sd_fs_init();
/* 设置Lcd Gram 扫描方向为: 左上角 -> 右下角*/
//Lcd_GramScan( 1 );
LCD_DispStr(5, 5, (uint8_t *)"fatfs init success", RED);
LCD_DispStr(5, 25, (uint8_t *)"insure the sdcard has insert......", RED);
LCD_DispStrCH(50, 50, (uint8_t *)"野火开发板", RED);
LCD_DispEnCh(5, 90, "Welcome to use 野火 ISO Stm32 开发板 bigo------", RED);
/* 显示BMP图片 */
Lcd_show_bmp(0, 0,"/wildfire.bmp");
Lcd_show_bmp( 10,10,"/pic1.bmp");
Lcd_show_bmp( 170,0,"/pic2.bmp");
while(1); |
|