Hi,
thanks for your help. Now my AES3400 works.
I used functions
r = fp_dev_img_capture(capture_device, 0, &img);
r = fpi_img_to_print_data( (struct fp_img_dev *) &capture_device /* ugly hack ;pp */,img,&enrolled_print);
to enroll image and
r = fpi_img_compare_print_data_to_gallery(data, gal, tolerance, &n);
to verify it. Could you default export those functions default?
I found how to do contionous scanning on my aes3400( { 0x81, 0x05 } ),
but if this register isn't cleaned after scanning reader doesn't stop sending scans and usb buffer overflows so I have to reopen device. Is it possible in this library to write register and flush usb buffer after scanning?
I also  attach my driver, could you add it to the library?
    Piotr Jarosz

/*
 * AuthenTec AES3400 driver for libfprint
 *
 * AES3400 is a press-typed sensor, which captures image in 128x128
 * pixels.
 *
 * Adapted from AES3500 by PIETREK<[email protected]>
 *
 * This work is derived from Daniel Drake's AES4000 driver.
 *
 * Copyright (C) 2011-2013 Juvenn Woo <[email protected]>
 * Copyright (C) 2007-2008 Daniel Drake <[email protected]>
 *
 * This library is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation; either version 2.1 of the
 * License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA
 */

#define FP_COMPONENT "aes3400"

#include <errno.h>

#include <glib.h>
#include <libusb.h>

#include <aeslib.h>
#include <fp_internal.h>

#include "aes3k.h"
#include "driver_ids.h"

#define DATA_BUFLEN	0x20ae

/* image size = FRAME_WIDTH x FRAME_WIDTH */
#define FRAME_WIDTH 	128
#define FRAME_SIZE	(FRAME_WIDTH * AES3K_FRAME_HEIGHT / 2)
#define FRAME_NUMBER	(FRAME_WIDTH / AES3K_FRAME_HEIGHT)
#define ENLARGE_FACTOR 	2


static struct aes_regwrite init_reqs[] = {
	/* master reset */
	{ 0x80, 0x01 },
	{ 0, 0 },
	{ 0x80, 0x00 },
	{ 0, 0 },

	{ 0x81, 0x00 },
	{ 0x80, 0x00 },
	{ 0, 0 },

	/* scan reset */
	{ 0x80, 0x02 },
	{ 0, 0 },
	{ 0x80, 0x00 },
	{ 0, 0 },

	/* disable register buffering */
	{ 0x80, 0x04 },
	{ 0, 0 },
	{ 0x80, 0x00 },
	{ 0, 0 },

	{ 0x81, 0x00 },
	{ 0, 0 },
	/* windows driver reads registers now (81 02) */
	{ 0x80, 0x02 },
	{ 0x81, 0x00 },

	/* set excitation bias current: 2mhz drive ring frequency,
	 * 4V drive ring voltage, 16.5mA excitation bias */
	{ 0x82, 0x04 },

	/* continuously sample drive ring for finger detection,
	 * 62.50ms debounce delay */
	{ 0x83, 0x13 },

	{ 0x84, 0x07 }, /* set calibration resistance to 12 kiloohms */
	{ 0x85, 0x3d }, /* set calibration capacitance */
	{ 0x86, 0x03 }, /* detect drive voltage */
	{ 0x87, 0x01 }, /* set detection frequency to 125khz */
	{ 0x88, 0x02 }, /* set column scan period */
	{ 0x89, 0x02 }, /* set measure drive */
	{ 0x8a, 0x05 }, /* set measure frequency and sense amplifier bias */
	{ 0x8b, 0x33 }, /* set matrix pattern */
	{ 0x8c, 0x21 }, /* set demodulation phase 1 */
	{ 0x8d, 0x00 }, /* set demodulation phase 2 */
	{ 0x8e, 0x03 }, /* set sensor gain */
	{ 0x8f, 0x07 }, /* set image parameters */
	{ 0x90, 0x00 }, /* carrier offset null */
	{ 0x91, 0x70 }, /* set A/D reference high */
	{ 0x92, 0x11 }, /* set A/D reference low */
	{ 0x93, 0x00 }, /* set start row to 0 */
	{ 0x94, 0x1f }, /* set end row */
	{ 0x95, 0x00 }, /* set start column to 0 */
	{ 0x96, 0x1f }, /* set end column */
	{ 0x97, 0x04 }, /* data format and thresholds */
	{ 0x98, 0x22 }, /* image data control */
	{ 0x99, 0x00 }, /* disable general purpose outputs */
	{ 0x9a, 0x0b }, /* set initial scan state */
	{ 0x9b, 0x01 }, /* clear challenge word bits */
	{ 0x9c, 0x48 }, /* clear challenge word bits */
	{ 0x9d, 0x06 }, /* set some challenge word bits */
	{ 0x9e, 0x07 }, /* clear challenge word bits */
	{ 0x9f, 0x68 }, /* set some challenge word bits */
	{ 0, 0 },

