TS-206 User Manual
86
A.1
Watchdog Timer Sample Code
EC_Command_Port = 0x29Ah
EC_Data_Port = 0x299h
Write EC HW ram = 0x89
Watch dog event flag = 0x57
Watchdog reset delay time = 0x5E
Reset event = 0x04
Start WDT function = 0x28
====================================================
.model small
.486p
.stack 256
.data
.code
org 100h
.STARTup
mov dx, EC_Command_Port
mov al,89h ; Write EC HW ram. out dx,al
mov dx, EC_Data_Port
mov al, 5Fh ; Watchdog reset delay time low byte (5Eh is high byte) index.
out dx,al
mov dx, EC_Data_Port
mov al, 30h ;Set 3 seconds delay time. out dx,al
mov dx, EC_Command_Port
mov al,89h ; Write EC HW ram. out dx,al
mov dx, EC_ EC_Data_Port
mov al, 57h ; Watch dog event flag. out dx,al
mov dx, EC_Data_Port
mov al, 04h ; Reset event. out dx,al
mov dx, EC_Command_Port
mov al,28h ; start WDT function. out dx,al
Содержание TS-206
Страница 1: ...User Manual TS 206 In Vehicle Smart Fleet Management Computer ...
Страница 13: ...Chapter 1 1 General Introduction This chapter gives background information on TS 206 series ...
Страница 17: ...5 TS 206 User Manual Chapter 1 General Introduction 1 4 Dimensions Figure 1 1 TS 206 dimensions ...
Страница 18: ...TS 206 User Manual 6 ...
Страница 19: ...2 Hardware Installation This chapter introduces the instal lation of TS 206 Hardware Chapter 2 ...
Страница 22: ...TS 206 User Manual 10 2 Remove 2 5 drive bay and Insert full size mSATA storage in the place marked ...
Страница 24: ...TS 206 User Manual 12 2 Remove the 2 5 drive bay and Insert the half size WLAN module in the place marked ...
Страница 26: ...TS 206 User Manual 14 ...
Страница 39: ...Chapter 4 4 Pin Assignments This chapter explains Pin Assign ments of TS 206 Series ...
Страница 55: ...Chapter 5 5 BIOS settings This chapter introduces how to set BIOS configuration data ...
Страница 96: ...ASMB 816 User Manual 84 ...
Страница 97: ...Appendix A A A WDT Sample Code ...
Страница 99: ...87 TS 206 User Manual Appendix A A WDT Sample Code exit ...