1. add cv181x functions 2. Delete some useless files and add .gitignore Change-Id: Iea2b2fa43b5a1152e5e99fb32b88f8d2c249251a
79 lines
2.1 KiB
C
79 lines
2.1 KiB
C
#ifndef _JPU_LOG_H_
|
|
#define _JPU_LOG_H_
|
|
|
|
#include <stdlib.h>
|
|
#include <command.h>
|
|
#include <stdio.h>
|
|
#include <config.h>
|
|
#include <vsprintf.h>
|
|
|
|
enum { NONE = 0, INFO, WARN, ERR, TRACE, MAX_LOG_LEVEL };
|
|
|
|
enum {
|
|
LOG_HAS_DAY_NAME = 1, /**< Include day name [default: no] */
|
|
LOG_HAS_YEAR = 2, /**< Include year digit [no] */
|
|
LOG_HAS_MONTH = 4, /**< Include month [no] */
|
|
LOG_HAS_DAY_OF_MON = 8, /**< Include day of month [no] */
|
|
LOG_HAS_TIME = 16, /**< Include time [yes] */
|
|
LOG_HAS_MICRO_SEC = 32, /**< Include microseconds [yes] ......*/
|
|
LOG_HAS_FILE = 64, /**< Include sender in the log [yes] */
|
|
LOG_HAS_NEWLINE = 128, /**< Terminate each call with newline [yes] .*/
|
|
LOG_HAS_CR = 256, /**< Include carriage return [no] */
|
|
LOG_HAS_SPACE = 512, /**< Include two spaces before log[yes] ..*/
|
|
LOG_HAS_COLOR = 1024, /**< Colorize logs [yes on win32] */
|
|
LOG_HAS_LEVEL_TEXT = 2048 /**< Include level text string [no] */
|
|
};
|
|
|
|
enum {
|
|
TERM_COLOR_R = 2, /**< Red */
|
|
TERM_COLOR_G = 4, /**< Green */
|
|
TERM_COLOR_B = 1, /**< Blue. */
|
|
TERM_COLOR_BRIGHT = 8 /**< Bright mask. */
|
|
};
|
|
|
|
#define MAX_PRINT_LENGTH 512
|
|
#ifdef ANDROID
|
|
#include <utils/Log.h>
|
|
#undef LOG_NDEBUG
|
|
#define LOG_NDEBUG 0
|
|
#undef LOG_TAG
|
|
#define LOG_TAG "JPUAPI"
|
|
#endif
|
|
|
|
#define JLOG LogMsg
|
|
|
|
#define LOG_ENABLE_FILE SetLogDecor(GetLogDecor() | LOG_HAS_FILE)
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
int InitLog(void);
|
|
void DeInitLog(void);
|
|
|
|
void SetMaxLogLevel(int level);
|
|
int GetMaxLogLevel(void);
|
|
|
|
void SetLogColor(int level, int color);
|
|
int GetLogColor(int level);
|
|
|
|
void SetLogDecor(int decor);
|
|
int GetLogDecor(void);
|
|
|
|
#define JLOG_LEVEL ERR
|
|
|
|
#define LogMsg(level, msg, ...) \
|
|
if (JLOG_LEVEL <= (level)) \
|
|
printf("%s = %d, " msg, __func__, __LINE__, ##__VA_ARGS__)
|
|
|
|
void timer_stop(void);
|
|
double timer_elapsed_us(void);
|
|
double timer_elapsed_ms(void);
|
|
int timer_is_valid(void);
|
|
double timer_frequency(void);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif //#ifndef _JPU_LOG_H_
|