tests/tod-drivers: Add newly supported types

This commit is contained in:
Marco Trevisan (Treviño)
2021-04-13 22:33:17 +02:00
parent 18b3acdfb0
commit 81ecee3ead
4 changed files with 101 additions and 0 deletions
+17
View File
@@ -95,3 +95,20 @@ typedef enum {
FPI_DEVICE_ACTION_TODV1_LIST,
FPI_DEVICE_ACTION_TODV1_DELETE,
} FpiDeviceActionTODV1;
typedef enum /*< flags >*/ {
FP_DEVICE_FEATURE_TODV1_NONE = 0,
FP_DEVICE_FEATURE_TODV1_CAPTURE = 1 << 0,
FP_DEVICE_FEATURE_TODV1_IDENTIFY = 1 << 1,
FP_DEVICE_FEATURE_TODV1_VERIFY = 1 << 2,
FP_DEVICE_FEATURE_TODV1_STORAGE = 1 << 3,
FP_DEVICE_FEATURE_TODV1_STORAGE_LIST = 1 << 4,
FP_DEVICE_FEATURE_TODV1_STORAGE_DELETE = 1 << 5,
FP_DEVICE_FEATURE_TODV1_STORAGE_CLEAR = 1 << 6,
FP_DEVICE_FEATURE_TODV1_DUPLICATES_CHECK = 1 << 7,
} FpDeviceFeatureTODV1;
typedef enum {
FPI_DEVICE_UDEV_SUBTYPE_TODV1_SPIDEV = 1 << 0,
FPI_DEVICE_UDEV_SUBTYPE_TODV1_HIDRAW = 1 << 1,
} FpiDeviceUdevSubtypeFlagsTODV1;
+60
View File
@@ -0,0 +1,60 @@
/*
* FpDevice - A fingerprint reader device
* Copyright (C) 2021 Marco Trevisan <marco.trevisan@canonical.com>
*
* 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
*/
#pragma once
#include "base-fpi-device.h"
typedef struct _FpiSpiTransferTODV1 FpiSpiTransferTODV1;
typedef struct _FpiSsm FpiSsm;
typedef void (*FpiSpiTransferCallbackTODV1)(FpiSpiTransferTODV1 *transfer,
FpDevice *dev,
gpointer user_data,
GError *error);
struct _FpiSpiTransferTODV1
{
/*< public >*/
FpDevice *device;
FpiSsm *ssm;
gssize length_wr;
gssize length_rd;
guchar *buffer_wr;
guchar *buffer_rd;
/*< private >*/
guint ref_count;
int spidev_fd;
/* Callbacks */
gpointer user_data;
FpiSpiTransferCallbackTODV1 callback;
/* Data free function */
GDestroyNotify free_buffer_wr;
GDestroyNotify free_buffer_rd;
/* padding for future expansion */
gpointer _padding_dummy[32];
};