fome-fw/firmware/controllers/settings.h

29 lines
609 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
* @author Andrey Belomutskiy, (c) 2012-2014
*/
#ifndef INJECTOR_CONTROL_H_
#define INJECTOR_CONTROL_H_
2014-09-20 11:03:33 -07:00
#include "engine_configuration.h"
void initSettings(engine_configuration_s *engineConfiguration);
2014-08-29 07:52:33 -07:00
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
2014-09-20 12:03:00 -07:00
void printSpiState(Logging *logger, board_configuration_s *boardConfiguration);
2014-08-29 07:52:33 -07:00
void pokeControl(void);
void setEngineType(int value);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* INJECTOR_CONTROL_H_ */