]> sigrok.org Git - libsigrok.git/log
libsigrok.git
9 years agoFix two warnings when libserialport is not used.
Uwe Hermann [Sat, 17 Jan 2015 20:47:59 +0000 (21:47 +0100)]
Fix two warnings when libserialport is not used.

    CC       src/fallback.lo
  src/fallback.c: In function 'sr_serial_list':
  src/fallback.c:26:59: warning: unused parameter 'driver' [-Wunused-parameter]
   SR_API GSList *sr_serial_list(const struct sr_dev_driver *driver)
                                                             ^
  src/fallback.c: In function 'sr_serial_free':
  src/fallback.c:31:51: warning: unused parameter 'serial' [-Wunused-parameter]
   SR_API void sr_serial_free(struct sr_serial_port *serial)

9 years agoInstall libsigrokcxx headers in separate directory.
Uwe Hermann [Sat, 17 Jan 2015 19:29:05 +0000 (20:29 +0100)]
Install libsigrokcxx headers in separate directory.

Don't mix libsigrokcxx header files into the $prefix/include/libsigrok
directory. Use a separate $prefix/include/libsigrokcxx instead.

9 years agocxx: Rename include/libsigrok/ to include/libsigrokcxx/.
Uwe Hermann [Sat, 17 Jan 2015 19:11:53 +0000 (20:11 +0100)]
cxx: Rename include/libsigrok/ to include/libsigrokcxx/.

9 years agoRename libsigrok.hpp to libsigrokcxx.hpp.
Uwe Hermann [Sat, 17 Jan 2015 19:05:15 +0000 (20:05 +0100)]
Rename libsigrok.hpp to libsigrokcxx.hpp.

This avoids confusion of libsigrok.h vs. libsigrok.hpp and makes it
clearer that this is the main libsigrokcxx header.

9 years agolibsigrok.hpp: Fix incorrect glibmm.h #include.
Uwe Hermann [Sat, 17 Jan 2015 18:59:44 +0000 (19:59 +0100)]
libsigrok.hpp: Fix incorrect glibmm.h #include.

As per upstream docs "#include <glibmm.h>" is the correct usage,
the "glibmm-2.4" directory is handled correctly via pkg-config:

 $ pkg-config --cflags glibmm-2.4
 -I/usr/include/glibmm-2.4 [...]

9 years agolibsigrokcxx: Drop Requires.private entry.
Uwe Hermann [Sat, 17 Jan 2015 18:53:44 +0000 (19:53 +0100)]
libsigrokcxx: Drop Requires.private entry.

libsigrokcxx.pc has a "Requires" field listing "libsigrok" which
will cause libsigrok's "Requires.private" entries to be used/inherited
when 'pkg-config --libs --static libsigrokcxx' is used.

9 years agoRename libsigrokxx to the more common libsigrokcxx.
Uwe Hermann [Sat, 17 Jan 2015 17:49:04 +0000 (18:49 +0100)]
Rename libsigrokxx to the more common libsigrokcxx.

9 years agoMakefile.am: Use $(MKDIR_P) everywhere.
Uwe Hermann [Mon, 12 Jan 2015 00:19:12 +0000 (01:19 +0100)]
Makefile.am: Use $(MKDIR_P) everywhere.

9 years agoscpi: Fix incomplete data issue for e.g. Hameg HMO1024.
Mathias Katzer [Sun, 11 Jan 2015 00:40:28 +0000 (01:40 +0100)]
scpi: Fix incomplete data issue for e.g. Hameg HMO1024.

On a Hameg HMO1024 you get incomplete data because the USB transfer takes
longer than the scpi->read_timeout_ms of 1 second that is defined in
scpi_dev_inst_new(). Therefore reset the timeout in sr_scpi_get_string()
whenever the device sends a partial response.

9 years agohameg-hmo: Fix double-free issue.
Mathias Katzer [Sun, 11 Jan 2015 00:39:41 +0000 (01:39 +0100)]
hameg-hmo: Fix double-free issue.

9 years agohameg-hmo: Set SR_CONF_GET | SR_CONF_SET for frame limit.
Mathias Katzer [Sun, 11 Jan 2015 00:38:20 +0000 (01:38 +0100)]
hameg-hmo: Set SR_CONF_GET | SR_CONF_SET for frame limit.

