mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2015 Software Radio Systems Limited
|
|
*
|
|
* \section LICENSE
|
|
*
|
|
* This file is part of the srsLTE library.
|
|
*
|
|
* srsLTE is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsLTE is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* File: debug.h
|
|
*
|
|
* Description: Debug output utilities.
|
|
*
|
|
* Reference:
|
|
*****************************************************************************/
|
|
|
|
#ifndef DEBUG_H
|
|
#define DEBUG_H
|
|
|
|
#include <stdio.h>
|
|
#include "srslte/config.h"
|
|
|
|
#define SRSLTE_VERBOSE_DEBUG 2
|
|
#define SRSLTE_VERBOSE_INFO 1
|
|
#define SRSLTE_VERBOSE_NONE 0
|
|
|
|
#include <sys/time.h>
|
|
SRSLTE_API void get_time_interval(struct timeval * tdata);
|
|
|
|
#define SRSLTE_DEBUG_ENABLED 1
|
|
|
|
SRSLTE_API extern int srslte_verbose;
|
|
|
|
#define SRSLTE_VERBOSE_ISINFO() (srslte_verbose>=SRSLTE_VERBOSE_INFO)
|
|
#define SRSLTE_VERBOSE_ISDEBUG() (srslte_verbose>=SRSLTE_VERBOSE_DEBUG)
|
|
#define SRSLTE_VERBOSE_ISNONE() (srslte_verbose==SRSLTE_VERBOSE_NONE)
|
|
|
|
#define PRINT_DEBUG srslte_verbose=SRSLTE_VERBOSE_DEBUG
|
|
#define PRINT_INFO srslte_verbose=SRSLTE_VERBOSE_INFO
|
|
#define PRINT_NONE srslte_verbose=SRSLTE_VERBOSE_NONE
|
|
|
|
#define DEBUG(_fmt, ...) if (SRSLTE_DEBUG_ENABLED && srslte_verbose >= SRSLTE_VERBOSE_DEBUG) \
|
|
fprintf(stdout, "[DEBUG]: " _fmt, __VA_ARGS__)
|
|
|
|
#define INFO(_fmt, ...) if (SRSLTE_DEBUG_ENABLED && srslte_verbose >= SRSLTE_VERBOSE_INFO) \
|
|
fprintf(stdout, "[INFO]: " _fmt, __VA_ARGS__)
|
|
|
|
#define ERROR(_fmt) fprintf(stderr, "%s.%d: " _fmt "\n", __FILE__, __LINE__)
|
|
|
|
#endif // DEBUG_H
|