From 07729f807b18ddb295a9e62934fbee74946408a5 Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Mon, 15 May 2023 19:02:32 +0200 Subject: [PATCH] Upgrade to version 5.4 This passes from previous version 3.0 to 5.4 due to compatibility issues with Yubico software, which expects +5.4 Signed-off-by: Pol Henarejos --- src/fido/version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fido/version.h b/src/fido/version.h index 554672c..4708ced 100644 --- a/src/fido/version.h +++ b/src/fido/version.h @@ -18,7 +18,7 @@ #ifndef __VERSION_H_ #define __VERSION_H_ -#define PICO_FIDO_VERSION 0x0300 +#define PICO_FIDO_VERSION 0x0504 #define PICO_FIDO_VERSION_MAJOR ((PICO_FIDO_VERSION >> 8) & 0xff) #define PICO_FIDO_VERSION_MINOR (PICO_FIDO_VERSION & 0xff)