20 lines
383 B
C
20 lines
383 B
C
/**
|
|
* @file ford_aspire.h
|
|
* @brief 1996 Ford Aspire default engine configuration
|
|
*
|
|
* @date Aug 30, 2013
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
|
*
|
|
* http://rusefi.com/forum/viewtopic.php?t=375
|
|
*
|
|
*/
|
|
|
|
#ifndef FORD_ASPIRE_H_
|
|
#define FORD_ASPIRE_H_
|
|
|
|
#include "engine.h"
|
|
|
|
void setFordAspireEngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
|
|
|
#endif /* FORD_ASPIRE_H_ */
|