X-Git-Url: https://sigrok.org/gitweb/?p=sigrok-util.git;a=blobdiff_plain;f=source%2Fdrv-protocol.h;h=30d42a53946d3913b516c4f8bfeeefb1900003a3;hp=f6906116893ee906b268dbdbe2c0123b25540e2d;hb=f6b99cb8bd9b84fb47d15cedc32f97832bdc13ba;hpb=d48f3793b2907c96e31750bc87ae236542ed1052 diff --git a/source/drv-protocol.h b/source/drv-protocol.h index f690611..30d42a5 100644 --- a/source/drv-protocol.h +++ b/source/drv-protocol.h @@ -1,7 +1,7 @@ /* * This file is part of the libsigrok project. * - * Copyright (C) ${year} ${author} <${email}> + * Copyright (C) {year} {author} <{email}> * * 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 @@ -17,18 +17,18 @@ * along with this program. If not, see . */ -#ifndef LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H -#define LIBSIGROK_HARDWARE_${upper}_PROTOCOL_H +#ifndef LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H +#define LIBSIGROK_HARDWARE_{upper}_PROTOCOL_H #include #include #include #include "libsigrok-internal.h" -#define LOG_PREFIX "${short}" +#define LOG_PREFIX "{short}" /** Private, per-device-instance driver context. */ -struct dev_context { +struct dev_context {{ /* Model-specific information */ /* Acquisition settings */ @@ -37,8 +37,8 @@ struct dev_context { /* Temporary state across callbacks */ -}; +}}; -SR_PRIV int ${lib}_receive_data(int fd, int revents, void *cb_data); +SR_PRIV int {lib}_receive_data(int fd, int revents, void *cb_data); #endif