30 lines
646 B
C
30 lines
646 B
C
/**
|
|
* @file ford_aspire.h
|
|
* @brief 1996 Ford Aspire default engine configuration
|
|
*
|
|
* @date Aug 30, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2013
|
|
*
|
|
* http://rusefi.com/forum/viewtopic.php?t=375
|
|
*
|
|
*/
|
|
|
|
#ifndef FORD_ASPIRE_H_
|
|
#define FORD_ASPIRE_H_
|
|
|
|
#include "engine_configuration.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
void setFordAspireEngineConfiguration(engine_configuration_s *engineConfiguration);
|
|
void setFordAspireengine_configuration2_s(engine_configuration_s *engineConfiguration, engine_configuration2_s *engineConfiguration2);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* FORD_ASPIRE_H_ */
|