C8051关闭看门狗汇编语言,请教关于C8051F单片机看门狗程序问题

本文主要是介绍C8051关闭看门狗汇编语言,请教关于C8051F单片机看门狗程序问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

看门狗程序,网上找了一个,看不懂,也不知道哪句有用,求大神帮忙分析,小弟不胜感激!

//-----------------------------------------------------------------------------

// F41x_Watchdog.c

//-----------------------------------------------------------------------------

// Copyright 2006 Silicon Laboratories, Inc.

// http://www.silabs.com

//

// Program Description:

//

// This program helps the user to learn about operating the Watch Dog Timer.

// The WDT is used to generate resets if the times between writes to the WDT

// update register (PCA0CPH5) exceed a specified limit. The WDT can be disabLED

// and enabled in the software as needed. When enabled the PCA Module 5 acts as

// the WDT. This program resets the MCU when P1.4 switch is pressed for 3

// seconds.  Also upon reset the LED blinks approximately five times faster

// when compared to before. The reset is caused due to a WDT oveRFlow and can

// be confirmed by checking the value of the RSTSRC register where bit 3 is

// set to indicate a reset caused by WDT.

//

// How to Test:

// 1) Compile and download code to a 'F410 device

// 2) Place shorting blocks on P2.1/D3 and P1.4/SW2 pin pairs on jumper J5.

// 3) Run the code:

//        - The test will blink the LED at a rate of 8Hz until the switch SW2

//          (P0.7) is pressed for at least 3 secs.

//        - Once the the switch is pressed and held for a long enough time,

//          it will prevent the WDT from being touched and the WDT will

//          cause a reset.

//        - Upon reset the code checks for a WDT reset and blinks the LED five

//          times faster than before to indicate the same.

//

//

// FID:            41X000031

// Target:         c8051f410

// Tool chain:     Keil C51 7.50 / Keil EVAL C51

// Command Line:   None

//

// Release 1.0

//    -Initial Revision SM

//    -20 JULY 2006

//-----------------------------------------------------------------------------

// Includes

//-----------------------------------------------------------------------------

#include                  // SFR declarations

//-----------------------------------------------------------------------------

// 16-bit SFR Definitions for 'F41x

//-----------------------------------------------------------------------------

sfr16 TMR2RL   = 0xca;                 // Timer2 reload value

sfr16 TMR2     = 0xcc;                 // Timer2 counter

//-----------------------------------------------------------------------------

// Global CONSTANTS

//-----------------------------------------------------------------------------

#define SYSCLK       24500000 / 8      // SYSCLK frequency in Hz

sbit LED = P2^1;                       // LED='1' means ON

sbit SW2 = P1^4;                       // SW2='0' means switch pressed

//-----------------------------------------------------------------------------

// Function PROTOTYPES

//-----------------------------------------------------------------------------

void OSCILLATOR_Init (void);

void PORT_Init (void);

void PCA_Init (void);

void Timer2_Init (int counts);

void Timer2_ISR (void);

//-----------------------------------------------------------------------------

// main() Routine

//-----------------------------------------------------------------------------

//

// The MAIN routine performs all the intialization, and then loops until the

// switch is pressed. When SW2 (P1.4) is pressed the code checks the RSTSRC

// register to make sure if the last reset is because of WDT.

//-----------------------------------------------------------------------------

void main (void)

