2015-07-10 06:01:56 -07:00
|
|
|
/**
|
|
|
|
* @file status_loop.h
|
|
|
|
*
|
|
|
|
* @date Mar 15, 2013
|
2017-01-03 03:05:22 -08:00
|
|
|
* @author Andrey Belomutskiy, (c) 2012-2017
|
2015-07-10 06:01:56 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CONSOLE_LOOP_H_
|
|
|
|
#define CONSOLE_LOOP_H_
|
|
|
|
|
|
|
|
#include "engine.h"
|
|
|
|
|
2017-04-09 19:26:11 -07:00
|
|
|
void updateDevConsoleState(void);
|
2015-07-10 06:01:56 -07:00
|
|
|
void prepareTunerStudioOutputs(void);
|
2017-04-09 19:26:11 -07:00
|
|
|
void startStatusThreads(void);
|
|
|
|
void initStatusLoop(void);
|
2015-07-10 06:01:56 -07:00
|
|
|
void writeLogLine(void);
|
|
|
|
void setFullLog(int value);
|
2018-04-01 20:49:57 -07:00
|
|
|
void printOverallStatus(systime_t nowSeconds);
|
2015-07-10 06:01:56 -07:00
|
|
|
|
|
|
|
#endif /* CONSOLE_LOOP_H_ */
|