2022-02-10 22:32:40 +01:00
|
|
|
#ifndef _GPS_H_
|
|
|
|
#define _GPS_H_
|
|
|
|
|
|
|
|
#include <TinyGPSPlus.h>
|
|
|
|
#include "config.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "dtc.h"
|
2023-12-25 00:44:24 +01:00
|
|
|
#include "debugger.h"
|
2022-02-10 22:32:40 +01:00
|
|
|
|
|
|
|
void Init_GPS();
|
|
|
|
uint32_t Process_GPS_WheelSpeed();
|
|
|
|
|
|
|
|
#endif
|