Skip to content

Instantly share code, notes, and snippets.

@C47D
Created November 28, 2019 23:34
Show Gist options
  • Save C47D/a9f540e3400a53ee5c43b2ed9a425d2d to your computer and use it in GitHub Desktop.
Save C47D/a9f540e3400a53ee5c43b2ed9a425d2d to your computer and use it in GitHub Desktop.
Habilitar y deshabilitar mensajes de depuración definiendo un simbolo
#define DEBUG_MP3_PLAYER
#ifdef DEBUG_MP3_PLAYER
#define DEBUG_(fmt, ...) \
DBG_println(fmt, __VA_ARGS__)
#define DEBUG(...) \
DEBUG_(__VA_ARGS__, "")
#else
#define DEBUG(fmt, ...)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment