29 lines
450 B
C
29 lines
450 B
C
/**
|
|
* @file eficonsole.h
|
|
* @brief Console package entry point header
|
|
*
|
|
* @date Nov 15, 2012
|
|
* @author Andrey Belomutskiy, (c) 2012-2015
|
|
*/
|
|
|
|
#pragma once
|
|
#ifndef RFICONSOLE_H_
|
|
#define RFICONSOLE_H_
|
|
|
|
#include "datalogging.h"
|
|
|
|
void initializeConsole(Logging *sharedLogger);
|
|
void print(const char *fmt, ...);
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* RFICONSOLE_H_ */
|