📄 wdog.s
字号:
///////////////////////////////////////////////////////////////////////////////
// /
// IAR ANSI C/C++ Compiler V6.40.1.53790/W32 for ARM 09/Aug/2012 09:28:57 /
// Copyright 1999-2012 IAR Systems AB. /
// /
// Cpu mode = thumb /
// Endian = little /
// Source file = C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\src\Sources\C\Component_C\wdog.c /
// Command line = "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\src\Sources\C\Component_C\wdog.c" /
// -D IAR -D TWR_K60N512 -lCN /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\bin\Flash\List\" -lB /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\bin\Flash\List\" -o /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\bin\Flash\Obj\" --no_cse /
// --no_unroll --no_inline --no_code_motion --no_tbaa /
// --no_clustering --no_scheduling --debug /
// --endian=little --cpu=Cortex-M4 -e --fpu=None /
// --dlib_config "C:\Program Files\IAR Systems\Embedded /
// Workbench 6.4_2\arm\INC\c\DLib_Config_Normal.h" -I /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\src\Sources\H\" -I /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\src\Sources\H\Component_H\" -I /
// "C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\src\Sources\H\Frame_H\" -Ol /
// --use_c++_inline /
// List file = C:\Users\305030973\Desktop\M4 /
// example\02_uart_loop\bin\Flash\List\wdog.s /
// /
// /
///////////////////////////////////////////////////////////////////////////////
NAME wdog
#define SHT_PROGBITS 0x1
PUBLIC wdog_disable
PUBLIC wdog_unlock
// C:\Users\305030973\Desktop\M4 example\02_uart_loop\src\Sources\C\Component_C\wdog.c
// 1 //-------------------------------------------------------------------------*
// 2 // 文件名: wdog.c *
// 3 // 说 明: 看门狗驱动程序文件 *
// 4 //-------------------------------------------------------------------------*
// 5
// 6 #include "wdog.h" //包含wdog.h头文件
// 7
// 8 //-------------------------------------------------------------------------*
// 9 //函数名: wdog_disable *
// 10 //功 能: 关闭看门狗模块 *
// 11 //参 数: 无 *
// 12 //返 回: 无 *
// 13 //说 明: 无 *
// 14 //-------------------------------------------------------------------------*
SECTION `.text`:CODE:NOROOT(1)
THUMB
// 15 void wdog_disable(void)
// 16 {
wdog_disable:
PUSH {R7,LR}
// 17 //给看门狗模块解锁,以便写寄存器
// 18 wdog_unlock();
BL wdog_unlock
// 19 //关闭看门狗
// 20 WDOG_STCTRLH &= ~WDOG_STCTRLH_WDOGEN_MASK;
LDR.N R0,??DataTable1 ;; 0x40052000
LDRH R0,[R0, #+0]
MOVW R1,#+65534
ANDS R0,R1,R0
LDR.N R1,??DataTable1 ;; 0x40052000
STRH R0,[R1, #+0]
// 21 }
POP {R0,PC} ;; return
// 22
// 23 //-------------------------------------------------------------------------*
// 24 //函数名: wdog_unlock *
// 25 //功 能: 看门狗解锁 *
// 26 //参 数: 无 *
// 27 //返 回: 无 *
// 28 //说 明: 无 *
// 29 //-------------------------------------------------------------------------*
SECTION `.text`:CODE:NOROOT(2)
THUMB
// 30 void wdog_unlock(void)
// 31 {
// 32 /* 注意: 不要单步调试此程序!!! ,否则会引起CPU复位*/
// 33 //关总中断
// 34 DisableInterrupts;
wdog_unlock:
CPSID i
// 35 //写解锁寄存器
// 36 WDOG_UNLOCK = 0xC520;
LDR.N R0,??DataTable1_1 ;; 0x4005200e
MOVW R1,#+50464
STRH R1,[R0, #+0]
// 37 //完成解锁
// 38 WDOG_UNLOCK = 0xD928;
LDR.N R0,??DataTable1_1 ;; 0x4005200e
MOVW R1,#+55592
STRH R1,[R0, #+0]
// 39 //开总中断
// 40 EnableInterrupts;
CPSIE i
// 41 }
BX LR ;; return
SECTION `.text`:CODE:NOROOT(2)
SECTION_TYPE SHT_PROGBITS, 0
DATA
??DataTable1:
DC32 0x40052000
SECTION `.text`:CODE:NOROOT(2)
SECTION_TYPE SHT_PROGBITS, 0
DATA
??DataTable1_1:
DC32 0x4005200e
SECTION `.iar_vfe_header`:DATA:REORDER:NOALLOC:NOROOT(2)
SECTION_TYPE SHT_PROGBITS, 0
DATA
DC32 0
SECTION __DLIB_PERTHREAD:DATA:REORDER:NOROOT(0)
SECTION_TYPE SHT_PROGBITS, 0
SECTION __DLIB_PERTHREAD_init:DATA:REORDER:NOROOT(0)
SECTION_TYPE SHT_PROGBITS, 0
END
//
// 52 bytes in section .text
//
// 52 bytes of CODE memory
//
//Errors: none
//Warnings: none
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -