新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設(shè)計應(yīng)用 > Cortex-M3 (NXP LPC1788)之RTC

Cortex-M3 (NXP LPC1788)之RTC

作者: 時間:2016-11-19 來源:網(wǎng)絡(luò) 收藏
實時時鐘是一組用于測量時間的計數(shù)器,如果使用電池供電,在系統(tǒng)掉電以后它也可以正常運行以記錄系統(tǒng)的時間。LPC1788時鐘采用內(nèi)部的32K振蕩器輸出1HZ的時鐘信號做為RTC的時鐘源。

RTC的寄存器比較簡單,主要有時鐘計數(shù)器寄存器包括秒SEC 分MIN 小時HOUR 日期(月)DOM 星期DOW 日期(年)DOY 月MONTH 年YEAR, 這些寄存器為R/W 可以從中讀出具體的時間信息。其中的秒計數(shù)由1HZ時鐘驅(qū)動。報警寄存器組中的值將和時間計數(shù)器寄存器中的值比較,如果所有為屏蔽的報警寄存器都與他們對應(yīng)的時間計數(shù)器相匹配,那么將產(chǎn)生一次中斷。報警屏蔽在報警屏蔽寄存器AMR中設(shè)置。中斷設(shè)置在中斷位置寄存器ILR中設(shè)置。RTC中斷不僅可以在報警寄存器和時間計數(shù)器匹配時產(chǎn)生,我們也可以配置計數(shù)器增量中斷寄存器CIIR,使計數(shù)器每增加1就產(chǎn)生一次中斷。RTC的控制在時鐘控制寄存器CCR中,我們可以使能或禁止時鐘,以及復(fù)位等。

本文引用地址:http://butianyuan.cn/article/201611/318450.htm

在下面的程序中,首先PC端使用串口軟件發(fā)送一串固定格式的時間信息給開發(fā)板,開發(fā)板收到字符‘a’表示后面跟著的是時間信息,設(shè)置了初始時間后,我們配置CCIR使1秒產(chǎn)生一次中斷,配置報警寄存器組合報價屏蔽寄存器,使秒計數(shù)為30的時候產(chǎn)生中斷。在RTC的中斷函數(shù)中,如果是計數(shù)中斷,就讓接LED的GPIO輸出反向電平,根據(jù)設(shè)置LED燈將1S閃爍。 如果是報警中斷,就通過串口在PC打印時間信息。

