Instruction Manual
Table Of Contents
- Chapter 1 Introduction
- Chapter 2 Procedures of Assembly/Disassembly
- Chapter 3 Board Introduction
- Chapter 4 H/W Information
- Chapter 5 BIOS Settings
- SATA Configuration
- W83627DHG Super IO Configuration
- Serial Port Console Redirection
- Intel(R) 82576 Gigabit Dual Port Network Connection
- N/A
- Configure Gigabit Ethernet device parameters
- Intel(R) 82574L Gigabit Network Connection
- N/A
- Configure Gigabit Ethernet device parameters
- SATA Mode Selection
- Port 1
- Port 2
- CF card
- COM1 Configuration
- COM2 Configuration
- LAN by Pass Function
- Change Settings
- Serial Port
- Change Settings
- Device Mode
- Console Redirection
- Console Redirection Settings
- EMS
- EMS Settings
- Terminal Type
- Bits per second
- Data Bits
- Parity
- Stop Bits
- Flow Control
- NIC Configuration
- Blink LEDs (range 0-1
- Link Status
- NIC Configuration
- Blink LEDs (range 0-1
- Link Status
- SYS temperature
- CPU temperature
- CPU Fan Speed
- VCORE
- LAN1 ~ 8
- USB Configuration
- xHCI Mode
- EHCI1
- Setup Prompt Timeout
- Boot up NumLock State
- Boot Logo
- PXE Function

4. i32 displayLcm( bool mode )
Description: Show the text on the LCM screen or eliminate the text on the LCM screen. The
content of the text is not altered.
mode = true, show the text.
mode = false, eliminate the text.
Return value: 0 after the text has been shown or eliminated.
5. i32 getKeyLcm( void )
Description: Scan the LCM and return the identification of the pressed direction key.
Return value: ‘UP’ if the ‘up’ direction key is pressed.
‘RIGHT’ if the ‘right’ direction key is pressed.
‘LEFT’ if the ‘left’ direction key is pressed.
‘DOWN’ if the ‘down’ direction key is pressed.
‘NONE’ if none of the keys is pressed.
6. i32 getPositionLcm( i32 *row, i32 *column )
Description: Get the position of the cursor and write the coordinate to the memory pointed at by
arguments ‘row’ and ‘column’.
Return value: 0 if the request for the coordinate has been served.
7. i32 setPositionLcm( i32 row, i32 column )
Description: Set the position of the cursor according to the arguments ‘row’ and ‘column’.
Return value: 0 after the position has been set.
-1 if the argument ‘row’ or ‘column’ meets any of the following
conditions:
(1) row is not 0.
(2) row is not 1.
(3) column is less than 0.
(4) column is greater than 15.
8. i32 showLcm( i32 length, u8 *info )
Description: Start from the current position of the cursor; print the text pointed at by ‘info’ to the
LCM screen. The number of characters to be printed is at most ‘length’. If the remaining columns
available for printing the text is less than ‘length’, the number of the characters to be printed is:
16 – ( column number of the current position of the cursor ).
Return value: 0 after the text is printed.
70