Reading analog data from an HMO1024 (Firmware 04.527) failed because the
frame limit could not be set.

9 years agoPython bindings: respect DESTDIR.
Jiří Pinkava [Thu, 8 Jan 2015 23:45:48 +0000 (00:45 +0100)]
Python bindings: respect DESTDIR.

Thanks Aurelien Jacobs <redacted> for a suggested
fix/improvement.

9 years agoLimit frames instead of samples.
Janne Huttunen [Sat, 20 Dec 2014 15:33:24 +0000 (17:33 +0200)]
Limit frames instead of samples.

Since every individual measurement is represented by a single frame
and a "sample" isn't all that meaningful concept in this context,
it makes more sense to define possible limit in number of frames.
Make the es51919 driver to support setting a frame limit instead of
a sample limit.

9 years agoUse frames to group a single measurement result together.
Janne Huttunen [Sat, 20 Dec 2014 15:32:26 +0000 (17:32 +0200)]
Use frames to group a single measurement result together.

In most, but not all, modes the ES51919 reports two separate
analog values for each measurement sample. These values are
mapped to two separate channels and sent in two separate
packets.

A client program needs a way to determine which results are
parts of the same measurement and also know when a complete
measurement is received so it can process the sample. Use
the frame begin and end packets to separate groups that each
represent a single complete measurement.

9 years agoFix the channel indexes of the es51919 driver.
Janne Huttunen [Fri, 19 Dec 2014 19:45:56 +0000 (21:45 +0200)]
Fix the channel indexes of the es51919 driver.

Set the channel indexes to unique values instead of setting
them all zero.

9 years agofix autogen.sh on OS X. This fixes bug #516.
Rene Hopf [Tue, 6 Jan 2015 01:31:52 +0000 (02:31 +0100)]
fix autogen.sh on OS X. This fixes bug #516.

9 years agoFix compile error on FreeBSD
Uffe Jakobsen [Tue, 30 Dec 2014 23:32:44 +0000 (00:32 +0100)]
Fix compile error on FreeBSD

9 years agoserial.c: Cosmetics/consistency/documentation fixes.
Uwe Hermann [Sat, 3 Jan 2015 17:03:50 +0000 (18:03 +0100)]
serial.c: Cosmetics/consistency/documentation fixes.

9 years agoAdd a public API to list available serial ports.
Aurelien Jacobs [Sat, 6 Dec 2014 23:56:22 +0000 (00:56 +0100)]
Add a public API to list available serial ports.

9 years agoMention the Building#FAQ wiki page for common issues.
Uwe Hermann [Sat, 3 Jan 2015 16:38:06 +0000 (17:38 +0100)]
Mention the Building#FAQ wiki page for common issues.

9 years agofix numpy include path
Jiří Pinkava [Sat, 22 Nov 2014 03:52:58 +0000 (04:52 +0100)]
fix numpy include path

9 years agoREADME: Require SWIG >= 2.0.0.
Uwe Hermann [Sat, 6 Dec 2014 21:27:47 +0000 (22:27 +0100)]
README: Require SWIG >= 2.0.0.

We use %shared_ptr for example, which was introduced in SWIG 2.0.0.

9 years agoOnly save enabled channels to a session file.
Aurelien Jacobs [Tue, 25 Nov 2014 21:49:39 +0000 (22:49 +0100)]
Only save enabled channels to a session file.

This reverts bc96d5f08fe59ea7c51799b148946f5003c90927 which is not
needed anymore since we have a better fix for #410 and #495.

9 years agosession_file: Enable only the probes that are actually listed in metadata.
Aurelien Jacobs [Tue, 25 Nov 2014 21:44:30 +0000 (22:44 +0100)]
session_file: Enable only the probes that are actually listed in metadata.

This is a better fix for #410 and #495.

9 years agoREADME: Improve and update the requirements list.
Uwe Hermann [Wed, 3 Dec 2014 08:09:31 +0000 (09:09 +0100)]
README: Improve and update the requirements list.

