mirror of
https://github.com/prdgmshift/usbliter8
synced 2026-06-27 12:59:56 +00:00
21 lines
279 B
C
21 lines
279 B
C
#pragma once
|
|
|
|
#define DEBUG_ENABLED (0)
|
|
|
|
#include <stdio.h>
|
|
|
|
#define INFO(fmt, ...) \
|
|
printf(fmt "\n", ##__VA_ARGS__)
|
|
|
|
#if DEBUG_ENABLED
|
|
|
|
#define DEBUG(fmt, ...) \
|
|
printf("%s(): " fmt "\n", __func__, ##__VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DEBUG(fmt, ...) \
|
|
(void)0
|
|
|
|
#endif
|