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