9 years agosaleae-logic16: Show libusb transfer status name instead of code.
Bert Vermeulen [Thu, 27 Nov 2014 23:21:10 +0000 (00:21 +0100)]
saleae-logic16: Show libusb transfer status name instead of code.

9 years agosaleae-logic16: Change two errors into warnings.
Uwe Hermann [Thu, 27 Nov 2014 22:22:05 +0000 (23:22 +0100)]
saleae-logic16: Change two errors into warnings.

Related to #466, convert two more sanity checks from errors into warnings.
This may allow more devices to work with libsigrok.

9 years agosaleae-logic16: Clearer error message.
Bert Vermeulen [Thu, 27 Nov 2014 00:00:40 +0000 (01:00 +0100)]
saleae-logic16: Clearer error message.

9 years agobeaglelogic: Add SR_CONF_CAPTURE_RATIO support.
Aurelien Jacobs [Tue, 25 Nov 2014 21:12:33 +0000 (22:12 +0100)]
beaglelogic: Add SR_CONF_CAPTURE_RATIO support.

9 years agosaleae-logic16: Add SR_CONF_CAPTURE_RATIO support.
Aurelien Jacobs [Tue, 25 Nov 2014 21:11:44 +0000 (22:11 +0100)]
saleae-logic16: Add SR_CONF_CAPTURE_RATIO support.

9 years agofx2lafw: Add SR_CONF_CAPTURE_RATIO support.
Aurelien Jacobs [Tue, 25 Nov 2014 11:28:36 +0000 (12:28 +0100)]
fx2lafw: Add SR_CONF_CAPTURE_RATIO support.

9 years agosoft-trigger: Add support for pre-triggering.
Aurelien Jacobs [Tue, 25 Nov 2014 11:23:34 +0000 (12:23 +0100)]
soft-trigger: Add support for pre-triggering.

9 years agoAlways save all channels to a session file.
Bert Vermeulen [Mon, 24 Nov 2014 01:21:15 +0000 (02:21 +0100)]
Always save all channels to a session file.

This works around limitations of the current API that screw up saving
only enabled channels. See bug 410. And bug 495.

9 years agobindings: Session::set_trigger(): Fix segfault condition.
Uwe Hermann [Mon, 24 Nov 2014 00:11:17 +0000 (01:11 +0100)]
bindings: Session::set_trigger(): Fix segfault condition.

sr_session_trigger_set(sess, NULL) is a valid thing to do, meaning that
any trigger shall be removed from the session.

This closes bugs #491 and #496.

9 years agosr_session_trigger_{get,set}: Document, add error checks.
Uwe Hermann [Sun, 23 Nov 2014 23:50:11 +0000 (00:50 +0100)]
sr_session_trigger_{get,set}: Document, add error checks.

9 years agoAdd a few unit tests for sr_session_trigger_{get,set}.
Uwe Hermann [Sun, 23 Nov 2014 23:49:38 +0000 (00:49 +0100)]
Add a few unit tests for sr_session_trigger_{get,set}.

9 years agomanson-hcs-3xxx: Fix incorrect SR_CONF_SCAN_OPTIONS handling.
Uwe Hermann [Sun, 23 Nov 2014 20:09:37 +0000 (21:09 +0100)]
manson-hcs-3xxx: Fix incorrect SR_CONF_SCAN_OPTIONS handling.

The SR_CONF_SCAN_OPTIONS key must be listable with or without sdi,
otherwise the device will not be detected by frontends.

9 years agoDo not check for JDK headers if Java bindings are disabled.
Jiří Pinkava [Sun, 23 Nov 2014 16:38:28 +0000 (17:38 +0100)]
Do not check for JDK headers if Java bindings are disabled.

This removes an unnecessary build dependency on JDK and fixes
build troubles on systems where javac is present but JDK is not
installed and Java bindings are disabled by ./configure --disable-java.

9 years agousb_get_port_path(): fix libusb error checking
Vincent Palatin [Mon, 10 Nov 2014 16:17:07 +0000 (08:17 -0800)]
usb_get_port_path(): fix libusb error checking

When libusb cannot access a device, libusb_get_port_numbers() will return
an error. Check the return code rather than doing invalid pointer
operations (out-of-bound read).

