21 lines
351 B
C
21 lines
351 B
C
//
|
|
// Created by CFIF on 14.12.23.
|
|
//
|
|
|
|
#ifndef FLAG_LINS_H
|
|
#define FLAG_LINS_H
|
|
|
|
#include "LinFlagchip.h"
|
|
|
|
typedef struct {
|
|
tLinFlagchip lin0;
|
|
tLinIO lin0_Io;
|
|
} tLinPorts;
|
|
|
|
extern tLinPorts LIN_PORTS;
|
|
|
|
tLinData* Lin0_Init(lin_callback_ext_t Lin_ExtCallbackHandler,
|
|
void *Lin_envCallExtBack);
|
|
|
|
#endif //FLAG_LINS_H
|