X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=hwdriver.c;h=de7407db2f27761588ebab94eafa59ace143be9d;hb=0aba65da9f4031ca6eb7d0c268e4d06b0d0bfa06;hp=118e49a2571159ec5aec56789c12c12d33f84713;hpb=48a486cd3ed51cfefce271224541502f4388c225;p=libsigrok.git diff --git a/hwdriver.c b/hwdriver.c index 118e49a2..de7407db 100644 --- a/hwdriver.c +++ b/hwdriver.c @@ -23,12 +23,26 @@ #include #include #include +#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */ #include "libsigrok.h" #include "libsigrok-internal.h" +/** + * @file + * + * Hardware driver handling in libsigrok. + */ + +/** + * @defgroup grp_driver Hardware drivers + * + * Hardware driver handling in libsigrok. + * + * @{ + */ /* Driver scanning options. */ -SR_API struct sr_hwcap_option sr_drvopts[] = { +static struct sr_hwcap_option sr_drvopts[] = { {SR_HWOPT_MODEL, SR_T_KEYVALUE, "Model", "model"}, {SR_HWOPT_CONN, SR_T_CHAR, "Connection", "conn"}, {SR_HWOPT_SERIALCOMM, SR_T_CHAR, "Serial communication", "serialcomm"}, @@ -36,7 +50,7 @@ SR_API struct sr_hwcap_option sr_drvopts[] = { }; /* Device instance options. */ -SR_API struct sr_hwcap_option sr_hwcap_options[] = { +static struct sr_hwcap_option sr_devopts[] = { {SR_HWCAP_SAMPLERATE, SR_T_UINT64, "Sample rate", "samplerate"}, {SR_HWCAP_CAPTURE_RATIO, SR_T_UINT64, "Pre-trigger capture ratio", "captureratio"}, {SR_HWCAP_PATTERN_MODE, SR_T_CHAR, "Pattern generator mode", "pattern"}, @@ -53,12 +67,25 @@ SR_API struct sr_hwcap_option sr_hwcap_options[] = { {0, 0, NULL, NULL}, }; +/** @cond PRIVATE */ +#ifdef HAVE_HW_COLEAD_SLM +extern SR_PRIV struct sr_dev_driver colead_slm_driver_info; +#endif #ifdef HAVE_LA_DEMO extern SR_PRIV struct sr_dev_driver demo_driver_info; #endif +#ifdef HAVE_HW_LASCAR_EL_USB +extern SR_PRIV struct sr_dev_driver lascar_el_usb_driver_info; +#endif #ifdef HAVE_LA_OLS extern SR_PRIV struct sr_dev_driver ols_driver_info; #endif +#ifdef HAVE_HW_TONDAJ_SL_814 +extern SR_PRIV struct sr_dev_driver tondaj_sl_814_driver_info; +#endif +#ifdef HAVE_HW_VICTOR_DMM +extern SR_PRIV struct sr_dev_driver victor_dmm_driver_info; +#endif #ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE extern SR_PRIV struct sr_dev_driver zeroplus_logic_cube_driver_info; #endif @@ -71,7 +98,7 @@ extern SR_PRIV struct sr_dev_driver chronovu_la8_driver_info; #ifdef HAVE_LA_LINK_MSO19 extern SR_PRIV struct sr_dev_driver link_mso19_driver_info; #endif -#ifdef HAVE_LA_ALSA +#ifdef HAVE_HW_ALSA extern SR_PRIV struct sr_dev_driver alsa_driver_info; #endif #ifdef HAVE_LA_FX2LAFW @@ -80,17 +107,52 @@ extern SR_PRIV struct sr_dev_driver fx2lafw_driver_info; #ifdef HAVE_HW_HANTEK_DSO extern SR_PRIV struct sr_dev_driver hantek_dso_driver_info; #endif -#ifdef HAVE_HW_GENERICDMM -extern SR_PRIV struct sr_dev_driver genericdmm_driver_info; +#ifdef HAVE_HW_AGILENT_DMM +extern SR_PRIV struct sr_dev_driver agdmm_driver_info; +#endif +#ifdef HAVE_HW_FLUKE_DMM +extern SR_PRIV struct sr_dev_driver flukedmm_driver_info; #endif +#ifdef HAVE_HW_SERIAL_DMM +extern SR_PRIV struct sr_dev_driver digitek_dt4000zc_driver_info; +extern SR_PRIV struct sr_dev_driver tekpower_tp4000zc_driver_info; +extern SR_PRIV struct sr_dev_driver metex_me31_driver_info; +extern SR_PRIV struct sr_dev_driver peaktech_3410_driver_info; +extern SR_PRIV struct sr_dev_driver mastech_mas345_driver_info; +extern SR_PRIV struct sr_dev_driver va_va18b_driver_info; +extern SR_PRIV struct sr_dev_driver metex_m3640d_driver_info; +extern SR_PRIV struct sr_dev_driver peaktech_4370_driver_info; +extern SR_PRIV struct sr_dev_driver pce_pce_dm32_driver_info; +extern SR_PRIV struct sr_dev_driver radioshack_22_168_driver_info; +extern SR_PRIV struct sr_dev_driver radioshack_22_812_driver_info; +extern SR_PRIV struct sr_dev_driver voltcraft_vc820_ser_driver_info; +extern SR_PRIV struct sr_dev_driver voltcraft_vc840_ser_driver_info; +#endif +#ifdef HAVE_HW_UNI_T_DMM +extern SR_PRIV struct sr_dev_driver uni_t_ut61d_driver_info; +extern SR_PRIV struct sr_dev_driver voltcraft_vc820_driver_info; +#endif +/** @endcond */ static struct sr_dev_driver *drivers_list[] = { +#ifdef HAVE_HW_COLEAD_SLM + &colead_slm_driver_info, +#endif #ifdef HAVE_LA_DEMO &demo_driver_info, #endif +#ifdef HAVE_HW_LASCAR_EL_USB + &lascar_el_usb_driver_info, +#endif #ifdef HAVE_LA_OLS &ols_driver_info, #endif +#ifdef HAVE_HW_TONDAJ_SL_814 + &tondaj_sl_814_driver_info, +#endif +#ifdef HAVE_HW_VICTOR_DMM + &victor_dmm_driver_info, +#endif #ifdef HAVE_LA_ZEROPLUS_LOGIC_CUBE &zeroplus_logic_cube_driver_info, #endif @@ -103,7 +165,7 @@ static struct sr_dev_driver *drivers_list[] = { #ifdef HAVE_LA_LINK_MSO19 &link_mso19_driver_info, #endif -#ifdef HAVE_LA_ALSA +#ifdef HAVE_HW_ALSA &alsa_driver_info, #endif #ifdef HAVE_LA_FX2LAFW @@ -112,8 +174,30 @@ static struct sr_dev_driver *drivers_list[] = { #ifdef HAVE_HW_HANTEK_DSO &hantek_dso_driver_info, #endif -#ifdef HAVE_HW_GENERICDMM - &genericdmm_driver_info, +#ifdef HAVE_HW_AGILENT_DMM + &agdmm_driver_info, +#endif +#ifdef HAVE_HW_FLUKE_DMM + &flukedmm_driver_info, +#endif +#ifdef HAVE_HW_SERIAL_DMM + &digitek_dt4000zc_driver_info, + &tekpower_tp4000zc_driver_info, + &metex_me31_driver_info, + &peaktech_3410_driver_info, + &mastech_mas345_driver_info, + &va_va18b_driver_info, + &metex_m3640d_driver_info, + &peaktech_4370_driver_info, + &pce_pce_dm32_driver_info, + &radioshack_22_168_driver_info, + &radioshack_22_812_driver_info, + &voltcraft_vc820_ser_driver_info, + &voltcraft_vc840_ser_driver_info, +#endif +#ifdef HAVE_HW_UNI_T_DMM + &uni_t_ut61d_driver_info, + &voltcraft_vc820_driver_info, #endif NULL, }; @@ -132,15 +216,17 @@ SR_API struct sr_dev_driver **sr_driver_list(void) /** * Initialize a hardware driver. * + * @param ctx A libsigrok context object allocated by a previous call to + * sr_init(). * @param driver The driver to initialize. * * @return SR_OK if all went well, or an error code otherwise. */ -SR_API int sr_driver_init(struct sr_dev_driver *driver) +SR_API int sr_driver_init(struct sr_context *ctx, struct sr_dev_driver *driver) { if (driver->init) - return driver->init(); + return driver->init(ctx); return SR_OK; } @@ -172,6 +258,7 @@ SR_API GSList *sr_driver_scan(struct sr_dev_driver *driver, GSList *options) return NULL; } +/** @private */ SR_PRIV void sr_hw_cleanup_all(void) { int i; @@ -244,17 +331,37 @@ SR_API gboolean sr_driver_hwcap_exists(struct sr_dev_driver *driver, int hwcap) /** * Get information about a hardware driver option. * - * @param hwopt The option to get. + * @param opt The option to get. * - * @return A pointer to a struct with information about the parameter, or NULL - * if the option was not found. + * @return A pointer to a struct sr_hwcap_option, or NULL if the option + * was not found. */ -SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt) +SR_API const struct sr_hwcap_option *sr_drvopt_get(int opt) { int i; for (i = 0; sr_drvopts[i].hwcap; i++) { - if (sr_drvopts[i].hwcap == hwopt) + if (sr_drvopts[i].hwcap == opt) + return &sr_drvopts[i]; + } + + return NULL; +} + +/** + * Get information about a hardware driver option, by name. + * + * @param optname The name of the option to get. + * + * @return A pointer to a struct sr_hwcap_option, or NULL if the option + * was not found. + */ +SR_API const struct sr_hwcap_option *sr_drvopt_name_get(const char *optname) +{ + int i; + + for (i = 0; sr_drvopts[i].hwcap; i++) { + if (!strcmp(sr_drvopts[i].shortname, optname)) return &sr_drvopts[i]; } @@ -264,18 +371,38 @@ SR_API const struct sr_hwcap_option *sr_drvopt_get(int hwopt) /** * Get information about a device option. * - * @param hwcap The capability to get. + * @param opt The option to get. + * + * @return A pointer to a struct sr_hwcap_option, or NULL if the option + * was not found. + */ +SR_API const struct sr_hwcap_option *sr_devopt_get(int opt) +{ + int i; + + for (i = 0; sr_devopts[i].hwcap; i++) { + if (sr_devopts[i].hwcap == opt) + return &sr_devopts[i]; + } + + return NULL; +} + +/** + * Get information about a device option, by name. + * + * @param optname The name of the option to get. * - * @return A pointer to a struct with information about the parameter, or NULL - * if the capability was not found. + * @return A pointer to a struct sr_hwcap_option, or NULL if the option + * was not found. */ -SR_API const struct sr_hwcap_option *sr_hw_hwcap_get(int hwcap) +SR_API const struct sr_hwcap_option *sr_devopt_name_get(const char *optname) { int i; - for (i = 0; sr_hwcap_options[i].hwcap; i++) { - if (sr_hwcap_options[i].hwcap == hwcap) - return &sr_hwcap_options[i]; + for (i = 0; sr_devopts[i].hwcap; i++) { + if (!strcmp(sr_devopts[i].shortname, optname)) + return &sr_devopts[i]; } return NULL; @@ -283,13 +410,17 @@ SR_API const struct sr_hwcap_option *sr_hw_hwcap_get(int hwcap) /* Unnecessary level of indirection follows. */ +/** @private */ SR_PRIV int sr_source_remove(int fd) { return sr_session_source_remove(fd); } +/** @private */ SR_PRIV int sr_source_add(int fd, int events, int timeout, sr_receive_data_callback_t cb, void *cb_data) { return sr_session_source_add(fd, events, timeout, cb, cb_data); } + +/** @} */