]> sigrok.org Git - libsigrok.git/blobdiff - hwdriver.c
testo: Initial driver skeleton.
[libsigrok.git] / hwdriver.c
index aca6d1e1bc32a0a927177cc886bd656be2d4e850..3ac151a8eff154d5c89fbe1799c7a14a90d1e3b0 100644 (file)
@@ -28,6 +28,9 @@
 #include "libsigrok-internal.h"
 
 /** @cond PRIVATE */
+#ifdef HAVE_HW_TESTO
+extern SR_PRIV struct sr_dev_driver testo_driver_info;
+#endif
 #define LOG_PREFIX "hwdriver"
 /** @endcond */
 
  */
 
 static struct sr_config_info sr_config_info_data[] = {
-       {SR_CONF_CONN, SR_T_CHAR, "conn",
+       {SR_CONF_CONN, SR_T_STRING, "conn",
                "Connection", NULL},
-       {SR_CONF_SERIALCOMM, SR_T_CHAR, "serialcomm",
+       {SR_CONF_SERIALCOMM, SR_T_STRING, "serialcomm",
                "Serial communication", NULL},
        {SR_CONF_SAMPLERATE, SR_T_UINT64, "samplerate",
                "Sample rate", NULL},
        {SR_CONF_CAPTURE_RATIO, SR_T_UINT64, "captureratio",
                "Pre-trigger capture ratio", NULL},
-       {SR_CONF_PATTERN_MODE, SR_T_CHAR, "pattern",
+       {SR_CONF_PATTERN_MODE, SR_T_STRING, "pattern",
                "Pattern", NULL},
-       {SR_CONF_TRIGGER_TYPE, SR_T_CHAR, "triggertype",
-               "Trigger types", NULL},
+       {SR_CONF_TRIGGER_MATCH, SR_T_INT32, "triggermatch",
+               "Trigger matches", NULL},
        {SR_CONF_EXTERNAL_CLOCK, SR_T_BOOL, "external_clock",
                "External clock mode", NULL},
        {SR_CONF_SWAP, SR_T_BOOL, "swap",
                "Swap channel order", NULL},
        {SR_CONF_RLE, SR_T_BOOL, "rle",
                "Run Length Encoding", NULL},
-       {SR_CONF_TRIGGER_SLOPE, SR_T_CHAR, "triggerslope",
+       {SR_CONF_TRIGGER_SLOPE, SR_T_STRING, "triggerslope",
                "Trigger slope", NULL},
-       {SR_CONF_TRIGGER_SOURCE, SR_T_CHAR, "triggersource",
+       {SR_CONF_TRIGGER_SOURCE, SR_T_STRING, "triggersource",
                "Trigger source", NULL},
        {SR_CONF_HORIZ_TRIGGERPOS, SR_T_FLOAT, "horiz_triggerpos",
                "Horizontal trigger position", NULL},
@@ -74,17 +77,17 @@ static struct sr_config_info sr_config_info_data[] = {
                "Buffer size", NULL},
        {SR_CONF_TIMEBASE, SR_T_RATIONAL_PERIOD, "timebase",
                "Time base", NULL},
-       {SR_CONF_FILTER, SR_T_CHAR, "filter",
+       {SR_CONF_FILTER, SR_T_STRING, "filter",
                "Filter targets", NULL},
        {SR_CONF_VDIV, SR_T_RATIONAL_VOLT, "vdiv",
                "Volts/div", NULL},
-       {SR_CONF_COUPLING, SR_T_CHAR, "coupling",
+       {SR_CONF_COUPLING, SR_T_STRING, "coupling",
                "Coupling", NULL},
        {SR_CONF_DATALOG, SR_T_BOOL, "datalog",
                "Datalog", NULL},
-       {SR_CONF_SPL_WEIGHT_FREQ, SR_T_CHAR, "spl_weight_freq",
+       {SR_CONF_SPL_WEIGHT_FREQ, SR_T_STRING, "spl_weight_freq",
                "Sound pressure level frequency weighting", NULL},
-       {SR_CONF_SPL_WEIGHT_TIME, SR_T_CHAR, "spl_weight_time",
+       {SR_CONF_SPL_WEIGHT_TIME, SR_T_STRING, "spl_weight_time",
                "Sound pressure level time weighting", NULL},
        {SR_CONF_HOLD_MAX, SR_T_BOOL, "hold_max",
                "Hold max", NULL},
@@ -96,7 +99,7 @@ static struct sr_config_info sr_config_info_data[] = {
                "Voltage threshold", NULL },
        {SR_CONF_POWER_OFF, SR_T_BOOL, "power_off",
                "Power off", NULL},
-       {SR_CONF_DATA_SOURCE, SR_T_CHAR, "data_source",
+       {SR_CONF_DATA_SOURCE, SR_T_STRING, "data_source",
                "Data source", NULL},
        {SR_CONF_NUM_LOGIC_CHANNELS, SR_T_INT32, "logic_channels",
                "Number of logic channels", NULL},
@@ -112,7 +115,7 @@ static struct sr_config_info sr_config_info_data[] = {
                "Maximum output current", NULL},
        {SR_CONF_OUTPUT_ENABLED, SR_T_BOOL, "output_enabled",
                "Output enabled", NULL},
-       {SR_CONF_OUTPUT_CHANNEL, SR_T_CHAR, "output_channel",
+       {SR_CONF_OUTPUT_CHANNEL, SR_T_STRING, "output_channel",
                "Output channel modes", NULL},
        {SR_CONF_OVER_VOLTAGE_PROTECTION, SR_T_BOOL, "ovp",
                "Over-voltage protection", NULL},
@@ -120,7 +123,7 @@ static struct sr_config_info sr_config_info_data[] = {
                "Over-current protection", NULL},
        {SR_CONF_LIMIT_SAMPLES, SR_T_UINT64, "limit_samples",
                "Sample limit", NULL},
-       {SR_CONF_CLOCK_EDGE, SR_T_CHAR, "clock_edge",
+       {SR_CONF_CLOCK_EDGE, SR_T_STRING, "clock_edge",
                "Clock edge", NULL},
        {0, 0, NULL, NULL, NULL},
 };
@@ -173,12 +176,19 @@ extern SR_PRIV struct sr_dev_driver kecheng_kc_330b_driver_info;
 #ifdef HAVE_HW_LASCAR_EL_USB
 extern SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info;
 #endif
+#ifdef HAVE_HW_MANSON_HCS_3XXX
+extern SR_PRIV struct sr_dev_driver manson_hcs_3xxx_driver_info;
+#endif
 #ifdef HAVE_HW_MIC_985XX
 extern SR_PRIV struct sr_dev_driver mic_98581_driver_info;
 extern SR_PRIV struct sr_dev_driver mic_98583_driver_info;
 #endif
+#ifdef HAVE_HW_MOTECH_LPS_30X
+extern SR_PRIV struct sr_dev_driver motech_lps_301_driver_info;
+#endif
 #ifdef HAVE_HW_NORMA_DMM
 extern SR_PRIV struct sr_dev_driver norma_dmm_driver_info;
+extern SR_PRIV struct sr_dev_driver siemens_b102x_driver_info;
 #endif
 #ifdef HAVE_HW_OLS
 extern SR_PRIV struct sr_dev_driver ols_driver_info;
@@ -195,6 +205,9 @@ extern SR_PRIV struct sr_dev_driver sysclk_lwla_driver_info;
 #ifdef HAVE_HW_TELEINFO
 extern SR_PRIV struct sr_dev_driver teleinfo_driver_info;
 #endif
+#ifdef HAVE_HW_TESTO
+extern SR_PRIV struct sr_dev_driver testo_driver_info;
+#endif
 #ifdef HAVE_HW_TONDAJ_SL_814
 extern SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info;
 #endif
@@ -328,12 +341,19 @@ static struct sr_dev_driver *drivers_list[] = {
 #ifdef HAVE_HW_LASCAR_EL_USB
        &lascar_el_usb_driver_info,
 #endif
+#ifdef HAVE_HW_MANSON_HCS_3XXX
+       &manson_hcs_3xxx_driver_info,
+#endif
 #ifdef HAVE_HW_MIC_985XX
        &mic_98581_driver_info,
        &mic_98583_driver_info,
 #endif
+#ifdef HAVE_HW_MOTECH_LPS_30X
+       &motech_lps_301_driver_info,
+#endif
 #ifdef HAVE_HW_NORMA_DMM
        &norma_dmm_driver_info,
+       &siemens_b102x_driver_info,
 #endif
 #ifdef HAVE_HW_OLS
        &ols_driver_info,
@@ -350,6 +370,9 @@ static struct sr_dev_driver *drivers_list[] = {
 #ifdef HAVE_HW_TELEINFO
        &teleinfo_driver_info,
 #endif
+#ifdef HAVE_HW_TESTO
+       &testo_driver_info,
+#endif
 #ifdef HAVE_HW_TONDAJ_SL_814
        &tondaj_sl_814_driver_info,
 #endif