]> sigrok.org Git - libsigrok.git/log
libsigrok.git
12 years agosr/srd: Move some files to their resp. dirs.
Uwe Hermann [Fri, 30 Dec 2011 09:42:39 +0000 (10:42 +0100)]
sr/srd: Move some files to their resp. dirs.

12 years agoMove most contrib/ stuff to libsigrok.
Uwe Hermann [Thu, 29 Dec 2011 12:05:24 +0000 (13:05 +0100)]
Move most contrib/ stuff to libsigrok.

The udev rules file is libsigrok-specific, the gnuplot files too.

The nsis files stay in the top-level contrib/ for now, they're not
really part of any of the (sub-)projects, but rather are used to create
a single Windows .exe installer for all of them.

12 years agoprobe names: Fix cosmetics, add docs, fix off-by-one.
Uwe Hermann [Thu, 29 Dec 2011 18:50:14 +0000 (19:50 +0100)]
probe names: Fix cosmetics, add docs, fix off-by-one.

12 years agoMove the probe naming to the creator of the device, and let each driver name its...
Kristoffer Sjöberg [Thu, 29 Dec 2011 16:04:31 +0000 (17:04 +0100)]
Move the probe naming to the creator of the device, and let each driver name its own probes.

12 years agoFix outdated ezusb_install_firmware() prototype.
Uwe Hermann [Wed, 28 Dec 2011 22:11:52 +0000 (23:11 +0100)]
Fix outdated ezusb_install_firmware() prototype.

12 years agolibsigrok: Fix #includes.
Uwe Hermann [Wed, 28 Dec 2011 22:07:08 +0000 (23:07 +0100)]
libsigrok: Fix #includes.

In the lib, we should only #include "sigrok.h" or "sigrok-internal.h",
but not the (possibly installed and thus different/older versions) via
<sigrok.h> or <sigrok-internal.h>.

Frontends should of course use <sigrok.h> and <sigrok-internal.h>.

12 years agoMake more variables/functions static and non-global.
Uwe Hermann [Wed, 28 Dec 2011 21:55:21 +0000 (22:55 +0100)]
Make more variables/functions static and non-global.

The 'GSList *devices' from device.c was actually really global (i.e.,
listed in sigrok.h), which is now fixed.

12 years agoDrop unused 'global' struct/variable.
Uwe Hermann [Wed, 28 Dec 2011 20:38:56 +0000 (21:38 +0100)]
Drop unused 'global' struct/variable.

The libs shouldn't have any (externally visible) globals anyway.

12 years agosigrok-proto.h: Drop obsolete prototype, move other one.
Uwe Hermann [Wed, 28 Dec 2011 20:37:37 +0000 (21:37 +0100)]
sigrok-proto.h: Drop obsolete prototype, move other one.

12 years agodevice: Make some parameters const.
Uwe Hermann [Wed, 28 Dec 2011 20:34:37 +0000 (21:34 +0100)]
device: Make some parameters const.

12 years agodevice: Change some functions to return int.
Uwe Hermann [Wed, 28 Dec 2011 16:16:33 +0000 (17:16 +0100)]
device: Change some functions to return int.

The callers of these functions are yet to be changed so that they
actually check the return values and handle errors appropriately.

12 years agodevice: Add Doxygen comments, improve error handling.
Uwe Hermann [Wed, 28 Dec 2011 15:19:15 +0000 (16:19 +0100)]
device: Add Doxygen comments, improve error handling.

 - Add Doxygen comments for all functions (some TODOs remain).

 - Check return code of more functions, handle invalid input.

12 years agomake time/duration work, at least when loading from a session file
Bert Vermeulen [Thu, 15 Dec 2011 02:31:31 +0000 (03:31 +0100)]
make time/duration work, at least when loading from a session file

PD decode() call now takes 3 arguments: timeoffset, duration, data
as per the current API specification.

