如何分析单片机C语言程序设计10秒的秒表的程序?

如何分析单片机C语言程序设计10秒的秒表的程序?,第1张

要分析一个单片机 C 语言程序设计的秒表程序,需要考虑以下几个方面:

硬件平台:需要了解秒表程序所运行的单片机类型,以及硬件平台上可用的硬件资源,如定时器、显示器等。

时间计数方式:需要确定秒表程序使用的时间计数方式,是通过定时器实现周期性计时,还是通过程序每隔一段时间手动计时。

显示方式:需要确定秒表程序的显示方式,是通过数码管显示时间,还是通过 LCD 显示屏显示时间。

程序流程:需要分析秒表程序的主要流程,包括初始化、计时、显示等步骤。

程序细节:需要关注秒表程序中的细节,如处理溢出、计时格式

这里的分段计时,我使用空格键实现的,F2比较麻烦。程序开始,输入回车开始计时,中途输入空格可以开始新的计时,最后输入回车完成计时。

文件存在程序目录下的timeout.txt

真麻烦,下次这种求助才给10分,绝对不做。。。

//////////////////////////

我的代码就是在VS2010下写的。。。怎么会无法编译。。。你要建一个空工程,然后加入C++源文件。

/////////////////////////////

请新建一个空工程,不要新建Win32 Console那个工程!

#include <stdio.h>

#include <conio.h>

#include <windows.h>

#include <stdlib.h>

struct tm     //定义时间结构体,包括时分秒和10毫秒

{

int hours,minutes,seconds

int hscd

}time,tmp,total    //time用以计时显示,tmp用以存储上一阶段时间,total记总时间

int cnt

FILE* fout

//每次调用update函数,相当于时间过了10ms

void update(struct tm *t)

{

(*t).hscd++    //10ms单位时间加1

cnt++

if ((*t).hscd==100)   //计时满1s,进位

{

(*t).hscd=0

(*t).seconds++

}

if ((*t).seconds==60)   //计时满一分,进位

{

(*t).seconds=0

(*t).minutes++

}

if ((*t).minutes==60)        //计时满一小时,进位

{

(*t).minutes=0

(*t).hours++

}

if((*t).hours==24) (*t).hours=0

//delay()

Sleep(10)  //Sleep是windows提供的函数,作用是暂停程序,单位毫秒,所以此处暂停10ms

}

void display(struct tm *t)

{

//此处输出计时结果,\r为回车不换行,既一直在同一行更新时间

printf("%d:",(*t).hours)

printf("%d:",(*t).minutes)

printf("%d:",(*t).seconds)

printf("%d\r",(*t).hscd)

//printf("Now, press 'e' key to stop the clock...")

}

void time_init()  //初始化时间

{

time.hours=time.minutes=time.seconds=time.hscd=0

}

void get_total()   //计算总时间

{

total.hscd = cnt % 100

cnt /= 100

total.seconds = cnt % 60

cnt /= 60

total.minutes = cnt % 60

cnt /= 60

total.hours = cnt

}

int main()

{

char m

time_init()

cnt = 0

fout =  fopen("timeout.txt","w")

printf("Now, press Enter key to begin the clock...\n")

while(1)

{

m = getch()

if(m != '\r')     //读入一个输入,如果是回车,那么跳出次循环

printf("Input Error!\n")

else

break

}

printf("While counting, you can press space to start a new time counter!\n")

while(1)

{

if(kbhit())    //此处检查是否有键盘输入

{

m=getch()

if(m == '\r')     //如果等于回车,那么计时结束,跳出循环

break

else if(m == ' ')  //如果等于空格,显示此次计时,初始化计时器

{

tmp = time      //记录上一段计时器结果

fprintf(fout,"%d:%d:%d:%d\n",tmp.hours,tmp.minutes,tmp.seconds,tmp.hscd) //写入文件

time_init()

printf("\n")

}

else

{

printf("Input Error!\n")

}

}

update(&time)     //更新计时器

display(&time)    //显示计时器时间

}

tmp = time       //输出最后一次即使结果,写入文件

fprintf(fout,"%d:%d:%d:%d\n",tmp.hours,tmp.minutes,tmp.seconds,tmp.hscd)

get_total()      //计算总的时间,显示,并写入文件

printf("\ntotal time:%d:%d:%d:%d\n",total.hours,total.minutes,total.seconds,total.hscd)

fprintf(fout,"total time:%d:%d:%d:%d\n",total.hours,total.minutes,total.seconds,total.hscd)

fclose(fout)

getch()

}

Option Explicit

Dim MinSec As Integer

Dim Sec As Integer

Dim Minute As Integer

Dim Hour As Integer

Private Sub Command1_Click() '开始按钮

Timer1.Enabled = True

End SubPrivate Sub Command2_Click() '停止

Timer1.Enabled = False

End SubPrivate Sub Command3_Click() '清除

Timer1.Enabled = False

Hour = 0

Minute = 0

MinSec = 0

Sec = 0

Label1.Caption = Format(Hour, "00") &"时" &Format(Minute, "00") &"分" &Format(Sec, "00") &"秒" &Format(MinSec, "00")

End SubPrivate Sub Form_Load()

Timer1.Enabled = False

Timer1.Interval = 10

Form1.Caption = "秒表"

Command1.Caption = "开始"

Command2.Caption = "停止"

Command3.Caption = "清除"

End SubPrivate Sub Timer1_Timer()

MinSec = MinSec + 1

If MinSec = 100 Then

MinSec = 0

Sec = Sec + 1

If Sec = 60 Then

Sec = 0

Minute = Minute + 1

If Minute = 60 Then

Minute = 0

Hour = Hour + 1

Else

End If

Else

End If

Else

End If

Label1.Caption = Format(Hour, "00") &"时" &Format(Minute, "00") &"分" &Format(Sec, "00") &"秒" &Format(MinSec, "00")

End Sub


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11553088.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-16
下一篇 2023-05-16

发表评论

登录后才能评论

评论列表(0条)

保存