From 1b51545e5f916c4e2464ea665f2dcacef8b74fc0 Mon Sep 17 00:00:00 2001 From: William Emfinger Date: Tue, 26 Aug 2025 09:58:09 -0500 Subject: [PATCH] fix: deprecated api update missing include --- src/debug/src/espnow_console.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/debug/src/espnow_console.c b/src/debug/src/espnow_console.c index 9078f11..86e08ad 100755 --- a/src/debug/src/espnow_console.c +++ b/src/debug/src/espnow_console.c @@ -29,6 +29,10 @@ #endif #include "driver/usb_serial_jtag.h" +#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0) +#include "driver/usb_serial_jtag_vfs.h" +#endif + #include "linenoise/linenoise.h" #include "argtable3/argtable3.h"