fome-fw/firmware/console/eficonsole.h

29 lines
450 B
C
Raw Normal View History

2014-08-29 07:52:33 -07:00
/**
* @file eficonsole.h
* @brief Console package entry point header
*
* @date Nov 15, 2012
2015-01-12 15:04:10 -08:00
* @author Andrey Belomutskiy, (c) 2012-2015
2014-08-29 07:52:33 -07:00
*/
#pragma once
#ifndef RFICONSOLE_H_
#define RFICONSOLE_H_
2015-01-15 13:03:51 -08:00
#include "datalogging.h"
void initializeConsole(Logging *sharedLogger);
void print(const char *fmt, ...);
2014-08-29 07:52:33 -07:00
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* RFICONSOLE_H_ */