18 lines
272 B
C
18 lines
272 B
C
/*
|
|
* globals.h
|
|
*
|
|
* Created on: Aug 29, 2019
|
|
* Author: abody
|
|
*/
|
|
|
|
#ifndef GLOBALS_H_
|
|
#define GLOBALS_H_
|
|
#include <f4ll_cpp/serialconsole.h>
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
extern f4ll_cpp::SerialConsole<257> *g_console;
|
|
|
|
#endif // __cplusplus
|
|
|
|
#endif /* GLOBALS_H_ */
|