fluke-dmm: File naming consistency changes.

This commit is contained in:
Uwe Hermann 2016-09-18 18:52:53 +02:00
parent 6cf1a87bfb
commit 2cb232a9e4
4 changed files with 6 additions and 6 deletions

View File

@ -275,8 +275,8 @@ src_libdrivers_la_SOURCES += \
endif endif
if HW_FLUKE_DMM if HW_FLUKE_DMM
src_libdrivers_la_SOURCES += \ src_libdrivers_la_SOURCES += \
src/hardware/fluke-dmm/fluke-dmm.h \ src/hardware/fluke-dmm/protocol.h \
src/hardware/fluke-dmm/fluke.c \ src/hardware/fluke-dmm/protocol.c \
src/hardware/fluke-dmm/api.c src/hardware/fluke-dmm/api.c
endif endif
if HW_FTDI_LA if HW_FTDI_LA

View File

@ -25,7 +25,7 @@
#include <string.h> #include <string.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"
#include "fluke-dmm.h" #include "protocol.h"
static const uint32_t scanopts[] = { static const uint32_t scanopts[] = {
SR_CONF_CONN, SR_CONF_CONN,

View File

@ -24,7 +24,7 @@
#include <glib.h> #include <glib.h>
#include <libsigrok/libsigrok.h> #include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h" #include "libsigrok-internal.h"
#include "fluke-dmm.h" #include "protocol.h"
static struct sr_datafeed_analog *handle_qm_18x(const struct sr_dev_inst *sdi, static struct sr_datafeed_analog *handle_qm_18x(const struct sr_dev_inst *sdi,
char **tokens) char **tokens)

View File

@ -17,8 +17,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef LIBSIGROK_HARDWARE_FLUKE_DMM_FLUKE_DMM_H #ifndef LIBSIGROK_HARDWARE_FLUKE_DMM_PROTOCOL_H
#define LIBSIGROK_HARDWARE_FLUKE_DMM_FLUKE_DMM_H #define LIBSIGROK_HARDWARE_FLUKE_DMM_PROTOCOL_H
#define LOG_PREFIX "fluke-dmm" #define LOG_PREFIX "fluke-dmm"