Init
This commit is contained in:
parent
efd5d782fc
commit
4c4b7db239
|
|
@ -40,12 +40,13 @@ typedef struct {
|
||||||
uint8_t g_aRxBuffer[8];
|
uint8_t g_aRxBuffer[8];
|
||||||
} tLinData;
|
} tLinData;
|
||||||
|
|
||||||
typedef uint8_t (* LinIOTransaction )(void *env, tLinData *linData, uint32_t timeout);
|
typedef uint8_t (* LinIOTransactionReceived )(void *env, tLinData *linData, uint32_t timeout);
|
||||||
|
typedef uint8_t (* LinIOTransactionTransmit )(void *env, tLinData *linData, uint8_t COM_ADR, uint32_t timeout);
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
void *env;
|
void *env;
|
||||||
LinIOTransaction receivedCommand;
|
LinIOTransactionTransmit transmitCommand;
|
||||||
LinIOTransaction transmitCommand;
|
LinIOTransactionReceived receivedCommand;
|
||||||
} tSerialPortLinIO;
|
} tSerialPortLinIO;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue