From 843ea197bba44eccd5650005937eff49f1aa494a Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 5 Jun 2023 20:04:30 -0500 Subject: [PATCH] fix --- components/ratgdo/ratgdo.cpp | 2 +- components/ratgdo/ratgdo.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/ratgdo/ratgdo.cpp b/components/ratgdo/ratgdo.cpp index fd0e778..9c1d0f2 100644 --- a/components/ratgdo/ratgdo.cpp +++ b/components/ratgdo/ratgdo.cpp @@ -92,7 +92,7 @@ namespace ratgdo { } } - class RATGDOComponent : public UARTDevice, public Component { + class RATGDOComponent : public uart::UARTDevice, public Component { public: void setup() override diff --git a/components/ratgdo/ratgdo.h b/components/ratgdo/ratgdo.h index 8c121dc..f56193f 100644 --- a/components/ratgdo/ratgdo.h +++ b/components/ratgdo/ratgdo.h @@ -56,7 +56,7 @@ namespace ratgdo { static void IRAM_ATTR isrObstruction(RATGDOStore* arg); }; - class RATGDOComponent : public UARTDevice, public Component { + class RATGDOComponent : public uart::UARTDevice, public Component { public: void setup() override; void loop() override;