From b64b56c3bad14407593c346097c6d3e794e51d5a Mon Sep 17 00:00:00 2001 From: "Federico D. Ceccarelli" Date: Sun, 12 Jan 2025 22:14:49 -0500 Subject: [PATCH 1/2] added stddef.h & stdint.h #includes The library assume it will be compiled including arduino.h when it's not necesary. --- src/CommandParser.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/CommandParser.h b/src/CommandParser.h index 597f6ca..cdbfb52 100644 --- a/src/CommandParser.h +++ b/src/CommandParser.h @@ -13,6 +13,8 @@ #ifndef __COMMAND_PARSER_H__ #define __COMMAND_PARSER_H__ +#include +#include #include /* From d61003a440c483641afd3f215dfddda14121c957 Mon Sep 17 00:00:00 2001 From: "Federico D. Ceccarelli" Date: Sun, 12 Jan 2025 22:48:15 -0500 Subject: [PATCH 2/2] Standar library missing includes. Second try --- src/CommandParser.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/CommandParser.h b/src/CommandParser.h index cdbfb52..4c73514 100644 --- a/src/CommandParser.h +++ b/src/CommandParser.h @@ -13,7 +13,10 @@ #ifndef __COMMAND_PARSER_H__ #define __COMMAND_PARSER_H__ -#include + +#include +#include +#include #include #include