12 years agodatastore.c: Improve error handling and docs.
Uwe Hermann [Sun, 25 Dec 2011 18:59:15 +0000 (19:59 +0100)]
datastore.c: Improve error handling and docs.

 - Add Doxygen comments for all functions (some TODOs remain).

 - Check for invalid input parameters (such as NULL pointers etc).

 - Return SR_ERR_ARG upon invalid input parameters.

 - Make sr_datastore_put() return int instead of void, so we can pass
   an error code (SR_OK, SR_ERR_MALLOC, and so on) to the caller.

12 years agosr_filter_probes(): Check for too many probes.
Uwe Hermann [Fri, 23 Dec 2011 14:26:54 +0000 (15:26 +0100)]
sr_filter_probes(): Check for too many probes.

Return SR_ERR_ARG if the number of enabled probes is higher than the
requested unit size supports.

12 years agoImprove sr_filter_probes error handling and docs.
Uwe Hermann [Thu, 22 Dec 2011 13:10:16 +0000 (14:10 +0100)]
Improve sr_filter_probes error handling and docs.

 - Much more elaborate doxygen comments for the function and its
   parameters, allowed input values, and so on.

 - Make 'probelist' const, the function doesn't modify it.

 - Check for invalid inputs such as NULL pointers.

 - Use g_try_malloc() and g_free() for the output buffer. Document who
   is expected to g_free() the buffer.

12 years agolibsigrok: Quickfix for a segfault in ChronoVu LA8.
Uwe Hermann [Sun, 4 Dec 2011 17:33:29 +0000 (18:33 +0100)]
libsigrok: Quickfix for a segfault in ChronoVu LA8.

12 years agosrd: Pass samplerate to decoder in metadata.
Gareth McMullin [Mon, 28 Nov 2011 08:52:35 +0000 (21:52 +1300)]
srd: Pass samplerate to decoder in metadata.

12 years agofix CLI size string specification
Bert Vermeulen [Sun, 27 Nov 2011 18:31:25 +0000 (19:31 +0100)]
fix CLI size string specification

accept "hz" as optional qualifier but nothing else
properly return an error instead of quietly returning zero size

12 years agoOther method to avoid "unused var" compiler warnings.
Uwe Hermann [Thu, 24 Nov 2011 21:57:48 +0000 (22:57 +0100)]
Other method to avoid "unused var" compiler warnings.

The '(void)varname' method is nicer than 'varname = varname' and also
prevents warnings when compiling sigrok with clang instead of gcc.

12 years agoAdd missing #includes to avoid clang warnings.
Uwe Hermann [Thu, 24 Nov 2011 21:42:02 +0000 (22:42 +0100)]
Add missing #includes to avoid clang warnings.

12 years agola8: device not found during init() scan is not an error
Bert Vermeulen [Sun, 20 Nov 2011 02:16:33 +0000 (03:16 +0100)]
la8: device not found during init() scan is not an error

fix some hardware plugin semantics

12 years agolibsigrok: glib-2.0 is a hard requirement.
Uwe Hermann [Sat, 19 Nov 2011 15:19:24 +0000 (16:19 +0100)]
libsigrok: glib-2.0 is a hard requirement.

12 years agoChanged SR_T_NULL to SR_T_BOOL and adjusted RLE option.
Gareth McMullin [Sat, 19 Nov 2011 00:41:41 +0000 (13:41 +1300)]
Changed SR_T_NULL to SR_T_BOOL and adjusted RLE option.

12 years agoConsistently use __func__ instead of __FUNCTION__.
Uwe Hermann [Thu, 17 Nov 2011 22:00:33 +0000 (23:00 +0100)]
Consistently use __func__ instead of __FUNCTION__.

The __func__ form is standardized and more portable.

12 years agolibsigrok: Use sr_err() et al instead of printf.
Uwe Hermann [Thu, 17 Nov 2011 21:54:17 +0000 (22:54 +0100)]
libsigrok: Use sr_err() et al instead of printf.

