17 lines
300 B
C
17 lines
300 B
C
/**
|
|
* @file vehicle_speed.h
|
|
*
|
|
*@date Dec 26, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
|
*/
|
|
|
|
#ifndef HW_LAYER_VEHICLE_SPEED_H_
|
|
#define HW_LAYER_VEHICLE_SPEED_H_
|
|
|
|
#include "main.h"
|
|
|
|
float getVehicleSpeed(void);
|
|
void initVehicleSpeed(Logging *logger);
|
|
|
|
#endif /* HW_LAYER_VEHICLE_SPEED_H_ */
|