From d98c4e35ce3187a8d4618a6c26ce35de636d7b91 Mon Sep 17 00:00:00 2001 From: Joel Holdsworth Date: Sat, 3 Mar 2012 18:09:29 +0000 Subject: [PATCH] fx2lafw: Removed CMD_STOP and renumbered commands --- hardware/fx2lafw/command.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/hardware/fx2lafw/command.h b/hardware/fx2lafw/command.h index e56a3ac2..cbb76d7f 100644 --- a/hardware/fx2lafw/command.h +++ b/hardware/fx2lafw/command.h @@ -18,8 +18,7 @@ */ /* Protocol commands */ -#define CMD_START 0xb0 -#define CMD_STOP 0xb1 -#define CMD_GET_FW_VERSION 0xb2 +#define CMD_GET_FW_VERSION 0xb0 +#define CMD_START 0xb1 int command_start_acquisition(libusb_device_handle *devhdl);