40 lines
775 B
C
40 lines
775 B
C
//
|
|
// Created by cfif on 05.05.23.
|
|
//
|
|
|
|
#ifndef WATER_BOX_BSD_SERIALPORTSLIN_H
|
|
#define WATER_BOX_BSD_SERIALPORTSLIN_H
|
|
|
|
#include "SerialPortArtery.h"
|
|
#include "SerialPortLinArtery.h"
|
|
#include "GpioPin.h"
|
|
|
|
typedef struct {
|
|
|
|
tSerialPortLinArtery LIN1_UART4;
|
|
tSerialPortLinIO LIN1_UART4_IO;
|
|
/*
|
|
tSerialPortArtery LIN2_UART5;
|
|
tSerialPortIO LIN2_UART5_IO;
|
|
|
|
tSerialPortArtery LIN3_USART6;
|
|
tSerialPortIO LIN3_USART6_IO;
|
|
|
|
tSerialPortArtery LIN4_UART7;
|
|
tSerialPortIO LIN4_UART7_IO;
|
|
|
|
tSerialPortArtery LIN5_UART8;
|
|
tSerialPortIO LIN5_UART8_IO;
|
|
|
|
tSerialPortArtery LIN6_USART1;
|
|
tSerialPortIO LIN6_USART1_IO;
|
|
*/
|
|
|
|
|
|
} tSerialLinPorts;
|
|
|
|
void SerialLinPorts_Init();
|
|
extern tSerialLinPorts SERIAL_LIN_PORTS;
|
|
|
|
#endif //WATER_BOX_BSD_SERIALPORTSLIN_H
|