2017-06-04 12:05:15 -07:00
|
|
|
/**
|
|
|
|
* @file persistent_store.cpp
|
|
|
|
* @brief Controllers package entry point code
|
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* @date Feb 7, 2013
|
2020-01-13 18:57:43 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2020
|
2017-06-04 12:05:15 -07:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2021-07-25 22:05:17 -07:00
|
|
|
#include "pch.h"
|
|
|
|
|
2019-04-09 20:00:17 -07:00
|
|
|
#if !EFI_UNIT_TEST
|
|
|
|
#include "sensor_chart.h"
|
2017-06-04 12:05:15 -07:00
|
|
|
#include "trigger_central.h"
|
|
|
|
|
|
|
|
persistent_config_container_s persistentState CCM_OPTIONAL;
|
|
|
|
|
2021-11-15 21:23:14 -08:00
|
|
|
#else // EFI_UNIT_TEST
|
|
|
|
|
|
|
|
persistent_config_s * config;
|
|
|
|
engine_configuration_s * engineConfiguration;
|
|
|
|
|
2019-04-09 20:00:17 -07:00
|
|
|
#endif /* EFI_UNIT_TEST */
|