Watchdog Timer Sample Code - Advantech MIO-2270 User Manual

Amd g-series soc gx-210ja/gx-415ga pico-itx sbc, ddr 3/3l, 18-bit lvds, vga or hdmi, 1gbe, half-size mini pcie, 4 usb, 2 com, smbus, msata, and mioe
Hide thumbs Also See for MIO-2270:
Table of Contents

Advertisement

B.1

Watchdog Timer Sample Code

Watchdog Function
The SCH3114 runtime base I/O address is 680h.
Set the Watchdog time value to offset at 66h.
If the set value is "0", the Watchdog function is disabled.
Superio_GPIO_Port = 680h
mov dx,Superio_GPIO_Port + 66h
mov al,00h
out dx,al
.model small
.486p
.stack 256
.data
SCH3114_IO EQU 680h
.code
org 100h
.STARTup
;====================================================
;47H
;enable WDT function bit [0]=0Ch
;====================================================
mov dx,SCH3114_IO + 47h
mov al,0Ch
out dx,al
;====================================================
;65H
;bit [1:0]=Reserved
;bit [6:2]Reserve=00000
;bit [7] WDT time-out Value Units Select
;Minutes=0 (default) Seconds=1
;====================================================
mov dx,SCH3114_IO + 65h ;
mov al,080h
out dx,al
;====================================================
;66H
;WDT timer time-out value
;bit[7:0]=0~255
;====================================================
mov dx,SCH3114_IO + 66h
mov al,01h
out dx,al
;====================================================
;bit[0] status bit R/W
;WD timeout occurred =1
MIO-2270 User Manual
76

Advertisement

Table of Contents
loading

Table of Contents