12 years agoFixed a crash when loading a second session file.
Gareth McMullin [Thu, 17 Nov 2011 08:18:46 +0000 (21:18 +1300)]
Fixed a crash when loading a second session file.

12 years agosigrok.h: Remove SIGROK_*VERSION #defines again.
Uwe Hermann [Tue, 15 Nov 2011 21:46:57 +0000 (22:46 +0100)]
sigrok.h: Remove SIGROK_*VERSION #defines again.

These version numbers represent the sigrok version (i.e., the version
of the tarball, such as "sigrok-0.2.0.tar.gz"), but _not_ the libsigrok
(libtool) library/API/ABI versions. Thus, they should not be in
libsigrok's include file (sigrok.h).

12 years agoFix some compiler warnings.
Uwe Hermann [Tue, 15 Nov 2011 20:05:40 +0000 (21:05 +0100)]
Fix some compiler warnings.

12 years agolibsigrok.pc: Add Required.private field entries.
Uwe Hermann [Tue, 15 Nov 2011 00:11:27 +0000 (01:11 +0100)]
libsigrok.pc: Add Required.private field entries.

The "Required.private:" field in pkg-config .pc files is used for
declaring that we need the listed libs (pkg-config packages) for
static linking, but not for dynamic linking.
I.e., the "Required.private:" field should be used for libs which we
use internally in libsigrok, but which we do not "expose" ourselves.

For now all libs are listed as "Required.private:" instead of
"Required:", but this may not be entirely correct and needs to be
checked carefully at some later date.

12 years agoRemove IO source if callback returns FALSE.
Gareth McMullin [Sat, 5 Nov 2011 22:44:25 +0000 (11:44 +1300)]
Remove IO source if callback returns FALSE.

12 years agosigrok.h: Add SIGROK_{MAJOR,MINOR,MICRO,}_VERSION #defines.
Uwe Hermann [Fri, 29 Apr 2011 17:27:32 +0000 (19:27 +0200)]
sigrok.h: Add SIGROK_{MAJOR,MINOR,MICRO,}_VERSION #defines.

12 years agoOLS: Calculate actual sample rate used.
Gareth McMullin [Sun, 30 Oct 2011 01:25:24 +0000 (14:25 +1300)]
OLS: Calculate actual sample rate used.

12 years agools: Minor whitespace and coding style fixes.
Uwe Hermann [Sun, 30 Oct 2011 00:10:32 +0000 (02:10 +0200)]
ols: Minor whitespace and coding style fixes.

12 years agoRun-Length Encoding support for the OLS.
Gareth McMullin [Sat, 29 Oct 2011 02:57:17 +0000 (15:57 +1300)]
Run-Length Encoding support for the OLS.

12 years agoPrevent reading past end of OLS hardware buffer.
Gareth McMullin [Sat, 29 Oct 2011 02:21:16 +0000 (15:21 +1300)]
Prevent reading past end of OLS hardware buffer.

12 years agoMac OS X build fixes
Jerry [Mon, 20 Jun 2011 21:43:44 +0000 (23:43 +0200)]
Mac OS X build fixes

12 years agosaleae-logic: fix timing on packets when triggering is used
Bert Vermeulen [Mon, 20 Jun 2011 09:43:34 +0000 (11:43 +0200)]
saleae-logic: fix timing on packets when triggering is used

12 years agobetter session bus logging
Bert Vermeulen [Mon, 20 Jun 2011 09:42:43 +0000 (11:42 +0200)]
better session bus logging

12 years agouse new datafeed packet format
Bert Vermeulen [Sun, 19 Jun 2011 12:28:50 +0000 (14:28 +0200)]
use new datafeed packet format

12 years agonew datafeed packet format
Bert Vermeulen [Sun, 19 Jun 2011 00:35:23 +0000 (02:35 +0200)]
new datafeed packet format

struct sr_datafeed_packet now has timeoffset and duration fields,
expressed in picoseconds (1/10^12 seconds)
length and unitsize are now in a separate struct sr_datafeed_logic

