(MCU 8051) STC15W104 >> Assembly

Timer0(Timer、Mode3)


Timer0 Mode3為自動載入的16Bit計數、計時模式,與Mode0最大的差異就是強制使用中斷,最大可以從0數到65536,當數到65536時,則觸發Timer0計時中斷


設定步驟:
1. AUXR(0x8e)的Bit7(T0x12, 1T、12T)
2. TMOD的Timer0計時模式(CT=0, M1=1, M0=1)
3. 設定TL0、TH0(1T, 0.09us, 11.0592MHz)
4. 設定TR0
5. 設定ET0

main.s

  led set p3.2

  .org 0x00
  jmp start

  .org 0x0b
  jmp t0_handle

  .org 0x100
start:
  orl auxr, #80h
  mov tmod, #03h
  mov tl0, #0h
  mov th0, #0h
  clr a
  clr led
  clr tf0
  setb tr0
  setb et0
  jmp $

t0_handle:
  djnz acc, nothing
  cpl led
nothing:
  reti
  .end

P.S. 1T,(0.09us * 65536 * 255) ~= 1.5s,注意上面的程式沒有設定EA

編譯程式:

$ mcu8051ide --compile main.s

完成


返回上一頁