27 lines
488 B
C
27 lines
488 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;
|
|
tSerialPortIO SerialPortLog_Sniffer_IO;
|
|
|
|
|
|
tSerialPortVirt cliVirtualPortOut;
|
|
tSerialPortIO cliVirtualPortOut_Io;
|
|
|
|
} tSerialPorts;
|
|
|
|
extern tSerialPorts SERIAL_PORTS;
|
|
|
|
void SerialPorts_Init();
|
|
|
|
#endif //HVAC_M7_SERIALPORTS_H
|