cleanup for pch (#3062)

* cleanup

* d
This commit is contained in:
Matthew Kennedy 2021-07-25 17:43:02 -07:00 committed by GitHub
parent f6095b8339
commit bd599ab374
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 3 additions and 15 deletions

View File

@ -60,6 +60,9 @@ struct persistent_config_s;
persistent_config_s *config = engine->config; \
(void)engineConfiguration; \
(void)config;
#define CONFIG(x) engineConfiguration->x
#define ENGINE(x) engine->x
#else // EFI_UNIT_TEST
// These are the non-unit-test (AKA real firmware) noop versions

View File

@ -3,7 +3,6 @@
#include "engine_configuration.h"
#include "test_signal_executor.h"
#include "trigger_central.h"
#include "map_resize.h"
#include "engine_math.h"

View File

@ -9,6 +9,3 @@
#include "global.h"
#include "engine_ptr.h"
#define CONFIG(x) engineConfiguration->x
#define ENGINE(x) engine->x

View File

@ -7,7 +7,6 @@
#include "global.h"
#include "test_signal_executor.h"
#include "io_pins.h"
#include "event_queue.h"
#include "pwm_generator_logic.h"

View File

@ -1,10 +0,0 @@
/**
* @file test_signal_executor.h
*
* @date Nov 28, 2013
* @author Andrey Belomutskiy, (c) 2012-2020
*/
#pragma once
int getRevolutionCounter();