2023-03-08 20:20:01 +01:00
|
|
|
#ifndef __INC_VEHICLE_H
|
|
|
|
#define __INC_VEHICLE_H
|
|
|
|
|
|
|
|
#include "tx_port.h"
|
|
|
|
|
2023-03-15 18:43:38 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int fl;
|
|
|
|
int fr;
|
|
|
|
int rl;
|
|
|
|
int rr;
|
|
|
|
} TireTemps;
|
|
|
|
|
2023-03-08 20:20:01 +01:00
|
|
|
void vehicle_thread_entry(ULONG hfdcan_addr);
|
|
|
|
|
2023-03-15 18:43:38 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-03-08 20:20:01 +01:00
|
|
|
#endif // __INC_VEHICLE_H
|