Unitech MR350MKII manual O Function Calls, LCD Display INT 10H, Clear screen, Set cursor type

Page 21

Chapter 3. I/O Function Calls

3.I/O Function Calls

The operating system of the MR350MKII supports BIOS/DOS Function to control LCD display, Keyboard input, Proximity/Barcode/Magnetic stripe input, Buzzer, Security alarm, Photo-coupler input, Relay output, and serial port input/output of RS232 and RS485. The whole C sample program are gathered into library file "350LIB.C" on Utility Diskette.

3.1.LCD Display INT 10H

00

Clear screen

 

 

Entry Parameters:

AH = 0

 

Returned Values:

None

void TL_clrscr()

{

regs.h.ah= 0; int86(0x10,®s,®s);

 

}

 

 

01

Set cursor type

 

 

 

Entry Parameters:

AH = 1

 

 

 

AL = 1

;set Block cursor

 

 

0

;set Underscore cursor

 

 

3

;set cursor off

 

Returned Values:

None

 

void TL_cursor_type(int status)

{

regs.h.ah = 1;

regs.h.al = (unsigned char)status; int86(0x10,®s,®s);

 

}

 

 

02

Set cursor position

 

 

 

Entry Parameters:

AH = 2

 

 

 

DH = 0 ~ 1

;row

 

 

DL = 0 ~ 15

;column

 

Returned Values:

None

 

3-20

Image 21
Contents September 2001 Programming Reference ManualIntroduction Table of Contents RS-485 port serial I/O using General Control Commands Error! Bookmark not defined Application Programming Interface System KernelDisplay Subsystem Keypad SubsystemMulti-point mode Point to point modeCommunication Subsystem Real time clock subsystemBar code / Magnetic stripe / Proximity / ICC Download Program in Point-to-point mode? MS-KermitSEND file name ? MS-KermitGET file nameCOM1-4? Download Program in Multi-point modeMR350MKII Then, the screen will displaySet beepers volume Page Data Structure DevconfigDevice Control Table Type DefinitionBarcodeconfig Barcode Control TableType Definition Communication Control Table of Host port ComconfigByte Word Terminal Control Table available for host port only Page Page LCD Display INT 10H O Function CallsClear screen Set cursor type1A Enable/disable LCD Backlight INT 21H Get cursor positionScroll screen 1C Select COM1 or COM2 as the host port Communication Environment Setup1C Set serial port flow control Set host port protocolXON/XOFF CTS/RTS1C Set polling timeout duration 1C Setup multi-point addressSet COM1 port as RS485 or modem Host Port for Multi-point Protocol I/O INT21HRead host port Output dataCheck if Busy-port RS-232 port serial I/O using INT 34H Serial I/O for RS-232 and RS-485Input data Disable RS-232 port Set Communication parametersBIT # Page Set RTS signal of RS-232 port Read CTS signal of RS-232 portRS-485 port serial I/O using INT 33H Disable RS-485 port for serial I/O Enable RS-485 port for serial I/OInt860x33,s,s Open RS-485 multi-bus to send out data Close RS-485 multi-bus release RS-485 bus Set LED indicator ON/OFF Relay Output / Digit Input / Buzzer / LED IndicatorRead Photo Coupler Level state INT 08H LOWOpen Activate/Deactivate Relay ports INT 09HClose 1A Buzzer On/Off1A Set buzzer volume Alarm On/OffGet Security state 21H Internal/ External reader Port INT 21H Enable/Disable External reader portCodabar Read Internal portEnable/disable Internal reader 1F Get Decoder status of Wiegand Format Proximity reader 1A Check lithium battery level 1F Enable the decoding of a barcode symbologyEAN/UPC Miscellaneous INT 21H1B Get Address ID of the terminal Set interrupt vectorGet interrupt vector 1E Change the Keyboard map Get free disk clusterAscii code vs. scan code cross reference table numeric mode Ascii code corresponded to scan code in Numeric modeAscii code corresponded to scan code in Alphabetic mode DOS ManagerWrite stdout Read stdaux COM2 RS-232 port Write stdaux COM2 RS-232 portRead / Write stdin or return 0 if none is ready Write character string to stdout Read stdin wait if no keyKeyhit check 0A Keyboard buffer inputDate/Time 2A Get System date2C Get System clock Set System date2D Set System clock File Manager3C Create or truncate file Close file 3D Open fileWrite file 3F Read fileMove file pointer Delete fileRename a file Get file attributeModify allocated block Free allocated memoryThis page is blank General Control Commands Host ESC CommandsExecute ESC X filename Abort ESC aExecute Flash ROM program ESC X/ROM filename Directory ESC DPassword ESC P password Autoboot ESC O program nameDisable UPS battery ESC F Get RAM size ESC GConfiguration Commands Device Configuration ESC Barcode symbology Configuration ESC BDate/Time Configuration ESC M Download ESC L filename File Transfer CommandsUpload ESC U filename Multipoint ProtocolCS1 CMDCS2 STX ESC L a . E X E CS1 CS2 AddrHost Transmissions Terminal TransmissionsProtocol Operation Commands ESC 0 Application dataSTX ESC ESC a Soft Reset, Restart, or Abort ESC 9 Send diagnostic test dataESC B Enable/disable the decoding of barcode symbologies ESC C Write communication configuration table to MR350MKIIESC D Read directory of RAM disk to host ESC F Disable UPS battery to supply powerESC D/ROM Read directory of Flash ROM to host ESC E Erase a file from the MR350MKII directoryESC G/ROM Get MR350MKIIs Flash ROM size ESC H Hard Reset and initiate power on testESC I Get filename of current executing program ESC J Check if file existed or notESC K Set keyboard locking ESC N Set Buzzer VolumeESC L Transfer file to MR350MKII ESC M Write date and time to MR350MKIIESC T Write terminal configuration table to MR350MKII ESC P Set supervisor password maxi charactersESC V Write device configuration table to MR350MKII ESC O/ROM Set auto-execution program on ROMESC v Get Terminal ID and version no ESC Commands Added for MV1100 Fingerprint ModuleESC X Start program execution ESC X Start program execution on ROMSTX ESC $D CS1 CS2 Addr STX ESC $D Result CS1 CS2 ETXNAK Result ESC $E Erase Template STX ESC $F Result QUALITY, Content CS1 CS2 ETX NAKSTX ESC $E Result CS1 CS2 ETX NAK ESC $F Enroll and Store Template on MR350 MkiiESC $H Verify Template ESC $G Enroll and Store Template on MV1100ESC $L Download Template ESC $I Verify IDESC $S Get Globe Threshold ESC $S Set Globe ThresholdESC $V Get Version ESC $U Upload TemplatePage Programming MR350 Mkii How to programning ?Programming by C/C++ Programming by JobGen PROProgramming communication program Contains of the Demo Disk Character Classification and Conversion Buffer ManipulationData Conversion File HandlingPorcess Control exit Searching and Sorting Memory AllocationString Manipulation MS-DOS Interface