docs & clean-up
This commit is contained in:
parent
0c70f0d26c
commit
ac9faf6646
|
@ -251,6 +251,7 @@ void Engine::preCalculate(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
|
||||
#if EFI_TUNER_STUDIO
|
||||
// we take 2 bytes of crc32, no idea if it's right to call it crc16 or not
|
||||
// we have a hack here - we rely on the fact that engineMake is the first of three relevant fields
|
||||
tsOutputChannels.engineMakeCodeNameCrc16 = crc32(engineConfiguration->engineMake, 3 * VEHICLE_INFO_SIZE);
|
||||
#endif /* EFI_TUNER_STUDIO */
|
||||
}
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#include <stdlib.h>
|
||||
|
||||
#include "global.h"
|
||||
#include "test_find_index.h"
|
||||
|
||||
#include "engine_configuration.h"
|
||||
|
||||
|
@ -40,7 +39,7 @@ GTEST_API_ int main(int argc, char **argv) {
|
|||
// printTriggerDebug = true;
|
||||
|
||||
// resizeMap();
|
||||
printf("Success 20200131\r\n");
|
||||
printf("Success 20200510\r\n");
|
||||
printAllTriggers();
|
||||
// printConvertedTable();
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
/*
|
||||
* test_find_index.h
|
||||
*
|
||||
* Created on: Oct 30, 2013
|
||||
* @author Andrey Belomutskiy, (c) 2012-2020
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
void testFindIndex(void);
|
|
@ -1,20 +1,21 @@
|
|||
TESTS_SRC_CPP = \
|
||||
tests/trigger/test_symmetrical_crank.cpp \
|
||||
tests/trigger/test_trigger_decoder.cpp \
|
||||
tests/trigger/test_trigger_noiseless.cpp \
|
||||
tests/trigger/test_trigger_multi_sync.cpp \
|
||||
tests/trigger/test_cam_vvt_input.cpp \
|
||||
tests/test_util.cpp \
|
||||
tests/test_ion.cpp \
|
||||
tests/test_aux_valves.cpp \
|
||||
tests/test_on_demand_parameters.cpp \
|
||||
tests/test_hip9011.cpp \
|
||||
tests/test_cj125.cpp \
|
||||
tests/test_cam_vtt_input.cpp \
|
||||
tests/test_engine_math.cpp \
|
||||
tests/test_startOfCrankingPrimingPulse.cpp \
|
||||
tests/test_miata_na6_real_cranking.cpp \
|
||||
tests/test_fasterEngineSpinningUp.cpp \
|
||||
tests/test_dwell_corner_case_issue_796.cpp \
|
||||
tests/test_symmetrical_crank.cpp \
|
||||
tests/test_idle_controller.cpp \
|
||||
tests/test_trigger_decoder.cpp \
|
||||
tests/test_trigger_noiseless.cpp \
|
||||
tests/test_issue_898.cpp \
|
||||
tests/test_etb.cpp \
|
||||
tests/test_ignition_scheduling.cpp \
|
||||
|
@ -23,7 +24,6 @@ TESTS_SRC_CPP = \
|
|||
tests/test_one_cylinder_logic.cpp \
|
||||
tests/test_maf2map.cpp \
|
||||
tests/test_fuelCut.cpp \
|
||||
tests/test_trigger_multi_sync.cpp \
|
||||
tests/test_pwm_generator.cpp \
|
||||
tests/test_logic_expression.cpp \
|
||||
tests/test_speed_density.cpp \
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* test_cam_vtt_input.cpp
|
||||
* test_cam_vvt_input.cpp
|
||||
*
|
||||
* Created on: Jan 13, 2019
|
||||
* @author Andrey Belomutskiy, (c) 2012-2020
|
Loading…
Reference in New Issue