Bug 1607 - rather frequent get/set/list related warnings
Summary: rather frequent get/set/list related warnings
Status: RESOLVED FIXED
Alias: None
Product: PulseView
Classification: Unclassified
Component: Other (show other bugs)
Version: unreleased development snapshot
Hardware: All All
: Normal normal
Target Milestone: ---
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-09-13 20:54 CEST by Gerhard Sittig
Modified: 2020-10-26 22:40 CET (History)
1 user (show)



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Gerhard Sittig 2020-09-13 20:54:02 CEST
Recent pulseview sources introduced warnings which are frequent yet not 
necessary (the conditions they warn about are plausible and not harmful). 

$ pulseview -D -d fx2lafw 
"Note for device developers: Ignoring device configuration capability 'Continuous sampling' as it is missing GET and/or SET"
  "Note for device developers: Ignoring device configuration capability 'Trigger matches' as it is missing GET and/or SET"
  "Note for device developers: Ignoring device configuration capability 'Connection' as it is missing GET and/or SET"
  "Note for device developers: Ignoring device configuration capability 'Continuous sampling' as it is missing GET and/or SET"
  "Note for device developers: Ignoring device configuration capability 'Trigger matches' as it is missing GET and/or SET"
  "Note for device developers: Ignoring device configuration capability 'Connection' as it is missing GET and/or SET"

The specific warnings could get suppressed. The capability of supporting 
--continuous operation needs to be queried but not configured (it's a fixed 
feature of a device). The list of known trigger match options cannot get 
modified at runtime, it's a given device and driver feature set. The conn= 
spec is a scan option, a (found or specified at scan time) connection text 
can get queried, but is not adjustable during use after scan.
Comment 1 Soeren Apel 2020-10-26 22:40:49 CET
Fixed with d1b479f74c9d1eb61b56cc4980d7328ec50216df, thanks!