auto-sync
This commit is contained in:
parent
81195e0758
commit
265d8889fb
|
@ -21,6 +21,7 @@ HW_LAYER_SRC_CPP = $(PROJECT_DIR)/hw_layer/hardware.cpp \
|
|||
$(PROJECT_DIR)/hw_layer/pwm_generator.cpp \
|
||||
$(PROJECT_DIR)/hw_layer/trigger_input.cpp \
|
||||
$(PROJECT_DIR)/hw_layer/HIP9011.cpp \
|
||||
$(PROJECT_DIR)/hw_layer/vehicle_speed.cpp \
|
||||
$(PROJECT_DIR)/hw_layer/stepper.cpp \
|
||||
$(PROJECT_DIR)/hw_layer/stm32f4/mpu_util.cpp
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
* @file vehicle_speed.cpp
|
||||
*
|
||||
* @date Dec 26, 2014
|
||||
* @author Andrey Belomutskiy, (c) 2012-2014
|
||||
*/
|
||||
|
||||
#include "vehicle_speed.h"
|
||||
|
||||
void initVehicleSpeed(void) {
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
/**
|
||||
* @file vehicle_speed.h
|
||||
*
|
||||
*@date Dec 26, 2014
|
||||
* @author Andrey Belomutskiy, (c) 2012-2014
|
||||
*/
|
||||
|
||||
#ifndef HW_LAYER_VEHICLE_SPEED_H_
|
||||
#define HW_LAYER_VEHICLE_SPEED_H_
|
||||
|
||||
#include "main.h"
|
||||
|
||||
void initVehicleSpeed(void);
|
||||
|
||||
#endif /* HW_LAYER_VEHICLE_SPEED_H_ */
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* wave_analyzer_hw.h
|
||||
/**
|
||||
* @file wave_analyzer_hw.h
|
||||
*
|
||||
* @date Jun 23, 2013
|
||||
* @author Andrey Belomutskiy, (c) 2012-2014
|
||||
|
|
Loading…
Reference in New Issue