Fix debug.h and remove debug_config.h
This commit is contained in:
parent
197a921f44
commit
cb45c69d25
@ -19,9 +19,43 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#define DEBUG_H 1
|
#define DEBUG_H 1
|
||||||
|
|
||||||
#include "print.h"
|
#include "print.h"
|
||||||
#include "debug_config.h"
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Debug output control
|
||||||
|
*/
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif
|
||||||
|
|
||||||
|
typedef union {
|
||||||
|
uint8_t raw;
|
||||||
|
struct {
|
||||||
|
bool enable:1;
|
||||||
|
bool matrix:1;
|
||||||
|
bool keyboard:1;
|
||||||
|
bool mouse:1;
|
||||||
|
uint8_t reserved:4;
|
||||||
|
};
|
||||||
|
} debug_config_t;
|
||||||
|
|
||||||
|
extern debug_config_t debug_config;
|
||||||
|
debug_config_t debug_config __attribute__ ((weak)) = {};
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#define debug_enable (debug_config.enable)
|
||||||
|
#define debug_matrix (debug_config.matrix)
|
||||||
|
#define debug_keyboard (debug_config.keyboard)
|
||||||
|
#define debug_mouse (debug_config.mouse)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Debug print utils
|
||||||
|
*/
|
||||||
#ifndef NO_DEBUG
|
#ifndef NO_DEBUG
|
||||||
|
|
||||||
#define dprint(s) do { if (debug_enable) print(s); } while (0)
|
#define dprint(s) do { if (debug_enable) print(s); } while (0)
|
||||||
@ -29,11 +63,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#define dprintf(fmt, ...) do { if (debug_enable) xprintf(fmt, ##__VA_ARGS__); } while (0)
|
#define dprintf(fmt, ...) do { if (debug_enable) xprintf(fmt, ##__VA_ARGS__); } while (0)
|
||||||
#define dmsg(s) dprintf("%s at %s: %S\n", __FILE__, __LINE__, PSTR(s))
|
#define dmsg(s) dprintf("%s at %s: %S\n", __FILE__, __LINE__, PSTR(s))
|
||||||
|
|
||||||
/* DO NOT USE these anymore */
|
/* Deprecated. DO NOT USE these anymore, use dprintf instead. */
|
||||||
#define debug(s) do { if (debug_enable) print(s); } while (0)
|
#define debug(s) do { if (debug_enable) print(s); } while (0)
|
||||||
#define debugln(s) do { if (debug_enable) println(s); } while (0)
|
#define debugln(s) do { if (debug_enable) println(s); } while (0)
|
||||||
#define debug_S(s) do { if (debug_enable) print_S(s); } while (0)
|
|
||||||
#define debug_P(s) do { if (debug_enable) print_P(s); } while (0)
|
|
||||||
#define debug_msg(s) do { \
|
#define debug_msg(s) do { \
|
||||||
if (debug_enable) { \
|
if (debug_enable) { \
|
||||||
print(__FILE__); print(" at "); print_dec(__LINE__); print(" in "); print(": "); print(s); \
|
print(__FILE__); print(" at "); print_dec(__LINE__); print(" in "); print(": "); print(s); \
|
||||||
@ -56,7 +88,31 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#define debug_bin_reverse(data) debug_bin8(data)
|
#define debug_bin_reverse(data) debug_bin8(data)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
#include "nodebug.h"
|
|
||||||
|
/* NO_DEBUG */
|
||||||
|
#define dprint(s)
|
||||||
|
#define dprintln(s)
|
||||||
|
#define dprintf(fmt, ...)
|
||||||
|
#define dmsg(s)
|
||||||
|
#define debug(s)
|
||||||
|
#define debugln(s)
|
||||||
|
#define debug_msg(s)
|
||||||
|
#define debug_dec(data)
|
||||||
|
#define debug_decs(data)
|
||||||
|
#define debug_hex4(data)
|
||||||
|
#define debug_hex8(data)
|
||||||
|
#define debug_hex16(data)
|
||||||
|
#define debug_hex32(data)
|
||||||
|
#define debug_bin8(data)
|
||||||
|
#define debug_bin16(data)
|
||||||
|
#define debug_bin32(data)
|
||||||
|
#define debug_bin_reverse8(data)
|
||||||
|
#define debug_bin_reverse16(data)
|
||||||
|
#define debug_bin_reverse32(data)
|
||||||
|
#define debug_hex(data)
|
||||||
|
#define debug_bin(data)
|
||||||
|
#define debug_bin_reverse(data)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1,52 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright 2013 Jun Wako <wakojun@gmail.com>
|
|
||||||
|
|
||||||
This program is free software: you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation, either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This program 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 General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef DEBUG_CONFIG_H
|
|
||||||
#define DEBUG_CONFIG_H 1
|
|
||||||
|
|
||||||
#include <stdbool.h>
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* NOTE: Not portable. Bit field order depends on implementation */
|
|
||||||
typedef union {
|
|
||||||
uint8_t raw;
|
|
||||||
struct {
|
|
||||||
bool enable:1;
|
|
||||||
bool matrix:1;
|
|
||||||
bool keyboard:1;
|
|
||||||
bool mouse:1;
|
|
||||||
uint8_t reserved:4;
|
|
||||||
};
|
|
||||||
} debug_config_t;
|
|
||||||
debug_config_t debug_config;
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* for backward compatibility */
|
|
||||||
#define debug_enable (debug_config.enable)
|
|
||||||
#define debug_matrix (debug_config.matrix)
|
|
||||||
#define debug_keyboard (debug_config.keyboard)
|
|
||||||
#define debug_mouse (debug_config.mouse)
|
|
||||||
|
|
||||||
#endif
|
|
@ -18,30 +18,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||||||
#ifndef NODEBUG_H
|
#ifndef NODEBUG_H
|
||||||
#define NODEBUG_H 1
|
#define NODEBUG_H 1
|
||||||
|
|
||||||
#define dprint(s)
|
#define NO_DEBUG
|
||||||
#define dprintln(s)
|
#include "debug.h"
|
||||||
#define dprintf(fmt, ...)
|
#undef NO_DEBUG
|
||||||
#define dmsg(s)
|
|
||||||
|
|
||||||
#define debug(s)
|
|
||||||
#define debugln(s)
|
|
||||||
#define debug_S(s)
|
|
||||||
#define debug_P(s)
|
|
||||||
#define debug_msg(s)
|
|
||||||
#define debug_dec(data)
|
|
||||||
#define debug_decs(data)
|
|
||||||
#define debug_hex4(data)
|
|
||||||
#define debug_hex8(data)
|
|
||||||
#define debug_hex16(data)
|
|
||||||
#define debug_hex32(data)
|
|
||||||
#define debug_bin8(data)
|
|
||||||
#define debug_bin16(data)
|
|
||||||
#define debug_bin32(data)
|
|
||||||
#define debug_bin_reverse8(data)
|
|
||||||
#define debug_bin_reverse16(data)
|
|
||||||
#define debug_bin_reverse32(data)
|
|
||||||
#define debug_hex(data)
|
|
||||||
#define debug_bin(data)
|
|
||||||
#define debug_bin_reverse(data)
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user