I got carried away, but DEAD CODE?!
This commit is contained in:
parent
2acdbf308b
commit
4574aaccce
|
@ -27,7 +27,6 @@
|
|||
#include "accel_enrichment.h"
|
||||
#include "allsensors.h"
|
||||
#include "engine_math.h"
|
||||
#include "signal_executor.h"
|
||||
#if EFI_TUNER_STUDIO
|
||||
#include "tunerstudio_configuration.h"
|
||||
extern TunerStudioOutputChannels tsOutputChannels;
|
||||
|
|
|
@ -25,7 +25,6 @@
|
|||
#include "advance_map.h"
|
||||
#include "fuel_math.h"
|
||||
#include "settings.h"
|
||||
#include "signal_executor.h"
|
||||
#include "speed_density.h"
|
||||
#include "fsio_impl.h"
|
||||
|
||||
|
|
|
@ -8,7 +8,8 @@
|
|||
#pragma once
|
||||
|
||||
#include "global.h"
|
||||
#include "signal_executor.h"
|
||||
#include "efi_gpio.h"
|
||||
#include "scheduler.h"
|
||||
#include "fl_stack.h"
|
||||
#include "trigger_structure.h"
|
||||
|
||||
|
|
|
@ -33,7 +33,6 @@
|
|||
#include "fsio_impl.h"
|
||||
#include "idle_thread.h"
|
||||
#include "rpm_calculator.h"
|
||||
#include "signal_executor.h"
|
||||
#include "main_trigger_callback.h"
|
||||
#include "io_pins.h"
|
||||
#include "flash_main.h"
|
||||
|
|
|
@ -9,7 +9,6 @@
|
|||
#pragma once
|
||||
|
||||
#include "global.h"
|
||||
#include "signal_executor.h"
|
||||
#include "engine_configuration.h"
|
||||
#include "engine.h"
|
||||
|
||||
|
|
|
@ -28,7 +28,6 @@
|
|||
|
||||
#include "injector_central.h"
|
||||
#include "io_pins.h"
|
||||
#include "signal_executor.h"
|
||||
#include "main_trigger_callback.h"
|
||||
#include "engine_configuration.h"
|
||||
#include "pin_repository.h"
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
#ifndef INJECTOR_CENTRAL_H_
|
||||
#define INJECTOR_CENTRAL_H_
|
||||
|
||||
#include "signal_executor.h"
|
||||
#include "engine.h"
|
||||
|
||||
void fanBench(void);
|
||||
|
|
|
@ -34,7 +34,6 @@
|
|||
#include "allsensors.h"
|
||||
#include "engine_configuration.h"
|
||||
#include "interpolation.h"
|
||||
#include "signal_executor.h"
|
||||
#include "engine.h"
|
||||
#include "engine_math.h"
|
||||
|
||||
|
|
|
@ -1,25 +0,0 @@
|
|||
/**
|
||||
* @file signal_executor.cpp
|
||||
*
|
||||
* todo: we should split this file into two:
|
||||
* one for pure scheduling and another one for signal output which would
|
||||
* use the scheduling
|
||||
*
|
||||
* @date Dec 4, 2013
|
||||
* @author Andrey Belomutskiy, (c) 2012-2018
|
||||
*
|
||||
* This file is part of rusEfi - see http://rusefi.com
|
||||
*
|
||||
* rusEfi is free software; you can redistribute it and/or modify it under the terms of
|
||||
* the GNU General Public License as published by the Free Software Foundation; either
|
||||
* version 3 of the License, or (at your option) any later version.
|
||||
*
|
||||
* rusEfi is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
|
||||
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with this program.
|
||||
* If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
|
|
@ -1,19 +0,0 @@
|
|||
/**
|
||||
* @file signal_executor.h
|
||||
* @brief Asynchronous output signal header
|
||||
*
|
||||
* @date Feb 10, 2013
|
||||
* @author Andrey Belomutskiy, (c) 2012-2017
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "global.h"
|
||||
#include "scheduler.h"
|
||||
#include "efi_gpio.h"
|
||||
|
||||
#if EFI_SIGNAL_EXECUTOR_SLEEP
|
||||
#include "signal_executor_sleep.h"
|
||||
#endif /* EFI_SIGNAL_EXECUTOR_SLEEP */
|
||||
|
||||
|
|
@ -24,7 +24,6 @@
|
|||
|
||||
#include "global.h"
|
||||
#include "scheduler.h"
|
||||
#include "signal_executor.h"
|
||||
#include "main_trigger_callback.h"
|
||||
|
||||
#if EFI_SIMULATOR
|
||||
|
|
|
@ -35,7 +35,6 @@
|
|||
#include "trigger_central.h"
|
||||
#include "spark_logic.h"
|
||||
#include "rpm_calculator.h"
|
||||
#include "signal_executor.h"
|
||||
#include "engine_configuration.h"
|
||||
#include "interpolation.h"
|
||||
#include "advance_map.h"
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
* @author Andrey Belomutskiy, (c) 2012-2018
|
||||
*/
|
||||
#include "global.h"
|
||||
#include "efi_gpio.h"
|
||||
#include "efi_wave.h"
|
||||
|
||||
int getPreviousIndex(const int currentIndex, const int size) {
|
||||
|
|
|
@ -18,7 +18,6 @@
|
|||
#include "data_buffer.h"
|
||||
#include "pin_repository.h"
|
||||
#include "allsensors.h"
|
||||
#include "signal_executor.h"
|
||||
#include "engine_configuration.h"
|
||||
#include "trigger_central.h"
|
||||
#include "os_util.h"
|
||||
|
|
|
@ -5,7 +5,6 @@
|
|||
* @author Andrey Belomutskiy, (c) 2012-2018
|
||||
*/
|
||||
|
||||
#include "signal_executor.h"
|
||||
#include "global_execution_queue.h"
|
||||
|
||||
bool_t debugSignalExecutor = false;
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#include "global.h"
|
||||
#include <time.h>
|
||||
|
||||
#include "signal_executor.h"
|
||||
#include "test_signal_executor.h"
|
||||
#include "io_pins.h"
|
||||
#include "event_queue.h"
|
||||
|
|
Loading…
Reference in New Issue