	{ 0x80, 0x00 },
	{ 0x81, 0x00 },
	{ 0, 0 },
	{ 0x81, 0x04 },
	{ 0, 0 },
	{ 0x81, 0x04 },
};

static int dev_init(struct fp_img_dev *dev, unsigned long driver_data)
{
	int r;
	struct aes3k_dev *aesdev;

	r = libusb_claim_interface(dev->udev, 0);
	if (r < 0)
		fp_err("could not claim interface 0");

	aesdev = dev->priv = g_malloc0(sizeof(struct aes3k_dev));

	if (!aesdev)
		return -ENOMEM;

	if (r == 0)
		aesdev->data_buflen = DATA_BUFLEN;
		aesdev->frame_width = FRAME_WIDTH;
		aesdev->frame_size = FRAME_SIZE;
		aesdev->frame_number = FRAME_NUMBER;
		aesdev->enlarge_factor = ENLARGE_FACTOR;
		aesdev->init_reqs = init_reqs;
		aesdev->init_reqs_len = G_N_ELEMENTS(init_reqs);
		fpi_imgdev_open_complete(dev, 0);

	return r;
}

static void dev_deinit(struct fp_img_dev *dev)
{
	struct aes3k_dev *aesdev = dev->priv;
	g_free(aesdev);
	libusb_release_interface(dev->udev, 0);
	fpi_imgdev_close_complete(dev);
}


// so many ids to suport all possible strange product ids
static const struct usb_id id_table[] = {
	{ .vendor = 0x08ff, .product = 0x3400 },
	{ .vendor = 0x08ff, .product = 0x3401 },
	{ .vendor = 0x08ff, .product = 0x3402 },
	{ .vendor = 0x08ff, .product = 0x3403 },
	{ .vendor = 0x08ff, .product = 0x3404 },
	{ .vendor = 0x08ff, .product = 0x3405 },
	{ .vendor = 0x08ff, .product = 0x3406 },
	{ .vendor = 0x08ff, .product = 0x3407 },
	{ .vendor = 0x08ff, .product = 0x3408 },
	{ .vendor = 0x08ff, .product = 0x3409 },
	{ .vendor = 0x08ff, .product = 0x340a },
	{ .vendor = 0x08ff, .product = 0x340b },
	{ .vendor = 0x08ff, .product = 0x340c },
	{ .vendor = 0x08ff, .product = 0x340d },
	{ .vendor = 0x08ff, .product = 0x340e },
	{ .vendor = 0x08ff, .product = 0x340f },
	{ .vendor = 0x08ff, .product = 0x3410 },
	{ 0, 0, 0, },
};

struct fp_img_driver aes3400_driver = {
	.driver = {
		.id = AES3400_ID,
		.name = FP_COMPONENT,
		.full_name = "AuthenTec AES3400",
		.id_table = id_table,
		.scan_type = FP_SCAN_TYPE_PRESS,
	},
	.flags = 0,
	.img_height = FRAME_WIDTH * ENLARGE_FACTOR,
	.img_width = FRAME_WIDTH * ENLARGE_FACTOR,

	/* temporarily lowered until image quality improves */
	.bz3_threshold = 9,

	.open = dev_init,
	.close = dev_deinit,
	.activate = aes3k_dev_activate,
	.deactivate = aes3k_dev_deactivate,
};

_______________________________________________
fprint mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/fprint

Reply via email to