forked from mirrors/qmk_userspace
[Core] Introduce pointing device specific debug messages (#17663)
This commit is contained in:
parent
d910e8df77
commit
e99ec28f5f
9 changed files with 50 additions and 59 deletions
14
quantum/pointing_device_internal.h
Normal file
14
quantum/pointing_device_internal.h
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2022 Stefan Kerkmann
|
||||
// SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef POINTING_DEVICE_DEBUG
|
||||
# include "debug.h"
|
||||
# include "print.h"
|
||||
# define pd_dprintf(...) dprintf(__VA_ARGS__)
|
||||
#else
|
||||
# define pd_dprintf(...) \
|
||||
do { \
|
||||
} while (0)
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue