IPPC-8151S Series 15" XGA TFT LCD Celeron M Fanless Industrial Panel PC with Stainless Steel Chassis User Manual...
Page 2
No part of this man- ual may be reproduced, copied, translated or transmitted in any form or by any means without the prior written permission of Advantech Co., Ltd. Information provided in this manual is intended to be accurate and reli- able.
Page 3
Product Warranty (2 years) Advantech warrants to you, the original purchaser, that each of its prod- ucts will be free from defects in materials and workmanship for two years from the date of purchase. This warranty does not apply to any products which have been repaired or...
Step 1. Visit the Advantech web site at www.advantech.com/support where you can find the latest information about the product. Step 2. Contact your distributor, sales representative, or Advantech's cus- tomer service center for technical support if you need additional assistance. Please have the following information ready before...
Page 5
Safety Instructions Read these safety instructions carefully. Keep this User's Manual for later reference. Disconnect this equipment from any AC outlet before cleaning. Use a damp cloth. Do not use liquid or spray detergents for clean- ing. For plug-in equipment, the power outlet socket must be located near the equipment and must be easily accessible.
Page 6
DO NOT LEAVE THIS EQUIPMENT IN AN ENVIRONMENT WHERE THE STORAGE TEMPERATURE MAY GO BELOW -40° C OR ABOVE 85° C. THIS COULD DAMAGE THE EQUIPMENT. THE EQUIPMENT SHOULD BE IN A CON- TROLLED ENVIRONMENT. Safety Precaution - Static Electricity Follow these simple precautions to protect yourself from harm and the products from damage.
Contents Chapter 1 General Information ........2 Introduction ............... 2 Specifications ..............3 1.2.1 General ................3 1.2.3 LCD Specifications ............4 I/O View................4 Dimensions................ 5 Chapter 2 System Setup............ 8 Stand Kit................9 VESA Arm Kit ..............9 Install Panel Mount ............
Chapter 1 General Information 1.1 Introduction The IPPC-8151S is designed with a fully sealed stainless steel enclosure and uses a special tapered & food safe rubber seal between the bezel and the touchscreen. This allows it to satisfy the stringent standards required in food processing, clinical, chemical or pharmaceutical laboratories.
1.2 Specifications 1.2.1 General Dimensions (W x H x D): Front Panel: 400 x 313.6 x 91.24 mm Control Box: 385.3 x 255.3 x 66/81.2 mm Cut out Dimensions: 388 x 301.5 mm Weight: 13 kg (28 lb) Power Supply: 85W Input Voltage: 10~30Vdc Output Voltage: +3.3V@8A,+5V@10A,+12V@4A,+5Vsb@0.75A, -12V@1A...
Page 15
System Setup Sections include: • Enclosure Kit • Desktop Kit • VESA Arm Kit • Panel Mounting • Installing I/O Cables • Installing a 2.5" SATA HDD • Installing a PCI Expansion Card • Installing a Power Connector...
Chapter 2 System Setup 2.1 Enclosure Kit With IPPC-8151S enclosure kit (P/N: IPPC-8151S-EMKE), IPPC-8151S can provide all-around IP66 waterproof and dustproof protection. Please follow the instruction below to make sure IP66 protection. Put IPPC-8151S into the enclosure kit Use the fixture to make sure IPPC-8151S is closed tightly with the enclosure kit.
2.2 Stand Kit With IPPC-8151S stand kit (P/N: IPPC-8151S-SMKE), IPPC-8151S can stand on the desk, install on the wall or ceiling to meet the environment requirement. The stand kit also supports 360 degree C adjustment for the different view angle. The instruction below shows how to install and use the stand kit.
2.4 Install Panel Mount Take the mounting brackets out of IPPC-8151S accessory box. Attach the four mounting brackets by inserting the screws into the keyhole slots on the cover of the monitor. Use the screws to secure the brackets to the cover. Tighten the screws to secure the monitor to the back panel.
2.7 Installing a PCI Expansion Card Unscrew the rear cover and open it. Remove the the slot bracket. Insert the add-on card, and close the rear cover 2.8 Installing a Power Connector Use the tool from the accessory box Press down to open connector hole and insert power wire Chapter 2...
Chapter 4 Software Configuration 4.1 Overview In IPPC-8151S , Advantech provides a CD-ROM with utilities and driv- ers included. Please install the Chipset INF driver, VGA graphics driver, LAN driver, audio driver , Touch Screen driver , Watchdog Timer (WDT) driver sequentially.
Page 29
Audio Driver Path: \ audio\ Available for the OS’s below, • Microsoft Windows 2000 • Microsoft Windows XP Touchscreen Driver Path: \Touchscreen Driver\DMC 9000 (Combo) Available for the OS’s below, • Microsoft Windows 2000 • Microsoft Windows XP and more, on the driver CD-ROM. WatchDog Timer Driver Path: \WDT\ Available for the OS’s below:...
4.2.1 Touchscreen Gesture Introduction Through the touchscreen gesture, the system can disable/enable touch screen functionality, execute hotkeys, execute applications or power on/ off the system. Please refer to 4.2.2 for more details. 4.2.2 Touch Gesture Utility Enabling Touch Gesture: There are two ways to enable touch gesture utility. One is to click PM icon in right side of task bar and select gesture enable.
Page 31
Touch Gesture Utility Setup Please go to PenMount control panel and click gesture setting button. A. Enable / Disable Touch Gesture B. Gesture Sensing Time The time is to complete one gesture. Value can be set from 200ms to 2500ms. C.
Page 32
Gesture Default Setting Page Up Zoom In ([Pad] +) Page Down Zoom Out ([Pad] -) Backward Rotate Counter (Left Arrow) Clockwised (Ctrl + L) Forward Rotate Clockwised (Right Arrow) (Ctrl + K) Copy Open On-Screen (Ctrl + C) Keyboard Paste Save Document (Ctrl + V) (Ctrl + S)
Appendix A WDT Programming A.1 Overview The IPPC-8151S cards’ watchdog timer can be used to monitor system software operation and take corrective action if the software fails to func- tion after the programmed period. This section describes the operation of the watchdog timer, and how to program it.
A.2 Watchdog Timer Programming The I/O port address of the watchdog timer is 2E(hex) and 2F(hex), 2E (hex) is the address port. 2F(hex) is the data port. You must first assign the address of register by writing address value into address port 2E(hex), then write/read data to/from the assigned register through data port 2F (hex).
A.3 Example Programs 1. Enable watchdog timer and set 10 seconds of timeout interval ;---------------------------- ; enter configuration state ;---------------------------- dx, 2Eh al, 55h dx, al ;---------------------------- ; select watchdog registers ;---------------------------- al, 7 dx, 2Eh dx, al dx, 2Fh al, 0ah dx, al ;----------------------------...
Page 37
dx, 2Eh dx, al dx, 2Fh al, dx ; now, AX contains the base address bx, ax ; save base address in BX ;---------------------------- ; exit configuration state ;---------------------------- dx, 2Eh al, 0AAh dx, al ;---------------------------- ; select WDT pin ;---------------------------- dx, bx dx, 47h...
Page 38
;---------------------------- ; select WDT timeout value ;---------------------------- dx, bx dx, 66h al, 10 ; 10 seconds dx, al 2. Enable watchdog timer and set 5 minutes of timeout interval ;---------------------------- ; enter configuration state ;---------------------------- dx, 2Eh al, 55h dx, al ;---------------------------- ;...
Page 39
dx, 2Eh dx, al dx, 2Fh al, dx ah, al al, 61h dx, 2Eh dx, al dx, 2Fh al, dx ; now, AX contains the base address bx, ax ; save base address in BX ;---------------------------- ; exit configuration state ;---------------------------- dx, 2Eh al, 0AAh...
Page 40
;---------------------------- ; select WDT timeout unit ;---------------------------- dx, bx dx, 65h al, 00h ; minute dx, al ;---------------------------- ; select WDT timeout value ;---------------------------- dx, bx dx, 66h al, 5 ; 5 minutes dx, al 3. Enable watchdog timer to be reset upon mouse interrupt (Note: WDT timeout value must be set before this function can work) ;---------------------------- ;...
Page 41
dx, al dx, 2Fh al, 0ah dx, al ;---------------------------- ; get base address ;---------------------------- al, 60h dx, 2Eh dx, al dx, 2Fh al, dx al, 8 al, 61h dx, 2Eh dx, al dx, 2Fh al, dx ; now, AX contains the base address bx, ax ;...
Page 42
;---------------------------- ; select WDT configuration ;---------------------------- dx, bx dx, 67h al, dx al, 04h ; reset upon mouse interrupt dx, al 4. Enable watchdog timer to be reset upon keyboard interrupt (Note: WDT timeout value must be set before this function can work) ;---------------------------- ;...
Page 43
;---------------------------- al, 60h dx, 2Eh dx, al dx, 2Fh al, dx al, 8 al, 61h dx, 2Eh dx, al dx, 2Fh al, dx ; now, AX contains the base address bx, ax ; save base address in BX ;---------------------------- ; exit configuration state ;---------------------------- dx, 2Eh al, 0AAh...
Page 44
al, 02h ; reset upon keyboard interrupt dx, al 5. Force timeout (Note: WDT timeout value must be set before this function can work) ;---------------------------- ; enter configuration state ;---------------------------- dx, 2Eh al, 55h dx, al ;---------------------------- ; select watchdog registers ;---------------------------- al, 7 dx, 2Eh...
Page 45
al, 8 al, 61h dx, 2Eh dx, al dx, 2Fh al, dx ; now, AX contains the base address bx, ax ; save base address in BX ;---------------------------- ; exit configuration state ;---------------------------- dx, 2Eh al, 0AAh dx, al ;---------------------------- ;...
Need help?
Do you have a question about the IPPC-8151S Series and is the answer not in the manual?
Questions and answers