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

19 lines
344 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
#endif /* RFICONSOLE_H_ */