12 years agofix parameter type
Bert Vermeulen [Sat, 18 Jun 2011 22:55:36 +0000 (00:55 +0200)]
fix parameter type

12 years agowhitespace
Bert Vermeulen [Sun, 12 Jun 2011 16:07:15 +0000 (18:07 +0200)]
whitespace

12 years agosupport for multiple FX2 devices
Bert Vermeulen [Sun, 12 Jun 2011 16:04:19 +0000 (18:04 +0200)]
support for multiple FX2 devices

12 years agosaleae-logic: use new logging system
Bert Vermeulen [Sun, 5 Jun 2011 00:08:08 +0000 (02:08 +0200)]
saleae-logic: use new logging system

12 years agosaleae-logic: support for other FX2 devices (bare FX2)
Bert Vermeulen [Sat, 4 Jun 2011 21:20:00 +0000 (23:20 +0200)]
saleae-logic: support for other FX2 devices (bare FX2)

This enables support for devices that have a different VID/PID
than the Saleae Logic, and yet another after firmware upload.

After firmware upload is checked every 100ms whether it came back,
instead of always waiting for 2 seconds.

If the kernel attaches a driver to a device we know, detact it first.

12 years agobetter cleanup of device/plugin resources
Bert Vermeulen [Mon, 4 Apr 2011 03:13:29 +0000 (05:13 +0200)]
better cleanup of device/plugin resources

12 years agoLA8: Remove trailing whitespace.
Uwe Hermann [Sun, 8 May 2011 22:59:41 +0000 (00:59 +0200)]
LA8: Remove trailing whitespace.

12 years agoLA8: Use sr_spew() where appropriate.
Uwe Hermann [Sun, 8 May 2011 22:54:59 +0000 (00:54 +0200)]
LA8: Use sr_spew() where appropriate.

12 years agoLA8: Improve trigger support and debug output.
Uwe Hermann [Sun, 8 May 2011 22:52:55 +0000 (00:52 +0200)]
LA8: Improve trigger support and debug output.

12 years agoAdd sr_spew/SR_LOG_SPEW for even more debug output.
Uwe Hermann [Sun, 8 May 2011 18:26:22 +0000 (20:26 +0200)]
Add sr_spew/SR_LOG_SPEW for even more debug output.

This is meant for really extensive debug output which can slow down
operation significantly and should thus only be enabled if really needed.

12 years agoLA8: Eliminate magic numbers.
Uwe Hermann [Sun, 8 May 2011 18:20:26 +0000 (20:20 +0200)]
LA8: Eliminate magic numbers.

12 years agoLA8: Add trigger point support.
Uwe Hermann [Sun, 8 May 2011 18:09:22 +0000 (20:09 +0200)]
LA8: Add trigger point support.

Report trigger point/position via SR_DF_TRIGGER packet.

12 years agodemo: Use memset(), might be faster.
Uwe Hermann [Fri, 6 May 2011 18:38:48 +0000 (20:38 +0200)]
demo: Use memset(), might be faster.

12 years agodemo: Add all-low/all-high pattern support.
Uwe Hermann [Fri, 6 May 2011 18:34:12 +0000 (20:34 +0200)]
demo: Add all-low/all-high pattern support.

Also, improve error handling a bit.

12 years agodemo: s/genmode/pattern/.
Uwe Hermann [Thu, 5 May 2011 11:02:48 +0000 (13:02 +0200)]
demo: s/genmode/pattern/.

12 years agodemo: Rename GENMODE_DEFAULT to GENMODE_SIGROK.
Uwe Hermann [Wed, 4 May 2011 20:37:12 +0000 (22:37 +0200)]
demo: Rename GENMODE_DEFAULT to GENMODE_SIGROK.

Also, add (Doxygen) comments for the currently supported patterns that
the demo device/driver can generate.

