资源描述:
《单片机电子钟设计代码 (2)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、单片机电子钟设计代码(2)给你一个,我做的电子钟的程序,参考一下,时间是可以调整的,有按键扫描在里面;*************************************;Filename:timer_controlable;chiptype:atmelmega8;programetype:application;clockfrequency:8MHZ;memorymodel:small;ExternalSRAMsize:0;Datastacksize:256;*********************
2、****************.include"m8def.inc".deftime_counter=r16;时间计数单元.defkey_stime_counter=r17.defkey_input=r18;按键输入单元.defposit=r19;LED显示字符移位指针.deftemp=r20;临时寄存器.deftemp1=r21.defkey_press=r22.defkey_return=r23.defclock_state=r24;状态机中的状态.defkey_state=r25.defkey_tem
3、p=r7.defcount=r8.deftemp2=r1.defset_on=r2;校时闪烁标志.defreturn_time=r3.defpoint_on=r4;秒闪烁标志.deftime_1s_ok=r5;1s到标志.defkey_stime_ok=r6;10ms到标志.equkey_no=0;无按键标志.equkey_k1=1;按键K1标志.equkey_k2=2;按键K2标志.equkey_mask=0b11000000;按键识别标志.equkey_state_0=0;状态0.equkey_state
4、_1=1;状态1.equkey_state_2=2;状态2.org0x0000rjmpmain.org0x0003;T2比较匹配中断向量地址rjmptimer2_com_isr.org0x0020;-------------------------------------------------------------------------------------------------------------------------------------------;;主程序;-------------
5、------------------------------------------------------------------------------------------------------------------------------;main:;*--初始化堆栈--*;lditemp,0x5foutspl,templditemp,0x02outsph,temp;*--PB,PD初始化--*;lditemp,0x00outportb,temp;PB口输出做段码控制lditemp,0xffou
6、tddrb,tempoutportd,templditemp,0x3f;PD0~5输出作位控制outddrd,temp;PD6~7作时间调整输入口;*--T2初始化--*;lditemp,0x0douttccr2,temp;内部时钟,128分频(8M/128=62.5KHZ),CTC模式lditemp,0x7coutOCR2,temp;OCR2=0X7C(124),(124+1)/62.5khz=2mslditemp,0x80outtimsk,temp;定时器2比较匹配中断使能;*--时钟初始化为:23:58
7、:55--*;ldixl,low(time_buff)ldixh,high(time_buff)lditemp,55stx+,temp;秒:55lditemp,58stx+,temp;分:58lditemp,23stx,temp;时:23;*--初始化各值--*;lditemp,0x00;清零各标志位,初始化各寄存器movtime_1s_ok,temp;清1s到标志movpoint_on,temp;清小数点标志movkey_stime_ok,temp;清10ms到标志movreturn_time,temp;清
8、movposit,temp;清零显示位置寄存器movkey_stime_counter,temp;清movtime_counter,tempmovkey_state,tempmovset_on,tempsei;开全局中断while:sbrstime_1s_ok,0;1s到则跳过下一条指令,不跳转rjmpkey_hand;1s未到跳键处理程序clrtime_1s_ok;清零1s到标志lditemp,0