rusefi/firmware/controllers/settings.h

22 lines
631 B
C
Raw Normal View History

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