Add EgisTec ES603 driver

This driver handles EgisTec ES603 device, ID 1c7a:0603
This commit is contained in:
Patrick Marlier
2012-12-12 20:43:09 +01:00
committed by Vasily Khoruzhick
parent e0966cb20f
commit a6101026d2
6 changed files with 1538 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ VCOM5S_SRC = drivers/vcom5s.c
VFS101_SRC = drivers/vfs101.c
VFS301_SRC = drivers/vfs301.c drivers/vfs301_proto.c drivers/vfs301_proto.h drivers/vfs301_proto_fragments.h
UPEKTC_IMG_SRC = drivers/upektc_img.c drivers/upektc_img.h
ETES603_SRC = drivers/etes603.c
EXTRA_DIST = \
$(UPEKE2_SRC) \
@@ -38,6 +39,7 @@ EXTRA_DIST = \
$(VFS101_SRC) \
$(VFS301_SRC) \
$(UPEKTC_IMG_SRC) \
$(ETES603_SRC) \
drivers/aesx660.c \
drivers/aesx660.h \
drivers/aes3k.c \
@@ -171,6 +173,10 @@ if ENABLE_UPEKTC_IMG
DRIVER_SRC += $(UPEKTC_IMG_SRC)
endif
if ENABLE_ETES603
DRIVER_SRC += $(ETES603_SRC)
endif
if REQUIRE_IMAGEMAGICK
OTHER_SRC += imagemagick.c
libfprint_la_CFLAGS += $(IMAGING_CFLAGS)

View File

@@ -392,6 +392,9 @@ static struct fp_img_driver * const img_drivers[] = {
#ifdef ENABLE_UPEKTC_IMG
&upektc_img_driver,
#endif
#ifdef ENABLE_ETES603
&etes603_driver,
#endif
/*#ifdef ENABLE_FDU2000
&fdu2000_driver,
#endif

View File

@@ -38,6 +38,7 @@ enum {
AES2660_ID = 15,
AES3500_ID = 16,
UPEKTC_IMG_ID = 17,
ETES603_ID = 18,
};
#endif

1513
libfprint/drivers/etes603.c Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -299,6 +299,9 @@ extern struct fp_img_driver vfs301_driver;
#ifdef ENABLE_UPEKTC_IMG
extern struct fp_img_driver upektc_img_driver;
#endif
#ifdef ENABLE_ETES603
extern struct fp_img_driver etes603_driver;
#endif
extern libusb_context *fpi_usb_ctx;
extern GSList *opened_devices;