agilent-dmm: File naming consistency changes.
This commit is contained in:
parent
7ade12b470
commit
6cf1a87bfb
|
@ -179,9 +179,9 @@ src_libdrivers_la_SOURCES = src/drivers.c
|
||||||
|
|
||||||
if HW_AGILENT_DMM
|
if HW_AGILENT_DMM
|
||||||
src_libdrivers_la_SOURCES += \
|
src_libdrivers_la_SOURCES += \
|
||||||
src/hardware/agilent-dmm/api.c \
|
src/hardware/agilent-dmm/protocol.h \
|
||||||
src/hardware/agilent-dmm/agilent-dmm.h \
|
src/hardware/agilent-dmm/protocol.c \
|
||||||
src/hardware/agilent-dmm/sched.c
|
src/hardware/agilent-dmm/api.c
|
||||||
endif
|
endif
|
||||||
if HW_APPA_55II
|
if HW_APPA_55II
|
||||||
src_libdrivers_la_SOURCES += \
|
src_libdrivers_la_SOURCES += \
|
||||||
|
|
|
@ -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 "agilent-dmm.h"
|
#include "protocol.h"
|
||||||
|
|
||||||
static const uint32_t scanopts[] = {
|
static const uint32_t scanopts[] = {
|
||||||
SR_CONF_CONN,
|
SR_CONF_CONN,
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <libsigrok/libsigrok.h>
|
#include <libsigrok/libsigrok.h>
|
||||||
#include "libsigrok-internal.h"
|
#include "libsigrok-internal.h"
|
||||||
#include "agilent-dmm.h"
|
#include "protocol.h"
|
||||||
|
|
||||||
static void dispatch(const struct sr_dev_inst *sdi)
|
static void dispatch(const struct sr_dev_inst *sdi)
|
||||||
{
|
{
|
|
@ -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_AGILENT_DMM_AGILENT_DMM_H
|
#ifndef LIBSIGROK_HARDWARE_AGILENT_DMM_PROTOCOL_H
|
||||||
#define LIBSIGROK_HARDWARE_AGILENT_DMM_AGILENT_DMM_H
|
#define LIBSIGROK_HARDWARE_AGILENT_DMM_PROTOCOL_H
|
||||||
|
|
||||||
#define LOG_PREFIX "agilent-dmm"
|
#define LOG_PREFIX "agilent-dmm"
|
||||||
|
|
Loading…
Reference in New Issue