X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hardware%2Fzeroplus-logic-cube%2Fanalyzer.h;h=29f2c29229f311e69f08ea447396eaafbfa844e2;hb=HEAD;hp=d427c4369e5c53aa3d637f1d27f9ea3f9be6319d;hpb=45c59c8bdd01954f9214fe7b869d92c55415d109;p=libsigrok.git diff --git a/hardware/zeroplus-logic-cube/analyzer.h b/hardware/zeroplus-logic-cube/analyzer.h deleted file mode 100644 index d427c436..00000000 --- a/hardware/zeroplus-logic-cube/analyzer.h +++ /dev/null @@ -1,108 +0,0 @@ -/* - * This file is part of the sigrok project. - * - * Copyright (C) 2010 Sven Peter - * Copyright (C) 2010 Haxx Enterprises - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or - * without modification, are permitted provided that the following - * conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, - * this list of conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, - * this list of conditions and the following disclaimer in the documentation - * and/or other materials provided with the distribution. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" - * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE - * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE - * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE - * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF - * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS - * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN - * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) - * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF - * THE POSSIBILITY OF SUCH DAMAGE. - */ - -#ifndef LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_ANALYZER_H -#define LIBSIGROK_HARDWARE_ZEROPLUS_LOGIC_CUBE_ANALYZER_H - -#include -#include "libsigrok.h" - -#define STATUS_FLAG_NONE 0x00 -#define STATUS_FLAG_RESET 0x01 -#define STATUS_FLAG_INIT 0x02 -#define STATUS_FLAG_GO 0x04 -#define STATUS_FLAG_PAUSE 0x08 -#define STATUS_FLAG_READ 0x10 -#define STATUS_FLAG_20 0x20 - -#define MEMORY_SIZE_8K 0x00 -#define MEMORY_SIZE_64K 0x01 -#define MEMORY_SIZE_128K 0x02 -#define MEMORY_SIZE_512K 0x04 - -#define STATUS_BUSY 0x01 /* WTF / ??? */ -#define STATUS_READY 0x02 -#define STATUS_BUTTON_PRESSED 0x04 - -#define CHANNEL_A 0x1000 -#define CHANNEL_B 0x2000 -#define CHANNEL_C 0x3000 -#define CHANNEL_D 0x4000 - -#define FREQ_SCALE_HZ 0 -#define FREQ_SCALE_KHZ 1 -#define FREQ_SCALE_MHZ 2 - -#define FILTER_HIGH 0 -#define FILTER_LOW 1 - -#define COMPRESSION_NONE 0x0001 -#define COMPRESSION_ENABLE 0x8001 -#define COMPRESSION_DOUBLE 0x8002 - -enum { - TRIGGER_HIGH = 0, - TRIGGER_LOW, - TRIGGER_POSEDGE, - TRIGGER_NEGEDGE, - TRIGGER_ANYEDGE, -}; - -SR_PRIV void analyzer_set_freq(int freq, int scale); -SR_PRIV void analyzer_set_ramsize_trigger_address(unsigned int address); -SR_PRIV void analyzer_set_triggerbar_address(unsigned int address); -SR_PRIV void analyzer_set_compression(unsigned int type); -SR_PRIV void analyzer_set_memory_size(unsigned int size); -SR_PRIV void analyzer_add_trigger(int channel, int type); -SR_PRIV void analyzer_set_trigger_count(int count); -SR_PRIV void analyzer_add_filter(int channel, int type); - -SR_PRIV unsigned int analyzer_read_id(libusb_device_handle *devh); -SR_PRIV unsigned int analyzer_get_stop_address(libusb_device_handle *devh); -SR_PRIV unsigned int analyzer_get_now_address(libusb_device_handle *devh); -SR_PRIV unsigned int analyzer_get_trigger_address(libusb_device_handle *devh); -SR_PRIV int analyzer_decompress(void *input, unsigned int input_len, - void *output, unsigned int output_len); - -SR_PRIV void analyzer_reset(libusb_device_handle *devh); -SR_PRIV void analyzer_initialize(libusb_device_handle *devh); -SR_PRIV void analyzer_wait(libusb_device_handle *devh, int set, int unset); -SR_PRIV void analyzer_read_start(libusb_device_handle *devh); -SR_PRIV int analyzer_read_data(libusb_device_handle *devh, void *buffer, - unsigned int size); -SR_PRIV void analyzer_read_stop(libusb_device_handle *devh); -SR_PRIV void analyzer_start(libusb_device_handle *devh); -SR_PRIV void analyzer_configure(libusb_device_handle *devh); - -SR_PRIV void analyzer_wait_button(libusb_device_handle *devh); -SR_PRIV void analyzer_wait_data(libusb_device_handle *devh); - -#endif