21 lines
151 B
C
21 lines
151 B
C
/*
|
|
* Main_APP.c
|
|
*
|
|
* Created on: Aug 6, 2021
|
|
* Author: wuwenfeng
|
|
*/
|
|
#include "LCD.h"
|
|
|
|
void main_app()
|
|
{
|
|
LCDx_Init();
|
|
|
|
while(1)
|
|
{
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|