The Big Refactoring of 2019: folder structure #723

This commit is contained in:
rusefi 2019-12-04 00:22:34 -05:00
parent db4ea08568
commit 0dd517bcc7
4 changed files with 12 additions and 22 deletions

View File

@ -4,11 +4,10 @@
* todo: rename all this 'logic analyzer' is probably much more appropriate * todo: rename all this 'logic analyzer' is probably much more appropriate
* *
* @date Jan 7, 2013 * @date Jan 7, 2013
* @author Andrey Belomutskiy, (c) 2012-2017 * @author Andrey Belomutskiy, (c) 2012-2019
*/ */
#ifndef WAVE_ANALYZER_H_ #pragma once
#define WAVE_ANALYZER_H_
#include "global.h" #include "global.h"
@ -57,7 +56,5 @@ void initWaveAnalyzer(Logging *sharedLogger);
void printWave(Logging *logging); void printWave(Logging *logging);
void showWaveInfo(void); void showWaveInfo(void);
#endif #endif /* EFI_WAVE_ANALYZER */
#endif /* WAVE_ANALYZER_H_ */

View File

@ -2,10 +2,10 @@
* @file joystick.h * @file joystick.h
* *
* @date Jan 2, 2015 * @date Jan 2, 2015
* @author Andrey Belomutskiy, (c) 2012-2017 * @author Andrey Belomutskiy, (c) 2012-2019
*/ */
#ifndef CONTROLLERS_JOYSTICK_H_
#define CONTROLLERS_JOYSTICK_H_ #pragma once
#include "global.h" #include "global.h"
@ -21,5 +21,3 @@ void onJoystick(joystick_button_e button);
void initJoystick(Logging *shared); void initJoystick(Logging *shared);
void startJoystickPins(); void startJoystickPins();
void stopJoystickPins(); void stopJoystickPins();
#endif /* CONTROLLERS_JOYSTICK_H_ */

View File

@ -1,16 +1,12 @@
/* /*
* yaw_rate_sensor.h * @file yaw_rate_sensor.h
* *
* Created on: Oct 16, 2018 * @date Oct 16, 2018
* @author Andrey Belomutskiy, (c) 2012-2018 * @author Andrey Belomutskiy, (c) 2012-2019
*/ */
#ifndef HW_LAYER_SENSORS_YAW_RATE_SENSOR_H_ #pragma once
#define HW_LAYER_SENSORS_YAW_RATE_SENSOR_H_
#include "global.h" #include "global.h"
#include "engine.h"
void initBoschYawRateSensor(); void initBoschYawRateSensor();
#endif /* HW_LAYER_SENSORS_YAW_RATE_SENSOR_H_ */

View File

@ -158,7 +158,7 @@ CPPSRC = $(UTILSRC_CPP) \
$(PROJECT_DIR)/development/sensor_chart.cpp \ $(PROJECT_DIR)/development/sensor_chart.cpp \
$(PROJECT_DIR)/development/trigger_emulator.cpp \ $(PROJECT_DIR)/development/trigger_emulator.cpp \
$(HW_LAYER_EMS_CPP) \ $(HW_LAYER_EMS_CPP) \
$(PROJECT_DIR)/hw_layer/sensors/cj125.cpp \ $(HW_SENSORS_SRC) \
$(TRIGGER_SRC_CPP) \ $(TRIGGER_SRC_CPP) \
$(TRIGGER_DECODERS_SRC_CPP) \ $(TRIGGER_DECODERS_SRC_CPP) \
$(SYSTEMSRC_CPP) \ $(SYSTEMSRC_CPP) \
@ -194,7 +194,6 @@ INCDIR = . \
$(PROJECT_DIR)/console/fl_binary \ $(PROJECT_DIR)/console/fl_binary \
$(PROJECT_DIR)/config/engines \ $(PROJECT_DIR)/config/engines \
$(PROJECT_DIR)/ext_algo \ $(PROJECT_DIR)/ext_algo \
$(PROJECT_DIR)/controllers \
$(HW_LAYER_DRIVERS_INC) \ $(HW_LAYER_DRIVERS_INC) \
$(PROJECT_DIR)/hw_layer \ $(PROJECT_DIR)/hw_layer \
$(PROJECT_DIR)/hw_layer/algo \ $(PROJECT_DIR)/hw_layer/algo \