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 an SD card
- 3.8 Installing a wireless card to the M.2 slot
- 3.9 Installing an mPCIe / mSATA module
- 3.10 Installing the antennas (optional)
- 3.11 Installing the USB 2.0 module (on selected models)
- 3.12 Installing the Serial port module (on selected models)
- 3.13 Installing the PoE LAN module (on selected models)
- 3.14 Installing the VESA mount (optional)
- 3.15 Installing the wall mount
- 3.16 Installing DIN rail clips (optional)
- Chapter 4: Using the software
- Chapter 5: Watchdog Timer
- Appendix
84
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