我制作了电路,并使其在7段显示器上以Hours:Minutes格式显示4个不同的数字。现在,我希望它使用计时器中断,并使其在整个小时内连续运行,而小时数则很小,几分钟则更小,以查看其是否正常运行。这就是我需要即时消息的帮助,我不确定该如何使用计时器中断,只需将此作为下一步即可。谢谢

到目前为止,这里是使用P89c668微控制器的电路-http://imgur.com/YJKQ206[1]唯一的区别是我使用的是缓冲器而不是晶体管

最佳答案

我不熟悉您的微控制器,但原理是一样的。

1.Use an 8 or 16 bit timer.
2.Set specific bits in registers to accuratelly set the interrupt interval
3.When the timer overflows an interrupt happens(a function is called automatically)
4.In this function you increase a variable.
5.Translate the (variable * interrupt interval) to hours and minutes.

瓦尔特

10-08 16:04