auto-sync

This commit is contained in:
rusEfi 2014-12-26 23:05:52 -06:00
parent 68cd298455
commit 84d13c83ea
4 changed files with 31 additions and 2 deletions

View File

@ -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

View File

@ -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) {
}

View File

@ -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_ */

View File

@ -1,5 +1,5 @@
/*
* wave_analyzer_hw.h
/**
* @file wave_analyzer_hw.h
*
* @date Jun 23, 2013
* @author Andrey Belomutskiy, (c) 2012-2014