12 lines
175 B
C
12 lines
175 B
C
|
#ifndef _GPS_H_
|
||
|
#define _GPS_H_
|
||
|
|
||
|
#include <TinyGPSPlus.h>
|
||
|
#include "config.h"
|
||
|
#include "common.h"
|
||
|
#include "dtc.h"
|
||
|
|
||
|
void Init_GPS();
|
||
|
uint32_t Process_GPS_WheelSpeed();
|
||
|
|
||
|
#endif
|