Avoid segfaults at sigrok-cli startup on my setup where some USB devices are
not accessible and also make Valgrind happier.

Signed-off-by: Vincent Palatin <redacted>
9 years agoPublish config key capabilities on session driver.
Bert Vermeulen [Sun, 23 Nov 2014 16:47:58 +0000 (17:47 +0100)]
Publish config key capabilities on session driver.

9 years agoAdd sr_rational_set() convenience function.
Bert Vermeulen [Thu, 20 Nov 2014 02:11:14 +0000 (03:11 +0100)]
Add sr_rational_set() convenience function.

9 years agosaleae-logic16: Downgrade error during capture to a message.
Tim Hatch [Sun, 2 Nov 2014 23:29:38 +0000 (15:29 -0800)]
saleae-logic16: Downgrade error during capture to a message.

Some clone doesn't set this to the exact same value, and both bits in 0x48 are
marked as unknown at
http://sigrok.org/wiki/Saleae_Logic16/Firmware#FPGA_variables

This fixes bug #466.

9 years agounit tests: Disable timeout for one of the test cases.
Uwe Hermann [Sun, 23 Nov 2014 12:10:32 +0000 (13:10 +0100)]
unit tests: Disable timeout for one of the test cases.

This one can take a while, thus disable the timeout.

9 years agopython: Silence some warnings via -Wno-uninitialized.
Uwe Hermann [Sat, 22 Nov 2014 21:06:02 +0000 (22:06 +0100)]
python: Silence some warnings via -Wno-uninitialized.

Silence some warnings when building the Python bindings:

  sigrok/core/classes_wrap.cpp: In function ‘PyObject* _wrap_new_OutputFormatMap(PyObject*, PyObject*)’:
  sigrok/core/classes_wrap.cpp:5232:4: warning: ‘argv[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<map_type>(),0);
      ^
  sigrok/core/classes_wrap.cpp:14383:13: note: ‘argv[0]’ was declared here
     PyObject *argv[2];
               ^
  sigrok/core/classes_wrap.cpp: In function ‘PyObject* _wrap_new_ChannelGroupMap(PyObject*, PyObject*)’:
  sigrok/core/classes_wrap.cpp:5232:4: warning: ‘argv[0]’ may be used uninitialized in this function [-Wmaybe-uninitialized]
      res = SWIG_ConvertPtr(obj,(void**)&p,swig::type_info<map_type>(),0);
      ^
  sigrok/core/classes_wrap.cpp:23356:13: note: ‘argv[0]’ was declared here
     PyObject *argv[2];
               ^

We add -Wno-uninitialized since the warnings are harmless and we really
don't care about them in the generated classes_wrap.cpp.

This fixes parts of #417.

9 years agoFix a bug causing one of the unit tests not being run.
Uwe Hermann [Sat, 22 Nov 2014 20:07:48 +0000 (21:07 +0100)]
Fix a bug causing one of the unit tests not being run.

9 years agotrigger: Add some more error handling.
Uwe Hermann [Sat, 22 Nov 2014 20:03:39 +0000 (21:03 +0100)]
trigger: Add some more error handling.

All of these error conditions are checked via the unit tests.

Also, add the following missing entries (analog trigger types):

 - SR_TRIGGER_RISING
 - SR_TRIGGER_EDGE

9 years agoAdd a few unit tests for sr_trigger_*().
Uwe Hermann [Sat, 22 Nov 2014 19:13:37 +0000 (20:13 +0100)]
Add a few unit tests for sr_trigger_*().

9 years agotrigger: Add API documentation.
Uwe Hermann [Sat, 22 Nov 2014 18:32:28 +0000 (19:32 +0100)]
trigger: Add API documentation.

9 years agoAdd missing entries to sr_config_info_data[].
Uwe Hermann [Sat, 22 Nov 2014 15:53:02 +0000 (16:53 +0100)]
Add missing entries to sr_config_info_data[].

Newly added keys:

 - SR_CONF_SAMPLE_INTERVAL
 - SR_CONF_NUM_TIMEBASE
 - SR_CONF_NUM_VDIV
 - SR_CONF_CENTER_FREQUENCY
 - SR_CONF_DEVICE_MODE
 - SR_CONF_SCAN_OPTIONS
 - SR_CONF_DEVICE_OPTIONS
 - SR_CONF_DEVICE_MODE
 - SR_CONF_TEST_MODE

Also, keep the same ordering and grouping as in libsigrok.h.

9 years agoUse g_malloc0() consistently, simplify error handling.
Uwe Hermann [Fri, 21 Nov 2014 18:02:10 +0000 (19:02 +0100)]
Use g_malloc0() consistently, simplify error handling.

Use g_malloc0() for small allocations and assume they always
succeed. Simplify error handling in a few places accordingly.

Don't always sanity-check parameters for non-public (SR_PRIV)
functions, we require the developers to invoke them correctly.
This allows further error handling simplifications.

9 years agoDon't check sr_channel_new() return value (always succeeds).
Uwe Hermann [Fri, 21 Nov 2014 08:07:04 +0000 (09:07 +0100)]
Don't check sr_channel_new() return value (always succeeds).

We now use g_malloc0() for the allocation and assume the allocation
will always succeed, thus sr_channel_new() will always return a
valid new channel.

9 years agoConsistently use g_malloc0() for allocating devc.
Uwe Hermann [Fri, 21 Nov 2014 01:26:24 +0000 (02:26 +0100)]
Consistently use g_malloc0() for allocating devc.

We assume the allocation will always succeed, hence no need for
checking the returned value.

9 years agoEliminate sr_dev_inst_new().
Uwe Hermann [Fri, 21 Nov 2014 01:01:36 +0000 (02:01 +0100)]
Eliminate sr_dev_inst_new().

9 years agoFix invalid pointer dereference.
Bert Vermeulen [Thu, 20 Nov 2014 02:08:55 +0000 (03:08 +0100)]
Fix invalid pointer dereference.

9 years agoyokogawa-dlm: Publish driver options.
Aurelien Jacobs [Wed, 19 Nov 2014 22:54:01 +0000 (23:54 +0100)]
yokogawa-dlm: Publish driver options.

9 years agomotech-lps-30x: Publish driver options.
Aurelien Jacobs [Wed, 19 Nov 2014 22:53:35 +0000 (23:53 +0100)]
motech-lps-30x: Publish driver options.

9 years agomanson-hcs-3xxx: Publish driver options.
Aurelien Jacobs [Wed, 19 Nov 2014 22:53:10 +0000 (23:53 +0100)]
manson-hcs-3xxx: Publish driver options.

9 years agohameg-hmo: Publish driver options.
Aurelien Jacobs [Wed, 19 Nov 2014 22:52:51 +0000 (23:52 +0100)]
hameg-hmo: Publish driver options.

9 years agoFinish fixing broken sr_config_list() logic.
Aurelien Jacobs [Wed, 19 Nov 2014 13:12:48 +0000 (14:12 +0100)]
Finish fixing broken sr_config_list() logic.

9 years agoMake sr_analog_*_to_string() functions allocate the necessary buffers.
Martin Ling [Wed, 19 Nov 2014 01:23:48 +0000 (01:23 +0000)]
Make sr_analog_*_to_string() functions allocate the necessary buffers.

9 years agomic-985xx: Correctly report SR_CONF_THERMOMETER/_HYGROMETER.
Uwe Hermann [Tue, 18 Nov 2014 22:43:38 +0000 (23:43 +0100)]
mic-985xx: Correctly report SR_CONF_THERMOMETER/_HYGROMETER.

Some models only log temperature, others log temperature and humidity
(so they need different drvopts).

9 years agomic-985xx: Drop unneeded #define.
Uwe Hermann [Tue, 18 Nov 2014 22:19:48 +0000 (23:19 +0100)]
mic-985xx: Drop unneeded #define.

9 years agomic-985xx: Publish driver options.
Uwe Hermann [Tue, 18 Nov 2014 22:19:21 +0000 (23:19 +0100)]
mic-985xx: Publish driver options.

9 years agocenter-3xx: Drop unneeded #define.
Uwe Hermann [Tue, 18 Nov 2014 18:42:31 +0000 (19:42 +0100)]
center-3xx: Drop unneeded #define.

