X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=sigrok-proto.h;h=4105405be5867e836c684573583ce3b86859ed46;hb=3af71f0da646de1e61ccbed2e85e3fca9798565c;hp=2d2b5fd063dd209ab47a4ea69da2a0c1f8879489;hpb=15278f3e9cf4c4a4a6c331e042f9935709343c82;p=libsigrok.git diff --git a/sigrok-proto.h b/sigrok-proto.h index 2d2b5fd0..4105405b 100644 --- a/sigrok-proto.h +++ b/sigrok-proto.h @@ -39,24 +39,21 @@ int sr_datastore_put(struct sr_datastore *ds, void *data, unsigned int length, /*--- device.c --------------------------------------------------------------*/ -void sr_device_scan(void); -int sr_init_hwplugins(struct sr_device_plugin *plugin); +int sr_device_scan(void); GSList *sr_device_list(void); -struct sr_device *sr_device_new(struct sr_device_plugin *plugin, - int plugin_index, int num_probes); -void sr_device_clear(struct sr_device *device); -void sr_device_destroy(struct sr_device *dev); - -void sr_device_probe_clear(struct sr_device *device, int probenum); -void sr_device_probe_add(struct sr_device *device, const char *name); -struct sr_probe *sr_device_probe_find(struct sr_device *device, int probenum); -void sr_device_probe_name(struct sr_device *device, int probenum, - const char *name); - -void sr_device_trigger_clear(struct sr_device *device); -void sr_device_trigger_set(struct sr_device *device, int probenum, - const char *trigger); -gboolean sr_device_has_hwcap(struct sr_device *device, int hwcap); +struct sr_device *sr_device_new(const struct sr_device_plugin *plugin, + int plugin_index); +int sr_device_clear(struct sr_device *device); +int sr_device_probe_clear(struct sr_device *device, int probenum); +int sr_device_probe_add(struct sr_device *device, const char *name); +struct sr_probe *sr_device_probe_find(const struct sr_device *device, + int probenum); +int sr_device_probe_name(struct sr_device *device, int probenum, + const char *name); +int sr_device_trigger_clear(struct sr_device *device); +int sr_device_trigger_set(struct sr_device *device, int probenum, + const char *trigger); +gboolean sr_device_has_hwcap(const struct sr_device *device, int hwcap); /*--- filter.c --------------------------------------------------------------*/ @@ -67,6 +64,7 @@ int sr_filter_probes(int in_unitsize, int out_unitsize, const int *probelist, /*--- hwplugin.c ------------------------------------------------------------*/ GSList *sr_list_hwplugins(void); +int sr_init_hwplugins(struct sr_device_plugin *plugin); void sr_cleanup_hwplugins(void); /* Generic device instances */ @@ -106,12 +104,6 @@ void sr_session_destroy(void); void sr_session_device_clear(void); int sr_session_device_add(struct sr_device *device); -#if 0 -/* Protocol analyzers setup */ -void sr_session_pa_clear(void); -void sr_session_pa_add(struct sr_analyzer *pa); -#endif - /* Datafeed setup */ void sr_session_datafeed_callback_clear(void); void sr_session_datafeed_callback_add(sr_datafeed_callback callback);