#include <glib.h>#include <glib/gstdio.h>#include <ftdi.h>#include <string.h>#include "sigrok.h"#include "sigrok-internal.h"#include "asix-sigma.h"
Go to the source code of this file.
Defines | |
| #define | USB_VENDOR 0xa600 |
| #define | USB_PRODUCT 0xa000 |
| #define | USB_DESCRIPTION "ASIX SIGMA" |
| #define | USB_VENDOR_NAME "ASIX" |
| #define | USB_MODEL_NAME "SIGMA" |
| #define | USB_MODEL_VERSION "" |
| #define | TRIGGER_TYPES "rf10" |
| #define | NUM_PROBES 16 |
Variables | |
| SR_PRIV struct sr_dev_driver | asix_sigma_driver_info |
| #define NUM_PROBES 16 |
Definition at line 41 of file asix-sigma.c.
| #define TRIGGER_TYPES "rf10" |
Definition at line 40 of file asix-sigma.c.
| #define USB_DESCRIPTION "ASIX SIGMA" |
Definition at line 36 of file asix-sigma.c.
| #define USB_MODEL_NAME "SIGMA" |
Definition at line 38 of file asix-sigma.c.
| #define USB_MODEL_VERSION "" |
Definition at line 39 of file asix-sigma.c.
| #define USB_PRODUCT 0xa000 |
Definition at line 35 of file asix-sigma.c.
| #define USB_VENDOR 0xa600 |
Definition at line 34 of file asix-sigma.c.
| #define USB_VENDOR_NAME "ASIX" |
Definition at line 37 of file asix-sigma.c.
{
.name = "asix-sigma",
.longname = "ASIX SIGMA/SIGMA2",
.api_version = 1,
.init = hw_init,
.cleanup = hw_cleanup,
.dev_open = hw_dev_open,
.dev_close = hw_dev_close,
.dev_info_get = hw_dev_info_get,
.dev_status_get = hw_dev_status_get,
.hwcap_get_all = hw_hwcap_get_all,
.dev_config_set = hw_dev_config_set,
.dev_acquisition_start = hw_dev_acquisition_start,
.dev_acquisition_stop = hw_dev_acquisition_stop,
}
Definition at line 1430 of file asix-sigma.c.
1.7.6.1