ion sense progress

This commit is contained in:
rusefi 2018-12-31 16:00:41 -05:00
parent 59a5789191
commit ff6f653ece
4 changed files with 34 additions and 1 deletions

View File

@ -2,7 +2,7 @@
* @file can_hw.h
*
* @date Dec 11, 2013
* @author Andrey Belomutskiy, (c) 2012-2017
* @author Andrey Belomutskiy, (c) 2012-2019
*/
#ifndef CAN_HW_H_

View File

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

View File

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

View File

@ -29,6 +29,7 @@ HW_LAYER_EMS_CPP = $(HW_LAYER_EGT_CPP) \
$(PROJECT_DIR)/hw_layer/servo.cpp \
$(PROJECT_DIR)/hw_layer/io_pins.cpp \
$(PROJECT_DIR)/hw_layer/rtc_helper.cpp \
$(PROJECT_DIR)/hw_layer/cdm_ion_sense.cpp \
$(PROJECT_DIR)/hw_layer/backup_ram.cpp
ifeq ($(PROJECT_CPU),ST_STM32F7)