28 lines
521 B
C
28 lines
521 B
C
//
|
|
// Created by CFIF on 25.03.24.
|
|
//
|
|
|
|
#ifndef HVAC_M7_SERIALPORTS_H
|
|
#define HVAC_M7_SERIALPORTS_H
|
|
|
|
#include "SerialPortFlagchip.h"
|
|
#include "SerialPortVirt.h"
|
|
|
|
typedef struct {
|
|
tSerialPortFlagchip SerialPortLog;
|
|
tSerialPortIO SerialPortLog_IO;
|
|
|
|
tSerialPortVirt cliVirtualPortOut;
|
|
tSerialPortIO cliVirtualPortOut_Io;
|
|
|
|
tSerialPortVirt cliVirtualPortIn;
|
|
tSerialPortIO cliVirtualPortIn_Io;
|
|
|
|
} tSerialPorts;
|
|
|
|
extern tSerialPorts SERIAL_PORTS;
|
|
|
|
void SerialPorts_Init();
|
|
|
|
#endif //HVAC_M7_SERIALPORTS_H
|