summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/fpsensor.c1
-rw-r--r--include/ec_commands.h1
-rw-r--r--util/ectool.c7
3 files changed, 6 insertions, 3 deletions
diff --git a/common/fpsensor.c b/common/fpsensor.c
index cd134eede8..c708d00ddc 100644
--- a/common/fpsensor.c
+++ b/common/fpsensor.c
@@ -398,6 +398,7 @@ static int fp_command_info(struct host_cmd_handler_args *args)
r->template_max = FP_MAX_FINGER_COUNT;
r->template_valid = templ_valid;
r->template_dirty = templ_dirty;
+ r->template_version = FP_TEMPLATE_FORMAT_VERSION;
/* V1 is identical to V0 with more information appended */
args->response_size = args->version ? sizeof(*r) :
diff --git a/include/ec_commands.h b/include/ec_commands.h
index e45e56911c..54c7827231 100644
--- a/include/ec_commands.h
+++ b/include/ec_commands.h
@@ -5022,6 +5022,7 @@ struct __ec_align4 ec_response_fp_info {
uint16_t template_max; /* maximum number of fingers/templates */
uint16_t template_valid; /* number of valid fingers/templates */
uint32_t template_dirty; /* bitmap of templates with MCU side changes */
+ uint32_t template_version; /* version of the template format */
};
/* Get the last captured finger frame or a template content */
diff --git a/util/ectool.c b/util/ectool.c
index c2ce4dc8da..dbb995e10a 100644
--- a/util/ectool.c
+++ b/util/ectool.c
@@ -1503,9 +1503,10 @@ int cmd_fp_info(int argc, char *argv[])
}
if (cmdver == 1) {
- printf("Templates: size %d count %d/%d dirty bitmap %x\n",
- r.template_size, r.template_valid, r.template_max,
- r.template_dirty);
+ printf("Templates: version %d size %d count %d/%d"
+ " dirty bitmap %x\n",
+ r.template_version, r.template_size, r.template_valid,
+ r.template_max, r.template_dirty);
}
return 0;