deree-de5000: rename to serial-lcr, update configure logic
The former DER EE DE-5000 driver was a very thin wrapper around the ES51919 LCR meter chipset. None of its source was specific to the deree-de5000 device. In fact it contained code for all currently supported LCR meters, and it's expected that all LCR meters which will get added in the future will fit in as well. Follow the serial-dmm model. Rename the src/hardware/deree-de5000/ directory to serial-lcr/. Update the configure logic. Although the source directory and the configure option are named serial-lcr, the LCR meter still is used by specifying the "deree-de5000" device driver (which just happens to reside in the serial-lcr driver sources, among others).
This commit is contained in:
parent
8626feaeb5
commit
503220ec8d
|
@ -272,10 +272,6 @@ src_libdrivers_la_SOURCES += \
|
|||
src/hardware/demo/protocol.c \
|
||||
src/hardware/demo/api.c
|
||||
endif
|
||||
if HW_DEREE_DE5000
|
||||
src_libdrivers_la_SOURCES += \
|
||||
src/hardware/deree-de5000/api.c
|
||||
endif
|
||||
if HW_FLUKE_DMM
|
||||
src_libdrivers_la_SOURCES += \
|
||||
src/hardware/fluke-dmm/protocol.h \
|
||||
|
@ -453,6 +449,10 @@ src_libdrivers_la_SOURCES += \
|
|||
src/hardware/serial-dmm/protocol.c \
|
||||
src/hardware/serial-dmm/api.c
|
||||
endif
|
||||
if HW_SERIAL_LCR
|
||||
src_libdrivers_la_SOURCES += \
|
||||
src/hardware/serial-lcr/api.c
|
||||
endif
|
||||
if HW_SYSCLK_LWLA
|
||||
src_libdrivers_la_SOURCES += \
|
||||
src/hardware/sysclk-lwla/lwla.h \
|
||||
|
|
|
@ -233,7 +233,6 @@ SR_DRIVER([Center 3xx], [center-3xx], [libserialport])
|
|||
SR_DRIVER([ChronoVu LA], [chronovu-la], [libusb libftdi])
|
||||
SR_DRIVER([Colead SLM], [colead-slm], [libserialport])
|
||||
SR_DRIVER([Conrad DIGI 35 CPU], [conrad-digi-35-cpu], [libserialport])
|
||||
SR_DRIVER([DER EE DE-5000], [deree-de5000], [libserialport])
|
||||
SR_DRIVER([demo], [demo])
|
||||
SR_DRIVER([Fluke DMM], [fluke-dmm], [libserialport])
|
||||
SR_DRIVER([FTDI LA], [ftdi-la], [libusb libftdi])
|
||||
|
@ -264,6 +263,7 @@ SR_DRIVER([Rigol DS], [rigol-ds])
|
|||
SR_DRIVER([Saleae Logic16], [saleae-logic16], [libusb])
|
||||
SR_DRIVER([SCPI PPS], [scpi-pps])
|
||||
SR_DRIVER([serial DMM], [serial-dmm], [libserialport])
|
||||
SR_DRIVER([serial LCR], [serial-lcr], [libserialport])
|
||||
SR_DRIVER([Sysclk LWLA], [sysclk-lwla], [libusb])
|
||||
SR_DRIVER([Teleinfo], [teleinfo], [libserialport])
|
||||
SR_DRIVER([Testo], [testo], [libusb])
|
||||
|
|
Loading…
Reference in New Issue