<meter id="pryje"><nav id="pryje"><delect id="pryje"></delect></nav></meter>
          <label id="pryje"></label>

          新聞中心

          EEPW首頁(yè) > 嵌入式系統(tǒng) > 設(shè)計(jì)應(yīng)用 > LM3S9B96 的看門(mén)狗定時(shí)器

          LM3S9B96 的看門(mén)狗定時(shí)器

          作者: 時(shí)間:2016-11-11 來(lái)源:網(wǎng)絡(luò) 收藏
          看門(mén)狗定時(shí)器是為了防止程序跑飛而設(shè)計(jì)的,當(dāng)?shù)竭_(dá)設(shè)置的定時(shí)時(shí)間,程序還沒(méi)有喂狗(重新設(shè)置定時(shí)初值),程序就會(huì)被強(qiáng)制復(fù)位。
          ls3s9b96的看門(mén)狗定時(shí)器,不用在程序中手動(dòng)喂狗,在API函數(shù)中已經(jīng)完成了這項(xiàng)工作。
          下面是watchdog配置的例子

          #include "inc/lm3s9b96.h"
          #include "inc/hw_memmap.h"
          #include "inc/hw_types.h"
          #include "inc/hw_ints.h"
          #include "driverlib/interrupt.h"
          #include "driverlib/gpio.h"
          #include "driverlib/watchdog.h"
          #include "driverlib/timer.h"
          #include "driverlib/sysctl.h"


          /* 用于調(diào)試 PF1 <-> LED -----------------------------------------------------*/
          #define LED_PERIPH SYSCTL_PERIPH_GPIOF
          #define LED_PORT GPIO_PORTF_BASE
          #define LED_PIN GPIO_PIN_1
          #define LED_OFF 1 << 1
          #define LED_ON ~(1 << 1) // 低電平點(diǎn)亮LED


          //*****************************************************************************
          //
          // 延時(shí)函數(shù)
          //
          //*****************************************************************************
          void Delay(volatile signed long nCount)
          {
          for(; nCount != 0; nCount--);
          }

          //*****************************************************************************
          //
          // LED初始化函數(shù),用于調(diào)試timer, watchdog等
          //
          //*****************************************************************************
          void LED_Init(void)
          {
          // 使能LED所在的GPIO端口
          SysCtlPeripheralEnable(LED_PERIPH);

          // 設(shè)置LED所在管腳為輸出
          GPIOPinTypeGPIOOutput(LED_PORT, LED_PIN);

          // 熄滅LED(默認(rèn)LED是點(diǎn)亮的,低電平點(diǎn)亮LED)
          GPIOPinWrite(LED_PORT, LED_PIN, LED_OFF);
          }

          //*****************************************************************************
          //
          // 看門(mén)狗初始化函數(shù)
          //
          //*****************************************************************************
          void Watchdog_Init(void)
          {
          // 使能看門(mén)狗
          SysCtlPeripheralEnable(SYSCTL_PERIPH_WDOG0);

          // 使能看門(mén)狗中斷
          IntEnable(INT_WATCHDOG);

          // 設(shè)置看門(mén)狗定時(shí)器重載值(8000000個(gè)系統(tǒng)時(shí)鐘周期)
          WatchdogReloadSet(WATCHDOG0_BASE, SysCtlClockGet() / 2);

          WATCHDOG0_TEST_R = 0x100;

          // 使能看門(mén)狗復(fù)位輸出
          WatchdogResetEnable(WATCHDOG0_BASE);

          // 看門(mén)狗中斷使能
          WatchdogEnable(WATCHDOG0_BASE);
          }

          //*****************************************************************************
          //
          // 主函數(shù)
          //
          //*****************************************************************************
          int main(void)
          {
          // Set the clocking to run directly from the crystal.
          SysCtlClockSet(SYSCTL_SYSDIV_1 | SYSCTL_USE_OSC | SYSCTL_OSC_MAIN | SYSCTL_XTAL_16MHZ);

          LED_Init();
          Watchdog_Init();
          IntMasterEnable(); // 開(kāi)總中斷

          while (1)
          {
          }
          }


          //*****************************************************************************
          //
          // This feeds the dog and winks the LED
          //
          //*****************************************************************************
          void WatchdogIntHandler(void)
          {
          // 清除看門(mén)狗定時(shí)中斷
          WatchdogIntClear(WATCHDOG0_BASE);

          // 置反LED燈狀態(tài)
          GPIOPinWrite(LED_PORT, LED_PIN, (GPIOPinRead(LED_PORT, LED_PIN) ^ LED_PIN));
          }

          本文引用地址:http://www.ex-cimer.com/article/201611/317011.htm
          按照前面講的中斷映射表的配置,將startup_ewarm.c文件中添加兩處代碼。編譯、運(yùn)行即可。



          評(píng)論


          技術(shù)專(zhuān)區(qū)

          關(guān)閉
          看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();