fome-fw/firmware/console/status_loop.h

35 lines
644 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file status_loop.h
*
* @date Mar 15, 2013
* @author Andrey Belomutskiy, (c) 2012-2014
*/
#ifndef CONSOLE_LOOP_H_
#define CONSOLE_LOOP_H_
2014-10-13 09:03:10 -07:00
#ifdef __cplusplus
#include "engine.h"
void updateDevConsoleState(Engine *engine);
void printSensors(Engine *engine);
void printState(Engine *engine, int currentCkpEventCounter);
2014-10-21 09:04:13 -07:00
void startStatusThreads(Engine *engine);
2014-10-21 10:03:09 -07:00
void initStatusLoop(Engine *engine);
2014-10-13 09:03:10 -07:00
#endif /* __cplusplus */
2014-08-29 07:52:33 -07:00
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
bool getFullLog(void);
void setFullLog(int value);
void sayOsHello(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* CONSOLE_LOOP_H_ */