This commit is contained in:
rusEfi 2018-04-01 23:28:42 -04:00
parent 027caeea96
commit e5b7d44d26
2 changed files with 7 additions and 0 deletions

View File

@ -131,6 +131,10 @@ static bool getConsoleLine(BaseSequentialStream *chp, char *line, unsigned size)
CommandHandler console_line_callback;
/**
* todo: what does this variable currently mean? is it still needed?
* looks like things are a bit confusing here
*/
static bool b_isCommandLineConsoleOverTTL;
bool isCommandLineConsoleOverTTL(void) {

View File

@ -17,6 +17,9 @@ void printConfiguration(const engine_configuration_s *engineConfiguration);
void stopEngine(void);
void setCallFromPitStop(int durationMs);
void setEngineType(int value);
/**
* See also getEngine_type_e()
*/
const char* getConfigurationName(engine_type_e engineType);
#endif /* SETTINGS_H_ */