{

PCA0MD &= ~0x40;                    // WDTE = 0 (clear watchdog timer

// enable)

OSCILLATOR_Init ();                 // Initialize system clock to 24.5/8 MHz

PCA_Init();                         // Intialize the PCA

PORT_Init();                        // Initialize crossbar and GPIO

if ((RSTSRC & 0x02) == 0x00)        // First check the PORSF bit. if PORSF

{                                   // is set, all other RSTSRC flags are

// invalid

// Check if the last reset was due to the Watch Dog Timer

if (RSTSRC == 0x08)

{

// Make LED blink at 12Hz

Timer2_Init (SYSCLK / 12 / 6);

// Enable global interrupts

EA = 1;

while(1);                   // wait forever

}

else

{

// Init Timer2 to generate interrupts at a 4Hz rate.

Timer2_Init (SYSCLK / 12 / 4);

}

}

// Calculate Watchdog Timer Timeout

// Offset calculated in PCA clocks

// Offset = ( 256 x PCA0CPL5 ) + 256 - PCA0L

//        = ( 256 x 255(0xFF)) + 256 - 0

// Time   = Offset * (12/SYSCLK)

//        = ~255 ms ( PCA uses SYSCLK/12 as its clock source)

PCA0MD  &= ~0x40;                   // WDTE = 0 (clear watchdog timer

// enable)

PCA0L    = 0x00;                    // Set lower byte of PCA counter to 0

PCA0H    = 0x00;                    // Set higher byte of PCA counter to 0

PCA0CPL5 = 0xFF;                    // Write offset for the WDT

PCA0MD  |= 0x40;                    // Enable the WDT

EA = 1;                             // Enable global interrupts

//--------------------------------------------------------------------------

// Main Application Loop/Task Scheduler

//--------------------------------------------------------------------------

while (1)

{

//----------------------------------------------------------------------

// Task #1 - Check Port I/O

//----------------------------------------------------------------------

while(!SW2);                     // Force the MCU to stay in this task as

// long as SW2 is pressed. This task

// must finish before the watchdog timer

// timeout expires.

//-----------------------------------------------------------------------

// Task #2 - Reset Watchdog Timer

//-----------------------------------------------------------------------

PCA0CPH5 = 0x00;                 // Write a 'dummy' value to the PCA0CPH5

// register to reset the watchdog timer

// timeout. If a delay longer than the

// watchdog timer delay occurs between

// successive writes to this register,

// the device will be reset by the watch

// dog timer.

}

}

//-----------------------------------------------------------------------------

// Initialization Subroutines

//-----------------------------------------------------------------------------

//-----------------------------------------------------------------------------

// OSCILLATOR_Init

//-----------------------------------------------------------------------------

// Return Value : None

// Parameters   : None

// This routine initializes the system clock to use the internal 24.5MHz / 8

// oscillator as its clock source.  Also enables missing clock detector reset.

//-----------------------------------------------------------------------------

void OSCILLATOR_Init (void)

{

OSCICN = 0x84;                      // Configure internal oscillator

RSTSRC = 0x04;                      // Enable missing clock detector

}

//-----------------------------------------------------------------------------

// PCA_Init

//-----------------------------------------------------------------------------

// Return Value : None

// Parameters   : None

// This routine initializes the PCA to use the SYSCLK / 12

// as its clock source.  It also sets the offset value by writing to PCA0CPL2.

//-----------------------------------------------------------------------------

void PCA_Init()

{

PCA0CN     =  0x40;                        // PCA counter enable

PCA0MD    &= ~0x40 ;                       // Watchdog timer disabled-clearing bit 6

PCA0MD    &=  0xF1;                        // Timebase selected - System clock / 12

PCA0CPL5   =  0xFF;                        // Offset value

}

//-----------------------------------------------------------------------------

// PORT_Init

//-----------------------------------------------------------------------------

// Return Value : None

// Parameters   : None

//

// This function configures the Crossbar and GPIO ports.

// P2.1   digital   push-pull     LED

//-----------------------------------------------------------------------------

void PORT_Init (void)

{

XBR0     = 0x00;                    // No digital peripherals selected

XBR1     = 0x40;                    // Enable crossbar and weak pull-ups

P2MDOUT |= 0x02;                    // Enable LED as a push-pull output

}

//-----------------------------------------------------------------------------

// Timer2_Init

//-----------------------------------------------------------------------------

// Return Value : None

// Parameters   :

//   1)  int counts - calculated Timer overflow rate

//                    range is positive range of integer: 0 to 32767

//

// Configure Timer2 to 16-bit auto-reload and generate an interrupt at

// interval specified by using SYSCLK/48 as its time base.

//-----------------------------------------------------------------------------

void Timer2_Init (int counts)

{

TMR2CN  = 0x00;                     // Stop Timer2; Clear TF2;

// use SYSCLK/12 as timebase

CKCON   = 0x30;                     // Timer2 clocked based on SYSCLK

TMR2RL  = -counts;                  // Init reload values

TMR2    = 0xffff;                   // Set to reload immediately

ET2     = 1;                        // Enable Timer2 interrupts

TR2     = 1;                        // Start Timer2

}

//-----------------------------------------------------------------------------

// Interrupt Service Routines

//-----------------------------------------------------------------------------

//-----------------------------------------------------------------------------

// Timer2_ISR

//-----------------------------------------------------------------------------

