From 7faeb46ada637675e4c96677de370dd773435bc4 Mon Sep 17 00:00:00 2001 From: Mestery Date: Thu, 13 Apr 2023 01:42:19 +0200 Subject: [PATCH] im so stupid --- src/Hal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Hal.cpp b/src/Hal.cpp index 627c7d4d..855835b0 100644 --- a/src/Hal.cpp +++ b/src/Hal.cpp @@ -4,8 +4,8 @@ Hal::Hal(const uint8_t input, const uint8_t output, const uint8_t low, const uint8_t high, const uint8_t rising, const uint8_t falling) : GpioModeInput(input), GpioModeOutput(output), - GpioLevelLow(high), - GpioLevelHigh(low), + GpioLevelLow(low), + GpioLevelHigh(high), GpioInterruptRising(rising), GpioInterruptFalling(falling) {}