注意:為了程序的簡潔,省去了之前介紹了的系統(tǒng)時鐘配置和串口的配置。具體的信息可查詢之前的文章。

  1. #include"LPC1788_REG.h"
  2. #include"uart.h"
  3. #definerILR(*(volatileunsigned*)0x40024000)
  4. #definerCCR(*(volatileunsigned*)0x40024008)
  5. #definerCIIR(*(volatileunsigned*)0x4002400C)
  6. #definerAMR(*(volatileunsigned*)0x40024010)
  7. #definerCALIBRATION(*(volatileunsigned*)0x40024040)
  8. #definerYEAR(*(volatileunsigned*)0x4002403C)
  9. #definerMONTH(*(volatileunsigned*)0x40024038)
  10. #definerDOM(*(volatileunsigned*)0x4002402C)
  11. #definerHOUR(*(volatileunsigned*)0x40024028)
  12. #definerMIN(*(volatileunsigned*)0x40024024)
  13. #definerSEC(*(volatileunsigned*)0x40024020)
  14. #definerALSEC(*(volatileunsigned*)0x40024060)
  15. #definerCTIME0(*(volatileunsigned*)0x40024014)
  16. #definerCTIME1(*(volatileunsigned*)0x40024018)
  17. #definerCTIME2(*(volatileunsigned*)0x4002401C)
  18. unsignedcharflag_setTime=1;
  19. unsignedcharflag_receiveStatus=0;
  20. unsignedchartimeData[14],cnt;
  21. voidSet_Data()
  22. {
  23. rCCR&=~(0x1<<0);
  24. rYEAR=(timeData[0]-0)*1000+(timeData[1]-0)*100+(timeData[2]-0)*10+(timeData[3]-0);
  25. rMONTH=(timeData[4]-0)*10+(timeData[5]-0);
  26. rDOM=(timeData[6]-0)*10+(timeData[7]-0);
  27. rHOUR=(timeData[8]-0)*10+(timeData[9]-0);
  28. rMIN=(timeData[10]-0)*10+(timeData[11]-0);
  29. rSEC=(timeData[12]-0)*10+(timeData[13]-0);
  30. }
  31. voidDisplay_Data()
  32. {
  33. Uart2SendC(n);
  34. Uart2SendC(rYEAR/1000+0);
  35. Uart2SendC(rYEAR%1000/100+0);
  36. Uart2SendC(rYEAR%100/10+0);
  37. Uart2SendC(rYEAR%10+0);
  38. Uart2SendC(-);
  39. Uart2SendC(rMONTH/10+0);
  40. Uart2SendC(rMONTH%10+0);
  41. Uart2SendC(-);
  42. Uart2SendC(rDOM/10+0);
  43. Uart2SendC(rDOM%10+0);
  44. Uart2SendC(n);
  45. Uart2SendC(rHOUR/10+0);
  46. Uart2SendC(rHOUR%10+0);
  47. Uart2SendC(:);
  48. Uart2SendC(rMIN/10+0);
  49. Uart2SendC(rMIN%10+0);
  50. Uart2SendC(:);
  51. Uart2SendC(rSEC/10+0);
  52. Uart2SendC(rSEC%10+0);
  53. }
  54. voidUART2_IRQHandler()
  55. {
  56. unsignedintintId;
  57. chartmp_char;
  58. intId=rU2IIR&0xf;
  59. if(intId==0xc||intId==0x4)//RDA或者CTI中斷
  60. {
  61. rU2LCR&=~(0x1<<7);//DLAB=0
  62. tmp_char=rU2RBR&0xff;
  63. rU2THR=tmp_char;
  64. }
  65. if(tmp_char==a&&flag_receiveStatus==0)
  66. {
  67. flag_receiveStatus=1;
  68. cnt=0;
  69. }
  70. elseif(flag_receiveStatus==1)
  71. {
  72. timeData[cnt]=tmp_char;
  73. cnt++;
  74. if(cnt==14)
  75. {
  76. Set_Data();
  77. cnt=0;
  78. flag_receiveStatus=0;
  79. flag_setTime=0;
  80. }
  81. }
  82. }
  83. voidRTC_IRQHandler()
  84. {
  85. unsignedcharIntStatus;
  86. IntStatus=rILR;
  87. if(IntStatus&0x1)//計數(shù)中斷
  88. {
  89. rFIO1PIN=~rFIO1PIN;
  90. rILR=IntStatus;
  91. }
  92. elseif(IntStatus&(0x1<<1))//報警中斷
  93. {
  94. Display_Data();
  95. rILR=IntStatus;
  96. }
  97. }
  98. voidInit_RTC()
  99. {
  100. rILR=0;
  101. rCCR=0;
  102. rCIIR=0;
  103. rAMR=0xff;
  104. rCALIBRATION=0;
  105. rCCR|=0x1<<1;//CTCReset
  106. rCCR&=~(0x1<<1);
  107. }
  108. intmain(void)
  109. {
  110. charmenu[]={"nr===>Sendaframewith6BytedatatosetRTCn[a]+[year]+[month]+[day]+[hour]+[minute]+[second]n"};
  111. charstr[]={"rnTimesetok!rnCurrenttimesetto:rn"};
  112. rFIO1DIR|=(1<<18);//GPIO1.18->OUTPUT
  113. Init_Uart2();
  114. Uart2SendS(menu);
  115. while(flag_setTime);
  116. Uart2SendS(str);
  117. Display_Data();
  118. rCCR|=0x1;
  119. rCCR|=0x1<<4;
  120. rCIIR|=0x1;//秒值增加產(chǎn)生一次中斷
  121. rAMR&=~(0x1<<0);//秒值與報警寄存器比較
  122. rALSEC=30;//秒值為30的時候產(chǎn)生一個報警
  123. rISER0|=0x1<<17;//使能RTC中斷
  124. while(1);
  125. }

程序運行串口打印信息如下圖:




關(guān)鍵詞: Cortex-M3NXPLPC1788RT

評論


相關(guān)推薦

技術(shù)專區(qū)

關(guān)閉