rusefi-1/firmware/controllers/settings.h

22 lines
619 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file settings.h
* @brief This file is about configuring engine via the human-readable protocol
*
* @date Dec 30, 2012
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#ifndef INJECTOR_CONTROL_H_
#define INJECTOR_CONTROL_H_
2015-01-01 13:04:22 -08:00
#include "engine.h"
2014-09-20 11:03:33 -07:00
void initSettings(engine_configuration_s *engineConfiguration);
2015-01-01 13:04:22 -08:00
void printSpiState(Logging *logger, board_configuration_s *boardConfiguration);
2015-01-01 15:04:13 -08:00
void printConfiguration(engine_configuration_s *engineConfiguration);
2015-01-08 20:04:09 -08:00
void stopEngine(void);
2014-08-29 07:52:33 -07:00
void setEngineType(int value);
2015-01-13 06:03:51 -08:00
const char* getConfigurationName(engine_type_e engineType);
2014-08-29 07:52:33 -07:00
#endif /* INJECTOR_CONTROL_H_ */