本帖最后由 iDneW 于 2019-4-24 14:11 编辑
[mw_shl_code=c,true]#include "tftlcd.h"
#include "system.h"
#include "SysTick.h"
#include "led.h"
#include "usart.h"
#include "wkup.h"
void kai_display() //开机显示
{
FRONT_COLOR=RED;
LCD_ShowString(10,10,tftlcd_data.width,tftlcd_data.height,16,"LCD Test");
LCD_ShowString(10,30,tftlcd_data.width,tftlcd_data.height,16,"HELLO WORLD");
LCD_ShowString(10,50,tftlcd_data.width,tftlcd_data.height,16,"K_UP:Adjust");
}
/*******************************************************************************
* 函 数 名 : main
* 函数功能 : 主函数
* 输 入 : 无
* 输 出 : 无
*******************************************************************************/
int main()
{
LED_Init();
SysTick_Init(72);
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2); //中断优先级分组 分2组
USART1_Init(115200);
TFTLCD_Init();
while(1)
{
kai_display();
printf("time: 5
");
led1=1;
delay_ms(1000); //隔1秒显示计数
printf("time: 4
");
led1=0;
delay_ms(1000);
printf("time: 3
");
led1=1;
delay_ms(1000);
printf("time: 2
");
led1=0;
delay_ms(1000);
printf("time: 1
");
led1=1;
delay_ms(1000);
printf("进入系统待机模式
");
Enter_Standby_Mode();
}
}[/mw_shl_code]
进入待机模式以后 LED也灭了 不是cpu停止工作了吗,为什么屏还亮着 还有显示
刚学希望大家指教
一周热门 更多>