12 years agoImprove (Doxygen) comments for HWCAP entries.
Uwe Hermann [Wed, 4 May 2011 20:26:55 +0000 (22:26 +0200)]
Improve (Doxygen) comments for HWCAP entries.

12 years agodemo: Eliminate unneeded tmp_u64.
Uwe Hermann [Wed, 4 May 2011 18:05:33 +0000 (20:05 +0200)]
demo: Eliminate unneeded tmp_u64.

12 years agoLA8: Free memory from g_*alloc*() via g_freee().
Uwe Hermann [Wed, 4 May 2011 17:46:33 +0000 (19:46 +0200)]
LA8: Free memory from g_*alloc*() via g_freee().

12 years agolog messages: Use device name, not vendor name.
Uwe Hermann [Wed, 4 May 2011 17:44:25 +0000 (19:44 +0200)]
log messages: Use device name, not vendor name.

There can be multiple devices from the same vendor, obviously.

12 years agolibsigrok: closedev() now has a return code.
Uwe Hermann [Wed, 4 May 2011 17:34:12 +0000 (19:34 +0200)]
libsigrok: closedev() now has a return code.

This is useful to allow frontends to react upon close failures in a
way they see fit (e.g. a popup in the GUI, or error message in the CLI).
They can also still ignore the error if they want, of course.

12 years agolibsigrok/cli: Implement loglevel support.
Uwe Hermann [Wed, 4 May 2011 17:03:01 +0000 (19:03 +0200)]
libsigrok/cli: Implement loglevel support.

libsigrok can now be told at which loglevel to work, i.e., how many
debug/error/warning output to generate. You can also query the current
loglevel.

In sigrok-cli it is now possible to set the loglevel via -l. For example:

 - Disable all output: sigrok-cli -l 0
 - Only show errors: sigrok-cli -l 1
 - Show errors, warnings, info, and debug messages: sigrok-cli -l 4

12 years agoDrop unneeded skeleton files.
Uwe Hermann [Tue, 3 May 2011 17:18:43 +0000 (19:18 +0200)]
Drop unneeded skeleton files.

They're not too useful as they mostly consist of a list of function names,
and that list is already available in the respective struct. The wiki
API docs and the code in the various hardware/output drivers serve as
useful examples already, no need for additional files.

12 years agolibsigrok: Rename open/close to opendev/closedev.
Uwe Hermann [Tue, 3 May 2011 17:15:54 +0000 (19:15 +0200)]
libsigrok: Rename open/close to opendev/closedev.

12 years agodemo: Add some more debug output.
Uwe Hermann [Sun, 1 May 2011 23:40:16 +0000 (01:40 +0200)]
demo: Add some more debug output.

13 years agoInitial support for CSV as output format.
Uwe Hermann [Tue, 26 Apr 2011 21:56:00 +0000 (23:56 +0200)]
Initial support for CSV as output format.

13 years agoChange left-over SIGROK_* to SR_*.
Uwe Hermann [Tue, 26 Apr 2011 15:27:34 +0000 (17:27 +0200)]
Change left-over SIGROK_* to SR_*.

13 years agoLA8: Shrink mangled_buf from 8MB to 4KB.
Uwe Hermann [Sun, 24 Apr 2011 22:16:47 +0000 (00:16 +0200)]
LA8: Shrink mangled_buf from 8MB to 4KB.

It's not necessary to have an 8MB buffer. Also, make it static, don't
use malloc() here.

13 years agoASIX: Small consistency fixes.
Uwe Hermann [Sun, 24 Apr 2011 20:53:27 +0000 (22:53 +0200)]
ASIX: Small consistency fixes.

13 years agoLA8: Eliminate unused num_probes variable.
Uwe Hermann [Sun, 24 Apr 2011 20:50:04 +0000 (22:50 +0200)]
LA8: Eliminate unused num_probes variable.

13 years agoLA8: Replace some sr_warn() with sr_err().
Uwe Hermann [Sun, 24 Apr 2011 20:48:45 +0000 (22:48 +0200)]
LA8: Replace some sr_warn() with sr_err().