9 years agocenter-3xx: Publish driver options.
Uwe Hermann [Tue, 18 Nov 2014 18:16:39 +0000 (19:16 +0100)]
center-3xx: Publish driver options.

9 years agoRevert "victor-dmm: Set spec digits to 3, matching the display."
Bert Vermeulen [Tue, 18 Nov 2014 17:10:19 +0000 (18:10 +0100)]
Revert "victor-dmm: Set spec digits to 3, matching the display."

This reverts commit 28b424349363a9002e7af7300a7f2941a8469004.

9 years agools: Publish driver options.
Bert Vermeulen [Tue, 18 Nov 2014 16:41:36 +0000 (17:41 +0100)]
ols: Publish driver options.

9 years agoagilent-dmm: Now really fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 16:31:58 +0000 (17:31 +0100)]
agilent-dmm: Now really fix driver options.

9 years agoappa-55ii: Publish driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:50:47 +0000 (16:50 +0100)]
appa-55ii: Publish driver options.

9 years agohantek-dso: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:46:39 +0000 (16:46 +0100)]
hantek-dso: Fix driver options.

9 years agoatten-pps3xxx: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:32:51 +0000 (16:32 +0100)]
atten-pps3xxx: Fix driver options.

9 years agocem-dt-885x: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:42:52 +0000 (16:42 +0100)]
cem-dt-885x: Fix driver options.

9 years agoscpi-pps: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:38:37 +0000 (16:38 +0100)]
scpi-pps: Fix driver options.

9 years agoasix-sigma: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 15:30:47 +0000 (16:30 +0100)]
asix-sigma: Fix driver options.

9 years agooutput/analog: Add option to restrict number of decimal digits printed.
Bert Vermeulen [Tue, 18 Nov 2014 14:51:38 +0000 (15:51 +0100)]
output/analog: Add option to restrict number of decimal digits printed.

This is a feature restricted to the new analog struct.

By default all the digits available in the encoding struct are printed.
The option "digits", when set to "spec", changes this to print the
number given in the spec struct.

9 years agoAdd debug spew to all sr_config_(get|set|list) calls.
Bert Vermeulen [Tue, 18 Nov 2014 14:46:59 +0000 (15:46 +0100)]
Add debug spew to all sr_config_(get|set|list) calls.

9 years agoFix broken sr_config_list() logic.
Bert Vermeulen [Tue, 18 Nov 2014 14:46:24 +0000 (15:46 +0100)]
Fix broken sr_config_list() logic.

9 years agodemo: Fix driver options.
Bert Vermeulen [Tue, 18 Nov 2014 14:39:46 +0000 (15:39 +0100)]
demo: Fix driver options.

9 years agofx2lafw: Publish driver options.
Bert Vermeulen [Tue, 18 Nov 2014 14:35:30 +0000 (15:35 +0100)]
fx2lafw: Publish driver options.

9 years agoagilent-dmm: Publish driver options.
Bert Vermeulen [Tue, 18 Nov 2014 14:34:52 +0000 (15:34 +0100)]
agilent-dmm: Publish driver options.

9 years agovictor-dmm: Publish driver options.
Bert Vermeulen [Tue, 18 Nov 2014 10:19:18 +0000 (11:19 +0100)]
victor-dmm: Publish driver options.

9 years agoAdd analog helper sr_analog_unit_to_string().
Bert Vermeulen [Tue, 18 Nov 2014 00:16:27 +0000 (01:16 +0100)]
Add analog helper sr_analog_unit_to_string().

9 years agoAdd analog helper sr_analog_float_to_string().
Bert Vermeulen [Tue, 18 Nov 2014 00:15:41 +0000 (01:15 +0100)]
Add analog helper sr_analog_float_to_string().

9 years agoShow SR_DF_ANALOG2 packets in debug output.
Bert Vermeulen [Mon, 17 Nov 2014 23:24:37 +0000 (00:24 +0100)]
Show SR_DF_ANALOG2 packets in debug output.

9 years agovictor-dmm: Set spec digits to 3, matching the display.
Bert Vermeulen [Mon, 17 Nov 2014 23:24:08 +0000 (00:24 +0100)]
victor-dmm: Set spec digits to 3, matching the display.

