Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"configurations": [
{
"name": "Linux",
"includePath": ["${workspaceFolder}/**"],
"defines": [],
"compilerPath": "/usr/bin/gcc",
"cStandard": "gnu17",
"cppStandard": "gnu++14",
"intelliSenseMode": "linux-gcc-x64",
"compileCommands": "${workspaceFolder}/_build/compile_commands.json"
}
],
"version": 4
}
24 changes: 24 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "cppdbg",
"name": "Launch examples/img-capture",
"request": "launch",
"program": "${workspaceFolder}/_build/examples/img-capture",
"args": [],
"stopAtEntry": false,
"cwd": "${fileDirname}",
"environment": [],
"MIMode": "gdb",
"avoidWindowsConsoleRedirection": true,
"setupCommands": [
{
"description": "Enable pretty-printing for gdb",
"text": "-enable-pretty-printing",
"ignoreFailures": true
}
]
}
]
}
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"files.associations": {
"*.c": "c",
"*.h": "c"
}
}
20 changes: 20 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"tasks": [
{
"type": "cppbuild",
"label": "Meson: build current project",
"command": "/usr/bin/meson",
"args": ["compile"],
"options": {
"cwd": "${workspaceFolder}/_build"
},
"problemMatcher": ["$gcc"],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "Build the current project using meson."
}
],
"version": "2.0.0"
}
5 changes: 5 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
This is an experimental libfprint driver implementation for Goodix drivers.

Currently in the works:
- 27c6x5110 (80x64 resolution)

libfprint
=========

Expand Down
5 changes: 4 additions & 1 deletion data/autosuspend.hwdb
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,10 @@ usb:v138Ap0018*
usb:v138Ap0091*
ID_AUTOSUSPEND=1

# Supported by libfprint driver goodixtls
usb:v27c6p5110*
ID_AUTOSUSPEND=1

# Known unsupported devices
usb:v04F3p036B*
usb:v04F3p0C00*
Expand Down Expand Up @@ -263,7 +267,6 @@ usb:v1C7Ap0300*
usb:v1C7Ap0570*
usb:v1C7Ap0575*
usb:v27C6p5042*
usb:v27C6p5110*
usb:v27C6p5117*
usb:v27C6p5201*
usb:v27C6p521D*
Expand Down
Loading