From 7c41c76fdf0c4ca68fd82fc2e3c301106ca3caf6 Mon Sep 17 00:00:00 2001 From: Mattia Pennasilico Date: Fri, 21 Nov 2025 12:05:10 +0100 Subject: [PATCH] ZephyrUDP: add missing pragma once into header file This is needed to avoid multiple definitions error --- libraries/SocketWrapper/ZephyrUDP.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libraries/SocketWrapper/ZephyrUDP.h b/libraries/SocketWrapper/ZephyrUDP.h index 884639bd9..4770290f7 100644 --- a/libraries/SocketWrapper/ZephyrUDP.h +++ b/libraries/SocketWrapper/ZephyrUDP.h @@ -17,6 +17,8 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#pragma once + #include "Arduino.h" #include "SocketWrapper.h" #include "api/Udp.h"