User Manual
Table Of Contents
- About this manual
- Chapter 1: Getting to know your Embedded Computer
- Chapter 2: Using your Embedded Computer
- Chapter 3: Upgrading your Embedded Computer
- 3.1 Removing the bottom cover
- 3.2 Replacing the bottom cover
- 3.3 Installing memory modules
- 3.4 Installing 2.5” storage device
- 3.5 Installing an M.2 SSD
- 3.6 Installing a nano SIM card
- 3.7 Installing a wireless card to the M.2 (E-key) slot
- 3.8 Installing an mPCIe / mSATA module
- 3.9 Installing antennas (optional)
- 3.10 Installing the PoE LAN module (on selected models)
- 3.11 Installing the VESA mount (optional)
- 3.12 Installing wall mount brackets
- 3.13 Installing DIN rail clips (optional)
- Chapter 4: Watchdog Timer
- Appendix
72
PE Series
2. Set WDT Time
Outportb(SIO_INDEX_PORT, 0x87); // Unlock SIO
Outportb(SIO_INDEX_PORT, 0x87); // Unlock SIO
Outportb(SIO_INDEX_PORT, 0x07);
Outportb(SIO_DATA_PORT, 0x08);
Outportb(SIO_INDEX_PORT, 0xF1);
Outportb(SIO_DATA_PORT, Time); // Write WDT time, value 1 to 255
Outportb(SIO_INDEX_PORT, 0xAA); // Lock SIO
3. Enable WDT
Outportb(SIO_INDEX_PORT, 0x87); // Unlock SIO
Outportb(SIO_INDEX_PORT, 0x87); // Unlock SIO
Outportb(SIO_INDEX_PORT, 0x07);
Outportb(SIO_DATA_PORT, 0x08);
Outportb(SIO_INDEX_PORT, 0x30);
val = Inportb(SIO_DATA_PORT) // Read current WDT status
val = val | 0x01; // Enable WDT Timer
Outportb(SIO_INDEX_PORT, 0x30);
Outportb(SIO_DATA_PORT, val); // Write back WDT status
Outportb(SIO_INDEX_PORT, 0xAA); // Lock SIO