custom-board-bundle-sample-.../firmware/console/eficonsole.h

26 lines
406 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_
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
void initializeConsole(void);
void print(const char *fmt, ...);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* RFICONSOLE_H_ */