hantek-dso: File naming consistency changes.

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

View File

@ -319,8 +319,8 @@ src_libdrivers_la_SOURCES += \
endif
if HW_HANTEK_DSO
src_libdrivers_la_SOURCES += \
src/hardware/hantek-dso/dso.h \
src/hardware/hantek-dso/dso.c \
src/hardware/hantek-dso/protocol.h \
src/hardware/hantek-dso/protocol.c \
src/hardware/hantek-dso/api.c
endif
if HW_HP_3457A

View File

@ -33,7 +33,7 @@
#include <libusb.h>
#include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h"
#include "dso.h"
#include "protocol.h"
/* Max time in ms before we want to check on USB events */
/* TODO tune this properly */

View File

@ -25,7 +25,7 @@
#include <libusb.h>
#include <libsigrok/libsigrok.h>
#include "libsigrok-internal.h"
#include "dso.h"
#include "protocol.h"
#define NUM_CHANNELS 2

View File

@ -19,8 +19,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LIBSIGROK_HARDWARE_HANTEK_DSO_DSO_H
#define LIBSIGROK_HARDWARE_HANTEK_DSO_DSO_H
#ifndef LIBSIGROK_HARDWARE_HANTEK_DSO_PROTOCOL_H
#define LIBSIGROK_HARDWARE_HANTEK_DSO_PROTOCOL_H
#define LOG_PREFIX "hantek-dso"