13 years agoLA8: probeconfig/trigger support.
Uwe Hermann [Sun, 17 Apr 2011 08:11:52 +0000 (10:11 +0200)]
LA8: probeconfig/trigger support.

This should make proper trigger support work for ChronoVu LA8.

13 years agoFix two small warnings.
Uwe Hermann [Mon, 18 Apr 2011 22:27:29 +0000 (00:27 +0200)]
Fix two small warnings.

13 years agoHardware drivers: Use names for struct entries.
Uwe Hermann [Mon, 18 Apr 2011 22:14:15 +0000 (00:14 +0200)]
Hardware drivers: Use names for struct entries.

13 years agools: Always use glib's memory allocation functions.
Uwe Hermann [Sun, 17 Apr 2011 12:51:54 +0000 (14:51 +0200)]
ols: Always use glib's memory allocation functions.

13 years agoMSO19: Always use glib's memory allocation functions.
Uwe Hermann [Sun, 17 Apr 2011 08:22:10 +0000 (10:22 +0200)]
MSO19: Always use glib's memory allocation functions.

13 years agodemo: Always use glib's memory allocation functions.
Uwe Hermann [Sat, 16 Apr 2011 15:23:04 +0000 (17:23 +0200)]
demo: Always use glib's memory allocation functions.

13 years agoserial.c: Use g_try_malloc().
Uwe Hermann [Sat, 16 Apr 2011 14:07:28 +0000 (16:07 +0200)]
serial.c: Use g_try_malloc().

13 years agoASIX Sigma: Improve error handling a bit.
Uwe Hermann [Sat, 16 Apr 2011 14:04:32 +0000 (16:04 +0200)]
ASIX Sigma: Improve error handling a bit.

13 years agoalsa: Always use glib's memory allocation functions.
Uwe Hermann [Sat, 16 Apr 2011 13:58:26 +0000 (15:58 +0200)]
alsa: Always use glib's memory allocation functions.

13 years agoLA8: Always use glib's memory allocation functions.
Uwe Hermann [Sat, 16 Apr 2011 12:24:58 +0000 (14:24 +0200)]
LA8: Always use glib's memory allocation functions.

13 years agoReplace g_malloc{0,} with g_try_malloc{0,}.
Uwe Hermann [Sat, 16 Apr 2011 12:17:51 +0000 (14:17 +0200)]
Replace g_malloc{0,} with g_try_malloc{0,}.

The g_malloc()/g_malloc0() versions exit/segfault if not enough memory
is available, which is not a good thing in libsigrok.

Instead, we use the g_try_malloc()/g_try_malloc0() variants, which
return NULL if not enough memory is available, so that the caller can
handle the error properly.

13 years agognuplot output: Optimize by only storing changes.
Uwe Hermann [Fri, 15 Apr 2011 19:49:22 +0000 (21:49 +0200)]
gnuplot output: Optimize by only storing changes.

Only output new lines in gnuplot output if there have been changes in
the samples (similar to what VCD does). As long as the first and last
sample are output, the resulting plot looks OK.

This reduces the size of the output file from roughly 200MB to just 60KB
in one specific test setup (depends on the number of probes and on the
signal, of course). The time and CPU load required to generate the gnuplot
output and the resulting plot (PNG or other) is also drastically reduced
from multiple minutes to roughly 30 seconds (again, depends on various
things).

Thanks Ken Mobley of ChronoVu for the report.

13 years agoDon't close/reset the FTDI device too often.
Uwe Hermann [Fri, 15 Apr 2011 18:47:26 +0000 (20:47 +0200)]
Don't close/reset the FTDI device too often.

Only call la8_close_usb_reset_sequencer() in hw_closedev(), it's not
needed in hw_stop_acquisition().

Thanks Ken Mobley of ChronoVu for the report.

13 years agoLA8: free() sample buffers in hw_closedev().
Uwe Hermann [Fri, 15 Apr 2011 18:05:45 +0000 (20:05 +0200)]
LA8: free() sample buffers in hw_closedev().

