ion sense progress
This commit is contained in:
parent
5f7c9915aa
commit
2140a95a7d
|
@ -2,7 +2,7 @@
|
||||||
* @file can_hw.h
|
* @file can_hw.h
|
||||||
*
|
*
|
||||||
* @date Dec 11, 2013
|
* @date Dec 11, 2013
|
||||||
* @author Andrey Belomutskiy, (c) 2012-2017
|
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef CAN_HW_H_
|
#ifndef CAN_HW_H_
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
/*
|
||||||
|
* @file cdm_ion_sense.cpp
|
||||||
|
*
|
||||||
|
* See https://github.com/rusefi/rusefi_documentation/tree/master/misc/Saab_Trionic_8_Combustion%20Detection%20Module_on_Mazda_Miata_running_rusEfi
|
||||||
|
*
|
||||||
|
* Created on: Dec 31, 2018
|
||||||
|
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "cdm_ion_sense.h"
|
||||||
|
|
||||||
|
void ionPostState(TunerStudioOutputChannels *tsOutputChannels) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,16 @@
|
||||||
|
/*
|
||||||
|
* cdm_ion_sense.h
|
||||||
|
*
|
||||||
|
* Created on: Dec 31, 2018
|
||||||
|
* @author Andrey Belomutskiy, (c) 2012-2019
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef HW_LAYER_CDM_ION_SENSE_H_
|
||||||
|
#define HW_LAYER_CDM_ION_SENSE_H_
|
||||||
|
|
||||||
|
#include "global.h"
|
||||||
|
#include "tunerstudio_configuration.h"
|
||||||
|
|
||||||
|
void ionPostState(TunerStudioOutputChannels *tsOutputChannels);
|
||||||
|
|
||||||
|
#endif /* HW_LAYER_CDM_ION_SENSE_H_ */
|
|
@ -29,6 +29,7 @@ HW_LAYER_EMS_CPP = $(HW_LAYER_EGT_CPP) \
|
||||||
$(PROJECT_DIR)/hw_layer/servo.cpp \
|
$(PROJECT_DIR)/hw_layer/servo.cpp \
|
||||||
$(PROJECT_DIR)/hw_layer/io_pins.cpp \
|
$(PROJECT_DIR)/hw_layer/io_pins.cpp \
|
||||||
$(PROJECT_DIR)/hw_layer/rtc_helper.cpp \
|
$(PROJECT_DIR)/hw_layer/rtc_helper.cpp \
|
||||||
|
$(PROJECT_DIR)/hw_layer/cdm_ion_sense.cpp \
|
||||||
$(PROJECT_DIR)/hw_layer/backup_ram.cpp
|
$(PROJECT_DIR)/hw_layer/backup_ram.cpp
|
||||||
|
|
||||||
ifeq ($(PROJECT_CPU),ST_STM32F7)
|
ifeq ($(PROJECT_CPU),ST_STM32F7)
|
||||||
|
|
Loading…
Reference in New Issue