刚出去吃了个饭unsigned int Fx,tt,tt1;
char tt2;
void main()
{
M8C_EnableGInt;
Counter16_1_EnableInt;
LCD_1_Start();
Timer8_1_Start();
Counter16_1_Start();
while(1)
{
tt=Counter16_1_wReadCounter();
tt2=Timer8_1_bReadTimer();
if (tt2==155)
{
Counter16_1_Stop();
tt1=65536-tt;
Fx=tt1;
LCD_1_Position(0,2);
LCD_1_PrHexInt(Fx);
}
} |