Thanks Ken Mobley of ChronoVu for the report.

13 years agolibsigrok: Introduce sr_dbg/sr_info/sr_warn/sr_err.
Uwe Hermann [Thu, 14 Apr 2011 07:46:53 +0000 (09:46 +0200)]
libsigrok: Introduce sr_dbg/sr_info/sr_warn/sr_err.

We should use these (internal) functions in libsigrok exclusively from
now on, i.e. no more use of glib's g_debug() etc.

These functions are only for libsigrok, the frontends use whatever
logging mechanism is suitable there.

13 years agoAdd chronovu-la8 input file format support.
Uwe Hermann [Sun, 10 Apr 2011 22:21:19 +0000 (00:21 +0200)]
Add chronovu-la8 input file format support.

13 years agoAdd chronovu-la8 output file format.
Uwe Hermann [Sun, 10 Apr 2011 21:33:43 +0000 (23:33 +0200)]
Add chronovu-la8 output file format.

13 years agognuplot output: More error checks.
Uwe Hermann [Sun, 10 Apr 2011 14:46:05 +0000 (16:46 +0200)]
gnuplot output: More error checks.

13 years agoinput/output formats: s/extension/id/.
Uwe Hermann [Wed, 6 Apr 2011 19:51:36 +0000 (21:51 +0200)]
input/output formats: s/extension/id/.

The struct entry 'extension' is not really a (filename) extension, but
rather a unique ID used for input or output formats, e.g. in the sigrok
CLI or GUI interface. Thus, rename it accordingly.

13 years agoLA8: Use the new SR_ERR_ARG macro.
Uwe Hermann [Wed, 6 Apr 2011 18:01:31 +0000 (20:01 +0200)]
LA8: Use the new SR_ERR_ARG macro.

13 years agoAdd SR_ERR_ARG #define.
Uwe Hermann [Wed, 6 Apr 2011 17:53:31 +0000 (19:53 +0200)]
Add SR_ERR_ARG #define.

Changing the number of SR_ERR_SAMPLERATE is not a problem ATM, as we
never had a public release of libsigrok, i.e. nobody relies on the API yet.

13 years agoBinary output: Add more error checks.
Uwe Hermann [Wed, 6 Apr 2011 17:51:11 +0000 (19:51 +0200)]
Binary output: Add more error checks.

13 years agoinput/output formats: Explicit struct member names.
Uwe Hermann [Wed, 6 Apr 2011 17:42:49 +0000 (19:42 +0200)]
input/output formats: Explicit struct member names.

This makes it immediately clear what an entry is supposed to be, no
need to look it up in some header file.

13 years agoAdd initial support for the ChronoVu LA8.
Uwe Hermann [Mon, 4 Apr 2011 17:40:30 +0000 (19:40 +0200)]
Add initial support for the ChronoVu LA8.

13 years agoRevert temporary changes for 0.2 release.
Uwe Hermann [Sun, 3 Apr 2011 21:18:46 +0000 (23:18 +0200)]
Revert temporary changes for 0.2 release.

13 years agoDisable some stuff which should not be in 0.2.
Uwe Hermann [Sun, 3 Apr 2011 20:38:35 +0000 (22:38 +0200)]
Disable some stuff which should not be in 0.2.

Disable decoders, disable lib building.

13 years agoHook up output/text directory with autotools.
Uwe Hermann [Sun, 3 Apr 2011 18:15:12 +0000 (20:15 +0200)]
Hook up output/text directory with autotools.

This is needed for 'make distcheck' to work.

Also, add missing text.h to the list of source files.

13 years agoOLS driver overhaul
Bert Vermeulen [Sun, 3 Apr 2011 04:15:45 +0000 (06:15 +0200)]
OLS driver overhaul

support for metadata in recent versions of the FPGA code
moved constants and structs out to separate header file
got rid of all device instance-specific globals