9 years agoanalog: Fix analog_to_float typos, and cleanup.
Bert Vermeulen [Mon, 17 Nov 2014 22:08:49 +0000 (23:08 +0100)]
analog: Fix analog_to_float typos, and cleanup.

This was adding 1 to every measurement being converted.

9 years agoAdd a sr_analog_init() API to initialize sr_datafeed_analog2 struct.
Aurelien Jacobs [Thu, 13 Nov 2014 23:50:46 +0000 (00:50 +0100)]
Add a sr_analog_init() API to initialize sr_datafeed_analog2 struct.

It fills the fields with reasonable default values that should suit
most of the drivers. Drivers are obviously free to override the fields
they want after initializing.

9 years agodemo: Fix analog output at low samplerate.
Aurelien Jacobs [Mon, 17 Nov 2014 10:38:37 +0000 (11:38 +0100)]
demo: Fix analog output at low samplerate.

9 years agodemo: Fix square pattern output shorter than other patterns.
Aurelien Jacobs [Mon, 17 Nov 2014 10:40:22 +0000 (11:40 +0100)]
demo: Fix square pattern output shorter than other patterns.

9 years agoCheck driver capabilities before sr_config_get/set/list.
Bert Vermeulen [Mon, 17 Nov 2014 12:20:05 +0000 (13:20 +0100)]
Check driver capabilities before sr_config_get/set/list.

9 years agoautogen.sh: Also warn if AX_CXX_COMPILE_STDCXX_11 is not available.
Uwe Hermann [Fri, 14 Nov 2014 23:41:10 +0000 (00:41 +0100)]
autogen.sh: Also warn if AX_CXX_COMPILE_STDCXX_11 is not available.

This fixes an error message when the file is not installed at all:

  ./autogen.sh: 67: [: Illegal number:

Turn the AX_CXX_COMPILE_STDCXX_11 errors into warnings though, since
it is (and should be) possible to build libsigrok (just the C library)
just fine, even without that macro or with an older version of it.

9 years agoCheck the version of the AX_CXX_COMPILE_STDCXX_11 macro.
Jens Steinhauser [Fri, 14 Nov 2014 00:43:25 +0000 (01:43 +0100)]
Check the version of the AX_CXX_COMPILE_STDCXX_11 macro.

9 years agoRefactor scan options check.
Bert Vermeulen [Fri, 14 Nov 2014 19:24:43 +0000 (20:24 +0100)]
Refactor scan options check.

9 years agobindings: Fix out-of-tree build.
Uwe Hermann [Fri, 14 Nov 2014 19:01:12 +0000 (20:01 +0100)]
bindings: Fix out-of-tree build.

This closes #473.

9 years agobindings: Re-enable Java, but ignore create_analog_packet().
Uwe Hermann [Fri, 14 Nov 2014 15:47:46 +0000 (16:47 +0100)]
bindings: Re-enable Java, but ignore create_analog_packet().

This will need some fixing.

9 years agosr_driver_scan: Enforce options passed in by client.
Bert Vermeulen [Fri, 14 Nov 2014 11:22:54 +0000 (12:22 +0100)]
sr_driver_scan: Enforce options passed in by client.

9 years agodemo: Use allocation for model string.
Bert Vermeulen [Fri, 14 Nov 2014 10:37:11 +0000 (11:37 +0100)]
demo: Use allocation for model string.

9 years agomic-985xx: Convert to use SR_DF_ANALOG2.
Uwe Hermann [Wed, 12 Nov 2014 22:34:20 +0000 (23:34 +0100)]
mic-985xx: Convert to use SR_DF_ANALOG2.

9 years agovictor-dmm: Convert to use SR_DF_ANALOG2.
Uwe Hermann [Wed, 12 Nov 2014 15:31:30 +0000 (16:31 +0100)]
victor-dmm: Convert to use SR_DF_ANALOG2.

9 years agooutput/analog: Add SR_DF_ANALOG2 support.
Bert Vermeulen [Wed, 12 Nov 2014 16:05:13 +0000 (17:05 +0100)]
output/analog: Add SR_DF_ANALOG2 support.