X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=ec14a717f6c34b538957323c3a7ba4225a285807;hb=0832e7d675a9ea308ddcafbb2a1ed425c720fa1e;hp=dae5ffed5e3c665df998412e1b757126d6541ffb;hpb=126eded091582d9b988d793141d6c428bc38457d;p=sigrok-util.git diff --git a/source/drv-protocol.h b/source/drv-protocol.h index dae5ffe..ec14a71 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -1,5 +1,5 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrok project. * * Copyright (C) ${year} ${author} <${email}> * @@ -17,8 +17,21 @@ * along with this program. If not, see . */ -#ifndef LIBSIGROK_${upper}_H -#define LIBSIGROK_${upper}_H +#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H +#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H + +#include +#include "libsigrok.h" +#include "libsigrok-internal.h" + +/* Message logging helpers with driver-specific prefix string. */ +#define DRIVER_LOG_DOMAIN "${short}: " +#define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args) +#define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args) +#define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args) +#define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args) +#define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args) +#define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args) /** Private, per-device-instance driver context. */ struct dev_context {