21 lines
408 B
C
21 lines
408 B
C
/**
|
|
* @file mazda_323.h
|
|
*
|
|
* 90-94 Mazda 323 (1.6l SOHC)
|
|
* 90-93 Ford Festiva (1.3l SOHC)
|
|
*
|
|
* http://rusefi.com/forum/viewtopic.php?f=3&t=498
|
|
*
|
|
* @date Mar 8, 2014
|
|
* @author Andrey Belomutskiy, (c) 2012-2016
|
|
*/
|
|
|
|
#ifndef MAZDA_323_H_
|
|
#define MAZDA_323_H_
|
|
|
|
#include "engine_configuration.h"
|
|
|
|
void setMazda323EngineConfiguration(engine_configuration_s *engineConfiguration);
|
|
|
|
#endif /* MAZDA_323_H_ */
|