// This routine changes the state of the LED whenever Timer2 overflows.

//-----------------------------------------------------------------------------

void Timer2_ISR (void) interrupt 5

{

TF2H = 0;                           // Clear Timer2 interrupt flag

LED = ~LED;                         // Change state of LED

}

//-----------------------------------------------------------------------------

// End Of File

//-----------------------------------------------------------------------------

699ba7046c51816a17b33a7caa85f179.png

1

97b4b3417991aabde46fdac613e34292.png

已退回1积分

这篇关于C8051关闭看门狗汇编语言,请教关于C8051F单片机看门狗程序问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/546375

相关文章

SpringBoot启动报错的11个高频问题排查与解决终极指南

《SpringBoot启动报错的11个高频问题排查与解决终极指南》这篇文章主要为大家详细介绍了SpringBoot启动报错的11个高频问题的排查与解决,文中的示例代码讲解详细,感兴趣的小伙伴可以了解一... 目录1. 依赖冲突:NoSuchMethodError 的终极解法2. Bean注入失败:No qu

MySQL新增字段后Java实体未更新的潜在问题与解决方案

《MySQL新增字段后Java实体未更新的潜在问题与解决方案》在Java+MySQL的开发中,我们通常使用ORM框架来映射数据库表与Java对象,但有时候,数据库表结构变更(如新增字段)后,开发人员可... 目录引言1. 问题背景:数据库与 Java 实体不同步1.1 常见场景1.2 示例代码2. 不同操作

如何解决mysql出现Incorrect string value for column ‘表项‘ at row 1错误问题

《如何解决mysql出现Incorrectstringvalueforcolumn‘表项‘atrow1错误问题》:本文主要介绍如何解决mysql出现Incorrectstringv... 目录mysql出现Incorrect string value for column ‘表项‘ at row 1错误报错

如何解决Spring MVC中响应乱码问题

《如何解决SpringMVC中响应乱码问题》:本文主要介绍如何解决SpringMVC中响应乱码问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC最新响应中乱码解决方式以前的解决办法这是比较通用的一种方法总结Spring MVC最新响应中乱码解

pip无法安装osgeo失败的问题解决

《pip无法安装osgeo失败的问题解决》本文主要介绍了pip无法安装osgeo失败的问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 进入官方提供的扩展包下载网站寻找版本适配的whl文件注意:要选择cp(python版本)和你py

解决Java中基于GeoTools的Shapefile读取乱码的问题

《解决Java中基于GeoTools的Shapefile读取乱码的问题》本文主要讨论了在使用Java编程语言进行地理信息数据解析时遇到的Shapefile属性信息乱码问题,以及根据不同的编码设置进行属... 目录前言1、Shapefile属性字段编码的情况:一、Shp文件常见的字符集编码1、System编码

Spring MVC使用视图解析的问题解读

《SpringMVC使用视图解析的问题解读》:本文主要介绍SpringMVC使用视图解析的问题解读,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Spring MVC使用视图解析1. 会使用视图解析的情况2. 不会使用视图解析的情况总结Spring MVC使用视图

Redis解决缓存击穿问题的两种方法

《Redis解决缓存击穿问题的两种方法》缓存击穿问题也叫热点Key问题,就是⼀个被高并发访问并且缓存重建业务较复杂的key突然失效了,无数的请求访问会在瞬间给数据库带来巨大的冲击,本文给大家介绍了Re... 目录引言解决办法互斥锁(强一致,性能差)逻辑过期(高可用,性能优)设计逻辑过期时间引言缓存击穿:给

Java程序运行时出现乱码问题的排查与解决方法

《Java程序运行时出现乱码问题的排查与解决方法》本文主要介绍了Java程序运行时出现乱码问题的排查与解决方法,包括检查Java源文件编码、检查编译时的编码设置、检查运行时的编码设置、检查命令提示符的... 目录一、检查 Java 源文件编码二、检查编译时的编码设置三、检查运行时的编码设置四、检查命令提示符

Jackson库进行JSON 序列化时遇到了无限递归(Infinite Recursion)的问题及解决方案

《Jackson库进行JSON序列化时遇到了无限递归(InfiniteRecursion)的问题及解决方案》使用Jackson库进行JSON序列化时遇到了无限递归(InfiniteRecursi... 目录解决方案‌1. 使用 @jsonIgnore 忽略一个方向的引用2. 使用 @JsonManagedR