26 lines
333 B
C
26 lines
333 B
C
//
|
|
// Created by cfif on 05.05.23.
|
|
//
|
|
|
|
#ifndef HVAC_M7_GPIOS_H
|
|
#define HVAC_M7_GPIOS_H
|
|
|
|
#include "GpioPin.h"
|
|
//#include "PowerManagement.h"
|
|
|
|
typedef struct {
|
|
tGpioPin LED1;
|
|
tGpioPin LED2;
|
|
tGpioPin LED3;
|
|
} tLed;
|
|
|
|
typedef struct {
|
|
tLed led;
|
|
} tGpios;
|
|
|
|
extern tGpios GPIOS;
|
|
|
|
void Gpios_Init();
|
|
|
|
#endif //HVAC_M7_GPIOS_H
|