25 lines
368 B
C
25 lines
368 B
C
//
|
|
// Created by cfif on 17.11.22.
|
|
//
|
|
|
|
#ifndef LIN_AT32_H
|
|
#define LIN_AT32_H
|
|
|
|
#include "LinIO.h"
|
|
#include "SerialPortIO.h"
|
|
|
|
typedef struct {
|
|
tSerialPortIO *serialPortIO;
|
|
tLinData *linData;
|
|
} tLinAt32;
|
|
|
|
void LIN_Initial(
|
|
tLinAt32 *env,
|
|
tSerialPortIO *serialPortIO,
|
|
void *linData
|
|
);
|
|
|
|
tLinIO vLinGetIo(tLinAt32 *env);
|
|
|
|
#endif //LIN_AT32_H
|