ARK-1122 User Manual
50
A.1
Watchdog Timer Sample Code
Watchdog function:
;The SCH3114 Runtime base I/O address is A00h
;Setting WatchDog time value location at offset 66h
;If set value "0", it is mean disable WatchDog function.
Superio_GPIO_Port = A00h
mov dx,Superio_GPI 66h
mov al,00h
out dx,al
.model small
.486p
.stack 256
.data
SCH3114_IO EQU A00h
.code
org 100h
.STARTup
;====================================================
;47H
;enable WDT function bit [0]=0Ch
;====================================================
mov dx,SCH3 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,SCH3 65h ;
mov al,080h
out dx,al
;====================================================
;66H
;WDT timer time-out value
;bit[7:0]=0~255
;====================================================
mov dx,SCH3 66h
mov al,01h
out dx,al
;====================================================
;bit[0] status bit R/W
;WD timeout occurred =1
Содержание ARK-1122
Страница 1: ...User Manual ARK 1122 Fanless Embedded Box PC...
Страница 8: ...ARK 1122 User Manual viii...
Страница 12: ...ARK 1122 User Manual xii...
Страница 13: ...Chapter 1 1 General Introduction This chapter gives background information on ARK 1122 series...
Страница 18: ...ARK 1122 User Manual 6 1 5 3 ARK 1122F Dimensions Figure 1 3 ARK 1122F mechanical dimension drawing...
Страница 19: ...Chapter 2 2 Hardware installation This chapter introduces external IO and the installation of ARK 1122 Hardware...
Страница 22: ...ARK 1122 User Manual 10 ARK 1122C Figure 2 3 ARK 1122C front view Figure 2 4 ARK 1122C rear view...
Страница 36: ...ARK 1122 User Manual 24 4 Connect SATA signal and power cable to the 2 5 SATA HDD...
Страница 41: ...Chapter 3 3 BIOS Settings This chapter introduces how to set BIOS configuration data...
Страница 54: ...ARK 1122 User Manual 42 3 2 3 Chipset Figure 3 13 Chipset Setup 3 2 3 1 Host Bridge Figure 3 14 Chipset Setup...
Страница 60: ...ARK 1122 User Manual 48...
Страница 61: ...Appendix A A WDT Sample Code...
Страница 64: ...ARK 1122 User Manual 52...