From b9edd0d98e55c696dc71db7c68204ac1b8105642 Mon Sep 17 00:00:00 2001 From: cfif Date: Mon, 14 Jul 2025 12:13:45 +0300 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=20=D0=B8=D0=BD=D1=82=D0=B5=D1=80=D1=84=D0=B5=D0=B9=D1=81?= =?UTF-8?q?=20GPIO?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Inc/GpioPinInterface.h | 24 ++++++++++++++++++++++++ modular.json | 7 +++++++ 2 files changed, 31 insertions(+) create mode 100644 Inc/GpioPinInterface.h create mode 100644 modular.json diff --git a/Inc/GpioPinInterface.h b/Inc/GpioPinInterface.h new file mode 100644 index 0000000..8a3ccee --- /dev/null +++ b/Inc/GpioPinInterface.h @@ -0,0 +1,24 @@ +// +// Created by cfif + +#ifndef ABSTRACTGPIOPIN_GPIOPININTERFACE_H +#define ABSTRACTGPIOPIN_GPIOPININTERFACE_H + +#include "stdint.h" +#include "stdbool.h" + +typedef struct { + bool reverse; + void *port; + void *gpio; + uint32_t pin; +} tGpioPin; + +void GpioPinSet(tGpioPin *pin, bool value); + +bool GpioPinGet(tGpioPin *pin); + +#define GpioPinEnable(PIN) GpioPinSet(PIN,true) +#define GpioPinDisable(PIN) GpioPinSet(PIN,false) + +#endif //ABSTRACTGPIOPIN_GPIOPININTERFACE_H diff --git a/modular.json b/modular.json new file mode 100644 index 0000000..9bdd478 --- /dev/null +++ b/modular.json @@ -0,0 +1,7 @@ +{ + "cmake": { + "inc_dirs": [ + "Inc" + ] + } +} \ No newline at end of file