Page 2
Lanner Electronics, Inc. The author and Lanner Electronics, Inc. have used their best efforts in preparing this manual. However, the author and Lanner Electronics, Inc.
LEC-7900D User Manual Safety Guidelines Follow these guidelines to ensure general safety: Keep the chassis area clear and dust-free during and after installation. Do not wear loose clothing or jewelry that could get caught in the chassis. Fasten your tie or scarf and roll up your sleeves.
Class A Notice for FCC Modifying the equipment without the authorization of Lanner Electronics, Inc. may result in the equipment no longer complying with FCC requirements for Class A digital devices. In that event, your right to use the equipment may be limited by FCC regulations, and you may be required to correct any interference to radio or television communications at your own expense.
LEC-7900D User Manual 2.2 LEC-7900D(LEB-7900D) System Board LEB-7900D is the system board bundled with the LEC-7900D Fanless Embedded System platform. The succeeding sections list LEB-7900D related jumper settings and connector pin assignments.
Page 13
LANB1 / LANB2 Description Pin No. Fast E-Net Giga Net MD0+ MD0- MD1+ MD2+ MD2- MD1- MD3+ MD3- RJ-45 DC1: DC Power Input +12VDC LED1 : POWER HDD LED POWER PSW1 : Power Switch PSW2 : Extern Power Buttom USB1 / 2 : USB Dual Connector PIN NO.
Page 14
COM1: Internal COM1 ( D-SUB9) Connector PIN NO. DESCRIPTION Data Carrier Detect ( DCDA # ) Receive Data ( RXDA ) Transmit Data ( TXDA ) Data Terminal Ready ( DTRA # ) Ground ( GND ) COM1 Data Set Ready ( DSRA # ) Request To Send ( RTSA # ) Clear To Send ( CTSA # ) Ring Indicator ( RIA # )
3 Hardware Installation Guide 3.1 LEC-7900D Embedded System LEC-7900D Embedded System Outlook 3.1.1 Begin Installation Unscrew 8 thumbscrews of the chassis bottom cover and than remove the chassis bottom cover. Note: For Safety reasons, please ensure that the power cord is disconnected before...
3.1.2 System Memory Installation Install the memory module into the socket and push it firmly down until it is fully seated. 3.1.3 SIM Card Installation 1. Remove the Rear panel in order to make room for SIM Card insertion. 2. SIM socket is located in the edge of main board (near to CF socket). 3.
3.1.4 CompactFlash Card Installation Carefully insert the CompactFlash card into the slot as shown in the illustration above. 3.1.5 HDD Installation 1. Secure with 4 screws from the side Note: Only support 2.5” HDD 2. Connect the Serial ATA/Power Cable to the HDD...
Page 22
3. Plug the Serial ATA cable to the SATA Connector (SATA 1) 4. Plug the Power cable to the 4-Pin Power Connector (CON1)
Page 23
5. Secure with 4 screws from the mother Board.
Page 25
3. Secure with 4 screws from the mother Board and 2 screws for the FAN fix. 4. Plug the Cooler cable to the FAN Connector (FAN1) as the below red circle...
3.1.7 Mini-PCIexpress Socket Installation 1. Mini-PCIexpress Socket for 3G mini-card module or WiFi mini-card module 3.1.8 System Complete 1. Replace the cover 2. Refasten the thumbscrews and than LEC-7900 Embedded System Installation Complete Note: Please load the optimized BIOS values.
Thus, the processor will be restarted as if a human operator had cycled the power Watch Dog Sample code: // Copyright (c) 2008 Lanner Electronic Inc. All rights reserved. // Watchdog control utility for LEB-7900 #include <stdio.h>...
Page 28
***************************************************** if( strcmp(argv[1], "-wr") == 0 ) if( argc != 3 ) help(); return -1; time = atoi(argv[2]); printf("Setting Watchdog timer for System Reset...\n"); set_watchdog(time); return 0; else help(); return -1; return 0; //;********************* set_watchdog ***************************************************** int set_watchdog(int time) int temp; temp = time;...
Page 29
return 0; //;********************* Exit SIO ***************************************************** int Exit_Configuation() outportb(INDEX_PORT, 0xaa); //Exit W83627THG Configuration return 0; //;********************* Init WDTO and SB GPIO ***************************************************** int Init_WDTO_GPIO_Interface() Enter_Configuation(); write_w83627UHG_reg(0x8, 0x30, 0x01); //;enable LDN8 write_w83627UHG_reg(0x8, 0xf5, 0x00); //;//;set second write_w83627UHG_reg(0x8, 0xf6, 0x00); //;LDN=8, CRF6, stop timer first write_w83627UHG_reg(0x8, 0xf7, 0x00);...
Introduction The Digitanl I/O on the rear panel is designed to provide the input and output operations for the system For sample DIO code, see Digt-IO folder under LEC-7900D Utility on the Driver and Manual CD. A DIO sample code: // Copyright (c) 2009 Lanner Electronic Inc.
Page 31
temp8 = (read_w83627UHG_reg(0x07, 0xE1) >> 4) & 0x01; //;Read GPI34=? delay(50); if(temp8 == 1) printf("Write OUT GPO30=1 then IN GPI34=%2X \n",temp8); goto gpio10; printf("GPIO set HI error\n"); gpio10: write_w83627UHG_reg(0x07, 0xE1, read_w83627UHG_reg(0x07, 0xE1) & ~0x01); //;Set GPIO30 to 0 delay(50); for(temp6=1; temp6<50; temp6++) temp8 = (read_w83627UHG_reg(0x07, 0xE1) >>...
Page 32
//;Set GPO32 to 1 delay(50); for(temp6=1; temp6<50; temp6++) temp8 = (read_w83627UHG_reg(0x07, 0xE1) >> 6) & 0x01; //;Read GPI36=? delay(50); if(temp8 == 1) printf("Write OUT GPO32=1 then IN GPI36=%2X \n",temp8); goto gpio30; printf("GPIO set HI error\n"); gpio30: write_w83627UHG_reg(0x07, 0xE1, read_w83627UHG_reg(0x07, 0xE1) & ~0x04); //;Set GPIO32 to 0 delay(50);...
Page 33
return 0; //;********************* Read SIO ***************************************************** int read_w83627UHG_reg(int LDN, int reg) outportb(INDEX_PORT, 0x07); //LDN register delay(1); outportb(DATA_PORT, LDN); delay(1); outportb(INDEX_PORT, reg); delay(1); return inportb(DATA_PORT); //;********************* Write SIO ***************************************************** int write_w83627UHG_reg(int LDN, int reg, int value) outportb(INDEX_PORT, 0x07); //LDN register delay(1); outportb(DATA_PORT, LDN);...
Page 34
0 = correct SuperIO int detect_sio(void) //check the SuperIO version if(read_w83627UHG_reg(0,CR20_REG)==W83627UHG_ID) return 0; else return 1;...
1. To obtain a RMA number, log on to the leRMA web interface at http://erma.lannerinc.com . Use you user name and password as supplied to you from your Lanner account manager. 2. Once you have logged on, follow the onscreen instructions to complete the RMA process.
RMA Service Request Form When requesting RMA service, please fill out the following form. Without this form enclosed, your RMA cannot be processed. Reasons to Return: □ Repair (Please include failure details) RMA No: □ Testing Purpose Company: Contact Person: Phone No.
Need help?
Do you have a question about the LEC-7900D and is the answer not in the manual?
Questions and answers