25 lines
424 B
C
25 lines
424 B
C
//
|
|
// Created by xemon on 29.08.22.
|
|
//
|
|
|
|
#ifndef UVEOS_DEMO_GONEC_ARTERY_Gpios_H
|
|
#define UVEOS_DEMO_GONEC_ARTERY_Gpios_H
|
|
|
|
#include <SerialPorts.h>
|
|
#include <PowerManagement.h>
|
|
#include "GpioPin.h"
|
|
|
|
|
|
typedef struct {
|
|
tRs485DirectionPins comIntDir;
|
|
tSIM7682EPower SIM7682EPower;
|
|
tSIM68Power SIM68Power;
|
|
tPower Power;
|
|
} tGpios;
|
|
|
|
extern tGpios GPIOS;
|
|
|
|
void Gpios_Init();
|
|
|
|
#endif //UVEOS_DEMO_GONEC_ARTERY_Gpios_H
|