⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wdt.c

📁 TMS320C5509的WDT的例程源码
💻 C
字号:
/*
 *  Copyright 2003 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) DSP/BIOS 4.90.150 04-08-03 (barracuda-m02)" */
/******************************************************************************\
*           Copyright (C) 2000 Texas Instruments Incorporated.
*                           All Rights Reserved
*------------------------------------------------------------------------------
* MODULE NAME... WDTIM
* FILENAME...... wdt.c
* DATE CREATED.. Tu 11/03/2000 
* PROJECT....... Chip Support Library
* COMPONENT..... 
* PREREQUISITS.. 
*------------------------------------------------------------------------------
* HISTORY:
*   11/03/2000  (IM) Created
*  
*------------------------------------------------------------------------------
* DESCRIPTION:  
*   
* This is an example of the usage of WDTIM functions for 5509.
\*----------------------------------------------------------------------*/
#include <csl.h>
#include <csl_wdtim.h> 
#include <stdio.h>

int i, pscVal;
WDTIM_Config getConfig;
WDTIM_Config myConfig = {
     0x1000,          /* WDPRD */
     0x0000,          /* WDTCR */
     0x1000           /* WDTCR2 */
};


main()
{

    CSL_init();
  
#if (_WDTIM_SUPPORT)


    WDTIM_config(&myConfig);
    
    WDTIM_FSET(WDTCR, WDOUT, 1);           /* Connect to NMI */
    WDTIM_FSET(WDTCR, TDDR, 0xF);          /* Value to load PSC field */    
    WDTIM_FSET(WDTCR2, PREMD, 0);          /* Set direct mode */


        WDTIM_service();      /* enable watchdog */ 
          
    //for (i = 0; i < 100; i++)
        for (;;)
    {                     
        
        WDTIM_getConfig(&getConfig);  
        pscVal = WDTIM_FGET(WDTCR,PSC);

         printf("pscVal: %x, wdtcr: %x\n", 
                pscVal, getConfig.wdtcr);    
  
        
        /* write periodically to WDTIMER  - when this line is commented out,
           the watchdog times out, WDFLAG set to 1, indicating 
           that a Watchdog time-out occurred.*/ 
        WDTIM_service();         
    
    }           //end for loop
#endif
}



/******************************************************************************\
* End of wdt.c
\******************************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -