EPSON FISCAL DRIVER SPECIFICATION

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

Page 2/24

1

INTRODUCTION ............................................................................................................................................................................... 4

2

LIBRARIES ....................................................................................................................................................................................... 5 2.1 2.2 2.3

3

FOR WINDOWS (32 AND 64 BITS)..................................................................................................................................................... 5 FOR LINUX (32 AND 64 BITS) ........................................................................................................................................................... 5 FOR ANDROID ................................................................................................................................................................................ 5 INSTALLATION ................................................................................................................................................................................ 6

3.1 3.2 3.3

LINUX ............................................................................................................................................................................................ 6 WINDOWS ...................................................................................................................................................................................... 6 ANDROID ....................................................................................................................................................................................... 6

4

CODE ERROR .................................................................................................................................................................................. 7

5

PROGRAMMING INTERFACE ......................................................................................................................................................... 8 5.1

5.2

PROPERTIES .................................................................................................................................................................................. 8 5.1.1 ComPort ............................................................................................................................................................................ 8 5.1.2

BaudRate........................................................................................................................................................................... 8

5.1.3

State .................................................................................................................................................................................. 8

5.1.4

LastError ............................................................................................................................................................................ 9

5.1.5

FiscalStatus ....................................................................................................................................................................... 9

5.1.6

PrinterStatus ...................................................................................................................................................................... 9

5.1.7

ReturnCode ..................................................................................................................................................................... 10

5.1.8

ProtocolType ................................................................................................................................................................... 10

5.1.9

ExtraFieldsCount ............................................................................................................................................................. 10

5.1.10

APIVersion....................................................................................................................................................................... 10

5.1.11

SentFrame ....................................................................................................................................................................... 11

5.1.12

ReceivedFrame ............................................................................................................................................................... 11

METHODS .................................................................................................................................................................................... 12 5.2.1 setComPort...................................................................................................................................................................... 12 5.2.2

getComPort ..................................................................................................................................................................... 12

5.2.3

setBaudRate .................................................................................................................................................................... 13

5.2.4

getBaudRate .................................................................................................................................................................... 13

5.2.5

getState ........................................................................................................................................................................... 14

5.2.6

getLastError ..................................................................................................................................................................... 14

5.2.7

getPrinterStatus ............................................................................................................................................................... 15

5.2.8

getFiscalStatus ................................................................................................................................................................ 15

5.2.9

getReturnCode ................................................................................................................................................................ 16

5.2.10

OpenPort ......................................................................................................................................................................... 16

5.2.11

ClosePort ......................................................................................................................................................................... 17

5.2.12

Purge ............................................................................................................................................................................... 17

5.2.13

AddDataField ................................................................................................................................................................... 18

5.2.14

SendCommand................................................................................................................................................................ 18

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

6

25/10/2016

Page 3/24

5.2.15

GetExtraField................................................................................................................................................................... 19

5.2.16

GetSentFrame ................................................................................................................................................................. 20

5.2.17

GetReceivedFrame ......................................................................................................................................................... 20

5.2.18

GetAPIVersion ................................................................................................................................................................. 21

5.2.19

getPermission .................................................................................................................................................................. 22

5.2.20

getUSBHostPort .............................................................................................................................................................. 22

5.2.21

setProtocolType ............................................................................................................................................................... 23

5.2.22

getProtocolType .............................................................................................................................................................. 23

EXAMPLES..................................................................................................................................................................................... 24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

1

Introduction

This document describes the properties and methods of the EpsonFiscalDriver.

25/10/2016

Page 4/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

2

Libraries

2.1

For Windows (32 and 64 bits) 

EpsonFiscalDriver.dll – Dynamic Link Library (DLL)



EpsonFiscalDriver.lib – Static Library (LIB)



comEpsonFiscalDriver.ocx – Component Object Model (COM)

2.2

For Linux (32 and 64 bits) 

libEpsonFiscalDriver.a – Static lib (LIB)



libEpsonFiscalDriver.so – Dynamic lib (LIB)

2.3

For Android 

EpsonFiscalDriver.aar – Android archive library(aar)

25/10/2016

Page 5/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

3 3.1

25/10/2016

Page 6/24

Installation Linux Static Linking – Just link the lib (.a file) during the application building process. Dynamic Linking – Link and distribute the lib (.so file) with your executable file.

3.2

Windows Install the drivers package running EpsonFiscalDriver_01.09.00.exe. After that, OCX can be referenced and used by the application. The dynamic/static libraries (DLL and LIB) are used by the application in the same way as Linux ones. Note that, in all cases, EpsonFiscalDriver_01.09.00.exe should also be installed in the PC where the application is executed.

3.3

Android In your project add EpsonFiscalDriver.aar as dependencies and after that can be imported and used by the application. This is a mandatory import: import epson.epsonfiscaldriver.EpsonFiscalDriver.

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

4

25/10/2016

Code Error Error Code (dec)

Description

0

Success

1

Port in use

2

Invalid port number

3

Port already open

4

Port already close

5

Initialization error

6

Port closed

7

Maximum length reached

8

Invalid data field

9

Operation in progress

10

Write error

11

Timeout Error

12

Byte 0x15 received

13

Invalid index

Page 7/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5

Programming Interface

5.1

Properties The properties are only available for COM (.ocx) library.

5.1.1

ComPort Defines the communication port where the printer is connected.

5.1.1.1

Access Read and Write.

5.1.1.2

Value type Numeric.

5.1.1.3

Notes The value of the port can be: 0=USB, 1=Com1, 2=Com2… .

5.1.2

BaudRate Defines the communication speed.

5.1.2.1

Access Read and Write.

5.1.2.2

Value type Numeric.

5.1.2.3

Notes The value of the baudrate can be: 9600(default), 19200, 38400, 57600 and 115200.

5.1.3

State Gets the communication state.

5.1.3.1

Access Read.

5.1.3.2

Value type Numeric.

25/10/2016

Page 8/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.1.3.3

Notes Close=0, Idle=1, Busy=2

5.1.4

LastError Gets the last communication error.

5.1.4.1

Access Read.

5.1.4.2

Value type Numeric.

5.1.4.3

Notes See the error codes table.

5.1.5

FiscalStatus Gets the last fiscal status.

5.1.5.1

Access Read.

5.1.5.2

Value type Numeric.

5.1.5.3

Notes Only the least significant 16 bits are valid.

5.1.6

PrinterStatus Get the last printer status.

5.1.6.1

Access Read.

5.1.6.2

Value type Numeric.

5.1.6.3

Notes Only the least significant 16 bits are valid.

25/10/2016

Page 9/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.1.7

ReturnCode Get the last command’s return code.

5.1.7.1

Access Read.

5.1.7.2

Value type Numeric.

5.1.7.3

Notes Only the least significant 16 bits are valid.

5.1.8

ProtocolType Defines the protocol type(compatible or extended).

5.1.8.1

Access Read and Write.

5.1.8.2

Value type Numeric.

5.1.8.3

Notes Compatible protocol use value 0. Extended protocol use value 1(default).

5.1.9

ExtraFieldsCount Gets the command’s extra fields number.

5.1.9.1

Access Read

5.1.9.2

Value type Numeric.

5.1.9.3

Notes Nothing.

5.1.10 APIVersion Gets the API version.

25/10/2016

Page 10/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.1.10.1 Access Read.

5.1.10.2 Value type String

5.1.10.3 Notes Version format is XX.YY.ZZ

5.1.11 SentFrame Gets the last frame (protocol frame) that was sent to the printer. 5.1.11.1 Access Read.

5.1.11.2 Value type String

5.1.11.3 Notes Nothing.

5.1.12 ReceivedFrame Gets the last frame (protocol frame) received from the printer. 5.1.12.1 Access Read.

5.1.12.2 Value type String

5.1.12.3 Notes Nothing.

25/10/2016

Page 11/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2

25/10/2016

Methods

5.2.1

setComPort This method configures the port number to be used. It is not available in the COM (.ocx) library.

Prototype: void setComPort( int Port ) Inputs: Variable

Type

Value

Description 0 – USB

Port

int

Numeric

1 – COM1 2 – COM2 x - COMx

Outputs: Nothing. Returns: Nothing. Prerrequisites: None. 5.2.2

getComPort This method opens the communication port. It is not available in the COM (.ocx) library.

Prototype: int getComPort( void ) Inputs: Nothing. Outputs: Nothing. Returns: Port number. Prerrequisites: None.

Page 12/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2.3

25/10/2016

Page 13/24

setBaudRate This method configures the communication baudrate. It is not available in the COM (.ocx) library.

Prototype: void setBaudRate( int BaudRate ) Inputs: Variable

Type

Value

BaudRate

int

numeric

Description 9600 (default), 19200, 38400, 57600, 115200

Outputs: Nothing. Returns: Nothing. Prerrequisites: None. 5.2.4

getBaudRate This method returns the value of the communication baudrate. It is not available in the COM (.ocx) driver.

Prototype: int getBaudRate( void ) Inputs: Nothing. Outputs: Nothing. Returns: Communication baudrate. Prerrequisites: None.

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2.5

25/10/2016

getState This method returns the communication state. It is not available in the COM (.ocx) library.

Prototype: int getState( void ) Inputs: Nothing. Outputs: Nothing. Returns: Communication state. Close=0, Idle=1, Busy=2 Prerrequisites: None. 5.2.6

getLastError This method returns the last communication error. It is not available in the COM (.ocx) library.

Prototype: int getLastError( void ) Inputs: Nothing. Outputs: Nothing. Returns: Last communication error. See the error table. Prerrequisites: None.

Page 14/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2.7

25/10/2016

getPrinterStatus This method returns the last printer status. It is not available in the COM (.ocx) library.

Prototype: int getPrinterStatus( void ) Inputs: Nothing. Outputs: Nothing. Returns: Only the least significant 16 bits are valid. Prerrequisites: None. 5.2.8

getFiscalStatus This method returns the last fiscal status. It is not available in the COM (.ocx) library.

Prototype: int getFiscalStatus( void ) Inputs: Nothing. Outputs: Nothing. Returns: Only the least significant 16 bits are valid Prerrequisites: None.

Page 15/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2.9

25/10/2016

getReturnCode This method returns the last command’s return code. It is not available in the COM (.ocx) library.

Prototype: int getReturnCode( void ) Inputs: Nothing. Outputs: Nothing. Returns: Only the least significant 16 bits are valid Prerrequisites: None. 5.2.10 OpenPort This method opens the communication port. Prototype: void OpenPort( void ) Inputs: Nothing. Outputs: Nothing. Returns: Nothing. Prerrequisites: Port must be closed Communication port and baudrate must be previously issued.

Page 16/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

5.2.11 ClosePort This method closes the communication port. Prototype: void ClosePort( void ) Inputs: Nothing. Outputs: Nothing. Returns: Nothing. Prerrequisites: Port must be opened. 5.2.12 Purge This method cleans output buffer. Prototype: void Purge( void ) Inputs: Nothing. Outputs: Nothing. Returns: Nothing. Prerrequisites: None.

25/10/2016

Page 17/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

5.2.13 AddDataField This method adds a new field (binary data) for the next command. Prototype: void AddDataField( char *in_buffer, int in_buffer_length ) Inputs: Variable

Type

Value

in_buffer

char

Binary

in_buffer_length

int

Numeric

. Outputs: Nothing. Returns: Nothing. Prerrequisites: None. 5.2.14 SendCommand This method sends a command to the printer. Prototype: void SendCommand( void ) Inputs: Nothing. Outputs: Nothing. Returns: Nothing. Prerrequisites: None.

Description Max size buffer is 8192 Max length is 82192

Page 18/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

Page 19/24

5.2.15 GetExtraField This method returns one of the last command’s extra fields. Prototype: DLL/LIB: void GetExtraField( int field_number, char* output_buffer, int output_buffer_length, int* output_buffer_final_length) COM: String GetExtraField( int field_number) Inputs DLL/LIB: Variável

Tipo

Conteúdo

field_number

int

Numeric

output_buffer_length

int

Numeric

Variável

Tipo

Conteúdo

field_number

int

Numeric

Descrição Max length is 51200

Inputs COM: Descrição

Outputs DLL/LIB: Variável

Tipo

Conteúdo

output_buffer

char

Binary

int

Numeric

output_buffer_final_length Returns DLL/LIB: Nothing. COM: String is OLEString type. Prerrequisites: None.

Descrição Max size buffer is 51200

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

Page 20/24

5.2.16 GetSentFrame Returns the protocol frame that was sent to the printer. It is not available in the COM (.ocx) library. Prototype: void GetSentFrame( char* output_buffer, int output_buffer_length, int* output_buffer_final_length ) Inputs: Variável

Tipo

Conteúdo

output_buffer_length

int

Numeric

Descrição Max length is 51200

Outputs: Variável

Tipo

Conteúdo

output_buffer

char

Binary

output_buffer_final_length

int

Numeric

Descrição Max size buffer is 51200

Returns: Nothing. Prerrequisites: None. 5.2.17 GetReceivedFrame Returns the protocol frame that was received from the printer. It is not available in the COM (.ocx) library. Prototype: void GetReceivedFrame( char* output_buffer, int output_buffer_length, int* output_buffer_final_length ) Inputs: Variável

Tipo

Conteúdo

output_buffer_length

int

Numeric

Descrição Max length is 51200

Outputs:

Returns:

Variável

Tipo

Conteúdo

output_buffer

char

Binary

output_buffer_final_length

int

Numeric

Descrição Max size buffer is 51200

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

Nothing. Prerrequisites: None. 5.2.18 GetAPIVersion This method returns the API version number. It is not available in the COM (.ocx) library. Prototype: void GetAPIVersion( char* api_version ) Inputs: Nothing. Outputs: Variável

Tipo

api_version

char

Returns: Nothing. Prerrequisites: None.

Tam.

Tam.

Min

Max

1

8

Conteúdo Alfanumeric

Descrição XX.YY.ZZ

Page 21/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

Page 22/24

5.2.19 getPermission This method returns a string with information about device and request a permission to use USB port. It is only available in ANDROID. Prototype: String getPermission(void ) Inputs: Nothing. Outputs: Nothing. Returns: String with device information. Prerrequisites: The device must have a USB host( check in specification device ). Use the function getUSBHostPort to check it. The function getPermission is mandatory and must to be used before the function OpenPort. After execution will be appears a dialog box. Press “OK” to allow the use of USB port. 5.2.20 getUSBHostPort This method check if device has a USB Host. It is only available in ANDROID. Prototype: boolean getUSBHostPort(void ) Inputs: Nothing. Outputs: Nothing. Returns: True – device has a USB host False – device has not a USB host Prerrequisites: If the device has not a USB Host the communication will fail.

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

25/10/2016

5.2.21 setProtocolType This method configures the protocol type. It is not available in the COM (.ocx) library. Prototype: void setProtocolType( int Protocol ) Inputs: Variable

Type

Value

Protocol

int

numeric

Description 0(compatible protocol) 1(extended protocol)

Outputs: Nothing. Returns: Nothing. Prerrequisites: None. 5.2.22 getProtocolType This method returns the value of the protocol type. It is not available in the COM (.ocx) driver. Prototype: int getProtocolType( void ) Inputs: Nothing. Outputs: Nothing. Returns: Protocol type. Prerrequisites: None.

Page 23/24

EPSON FISCAL DRIVER EpsonFiscalDriver - Version: 01.09.00

6

25/10/2016

Page 24/24

Examples

Code examples can be found into the .\Examples folder, showing the use of the methods and properties. It is very important to correctly check the return codes and exceptions.

epson fiscal driver -

Jan 5, 2010 - FOR WINDOWS (32 AND 64 BITS). ... FOR ANDROID. ...... libraries (DLL and LIB) are used by the application in the same way as Linux ones.

400KB Sizes 18 Downloads 362 Views

Recommend Documents

Driver impresora fiscal epson pf-220
Descargar driverscanon ip2700 para windows 8.Bluetooth driver for inspiron ... pdf printer driver.Intel driver intel 825xx gigabit platformlan network device.

Download driver epson tm- t58
driver samsung galaxy ace gratuit.Download ... Download driver laptop aceraspire 4736 windows 7. ... Urdu Books, English Books and Old pdf books download.

Driver epson tx125 windows 7 32 bits
Driverepson tx125 windows. 7 32 bits Chrostoi's ... Kworld usb 2860 device driver download.94359852380 ... Printer driver for hp designjet printer inwindows nt.

Printer driver for epson artisan 710
Driver hp laserjet p1005 windows vista.Network controller driver foraceraspire 5736z.Free download canon lbp 3300 printer driver for. windows xp.Printer driver ...

Scanner driver for epson me 320
... speechactsunspeakableacts. pdf) Others takeit hasaformofentertainmentand escapismstorytelling. The dictionary definition of pornography is. sexually explicit pictures, writing, or other materialwhose primary purposeis to causesexualarousal.com) T

Epson stylus d78 driver for mac
Hp computer graphics driver. ... eskid hir tu juon thim..443580419041113150 Pdf printer driver for windows ... Hp photosmart touchsmart b110a driver. Sony vaio ...

Epson tm-t20 m249a driver download
Hp laserjet pro cp1025 color printer driver free download.Epson tm-t20 ... Hp p1566 printer driver for windows 7.240162942569537.Intel 82945g ... download.Dellinspiron 6000 windows xp wireless driver. ... Sony lt26i driver for windows xp.

Download printer driver for epson stylus sx115
Page 3 of 19. Page 3 of 19. Download printer driver for epson stylus sx115. Download printer driver for epson stylus sx115. Open. Extract. Open with. Sign In.

Epson fx 2175 printer driver for windows server 2008
There was a problem previewing this document. Retrying... Download. Connect more apps... Try one of the apps below to open or edit this item. Epson fx 2175 ...

Epson Scanner.pdf
Epson Copy Utility, Arc-soft Scan-and-Stitch Deluxe (Win). ... Flatbed: 1200 x 1200 dpi, ADF : CIS, 50 sheets ADF 1,699.00 .... Displaying Epson Scanner.pdf.

epson-s1r72v27-nstkkr.pdf
Page 2 of 42. NOTICE. No part of this material may be reproduced or duplicated in any form or by any means without the written. permission of Seiko Epson.

Epson dx4450 service manual pdf
There was a problem previewing this document. Retrying... Download. Connect more ... Epson dx4450 service manual pdf. Epson dx4450 service manual pdf.

fiscal limits, external debt, and fiscal policy in ...
Using a dynamic stochastic general equilibrium (DSGE) model with sovereign default risk, this paper studies important factors that shape fiscal limit distributions ...

Fiscal policy.
policy. Central banks indirectly target activity by influencing the money supply through adjustments to interest rates, bank .... gridlock. 1. NO EMU WITHOUT EFU. For three years, the debt crisis has provided daily evidence that monetary union cannot

Fiscal Solvency_FINAL.pdf
Page 3 of 19. R. Martire_CTBA It Is All About Revenue - Fiscal Solvency_FINAL.pdf. R. Martire_CTBA It Is All About Revenue - Fiscal Solvency_FINAL.pdf. Open.

Epson xp-205 manual pdf
Page 1. Whoops! There was a problem loading more pages. Retrying... Epson xp-205 manual pdf. Epson xp-205 manual pdf. Open. Extract. Open with. Sign In.