33 lines
644 B
C
33 lines
644 B
C
/*
|
|
* LogCore.h
|
|
*
|
|
* Created on: 17 May 2016
|
|
* Author: wentzelc
|
|
*/
|
|
|
|
#ifndef LOGCORE_H_
|
|
#define LOGCORE_H_
|
|
|
|
// redA Libraries
|
|
/* none */
|
|
|
|
// Standard C/C++ Libraries
|
|
/* none */
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
// Debug options
|
|
const short
|
|
OUT_NORMAL = 1,
|
|
OUT_HEX = 2,
|
|
OUT_CRLF = 4,
|
|
OUT_ASIS = 8;
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
bool ShowOutput( const char * Heading, const short Show, const char * Buffer, int Len = -1 );
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif /* LOGCORE_H_ */
|