Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-03-18 | srd: Cosmetics, fix/add Doxygen comments. | Uwe Hermann | |
2012-03-18 | srd: Fix typos. | Uwe Hermann | |
2012-03-14 | srd: Drop unused ARRAY_SIZE/ARRAY_AND_SIZE for now. | Uwe Hermann | |
2012-03-04 | srd: I2C: Update PD protocol docs. | Uwe Hermann | |
2012-03-04 | srd: PDs: More cosmetics. | Uwe Hermann | |
2012-03-04 | srd: PDs: Use strings for states, too. | Uwe Hermann | |
2012-03-04 | srd: PDs: Consistency/cosmetic fixes. | Uwe Hermann | |
2012-03-04 | sr/srd: s/handler/callback/. | Uwe Hermann | |
We should consistently use the same name for the same thing. | |||
2012-03-02 | sr: Name all callback data 'cb_data'. | Uwe Hermann | |
2012-03-01 | sr/srd: Consistency fixes for callbacks. | Uwe Hermann | |
- Callback function pointer typedefs end with _t. - Variables holding callback functions are named 'cb' everywhere. | |||
2012-02-28 | srd: I2C: change format to have ACK/NACK bits as separate events | Bert Vermeulen | |
2012-02-28 | srd: fix SIGROKDECODE_DIR env variable brokenness | Bert Vermeulen | |
2012-02-28 | srd: properly return status code | Bert Vermeulen | |
2012-02-28 | srd: PDs: Whitespace and cosmetics. | Uwe Hermann | |
2012-02-14 | srd: rename public API functions to srd_thing_action format | Bert Vermeulen | |
2012-02-14 | srd: don't load all protocol decoders unless we really need to. | Bert Vermeulen | |
2012-02-12 | srd: last public/private fix, and docs for all publis functions. | Bert Vermeulen | |
2012-02-12 | srd: finish up public/private API | Bert Vermeulen | |
2012-02-12 | srd: no public API functions use python-specific arguments now | Bert Vermeulen | |
2012-02-12 | srd: extra module path can now optionally be passed to srd_init() | Bert Vermeulen | |
Also environment variable SIGROKDECODE_DIR, if present, is prepended to the module path. | |||
2012-02-11 | Rename 'void *' callback parameters to 'user_data'. | Uwe Hermann | |
This is better, both for consistency reasons, and also because 'data' is a bit too generic and might be confusing, especially since we have other 'data' fields in the code in various places. | |||
2012-02-11 | srd: Every callback should have a 'void *' parameter. | Uwe Hermann | |
This is required in various situations and for various lib users, especially so GUIs which might want to pass specific info via this mechanism. | |||
2012-02-11 | Use g_try_malloc/g_free/g_strdup consistently. | Uwe Hermann | |
Avoid plain malloc()/free() in sr/srd, especially in the API calls. Also avoid g_malloc*() in favor of g_try_malloc*(). Use g_strdup() instead of strdup() so that we can use g_free() consistently everywhere. Exceptions: Stuff that is allocated via other libs (not using glib), should also be properly free'd using the respective free-ing function (instead of g_free()). Examples: Stuff allocated by libusb, libftdi, etc. Also, use sr_err() instead of sr_warn() for actual errors. sr_warn() is meant for non-fatal/uncritical warnings. | |||
2012-02-11 | srd: rename all instance to inst | Bert Vermeulen | |
2012-02-11 | srd: Update README. | Uwe Hermann | |
2012-02-10 | srd: s/python/Python/. | Uwe Hermann | |
2012-02-10 | srd: Add/improve g_malloc() error messages. | Uwe Hermann | |
2012-02-10 | srd: Move private symbols to sigrokdecode-internal.h. | Uwe Hermann | |
2012-02-10 | srd: Add/use SRD_API/SRD_PRIV macros. | Uwe Hermann | |
This is not yet finished, more things should be made private. | |||
2012-02-10 | srd: Cosmetics, whitespace, coding-style fixes. | Uwe Hermann | |
2012-02-10 | srd: More consistent log related function names. | Uwe Hermann | |
Also, fix typos, constify some parameters, add more Doxygen comments. | |||
2012-02-05 | Project-wide consistent naming for #include guards. | Uwe Hermann | |
Document the naming scheme in HACKING. | |||
2012-02-05 | autogen.sh: aclocal support for Windows XP/Vista/7. | Uwe Hermann | |
2012-02-02 | srd: Add explicit srd_pd_output_callback_t typedef. | Uwe Hermann | |
2012-02-01 | srd: Properly use append() for appending to lists. | Uwe Hermann | |
This is not only the canonical way to do it, it's also quite a bit faster and less memory-intensive than using '+='. | |||
2012-02-01 | srd: Move all protocol docs to __init__.py files. | Uwe Hermann | |
2012-02-01 | srd: spi: Use strings for most options. | Uwe Hermann | |
2012-02-01 | srd: uart: Use strings for most PD options. | Uwe Hermann | |
2012-02-01 | srd: uart: Move protocol docs to __init__.py. | Uwe Hermann | |
2012-02-01 | srd: uart: Add missing initialization. | Uwe Hermann | |
2012-02-01 | srd: uart: Use strings for packet types. | Uwe Hermann | |
While this has a (small) performance penalty compared to using integers, it has the advantage of not requiring the use of magic numbers which need to be declared in both the UART decoder and all decoders which stack on top of UART. | |||
2012-02-01 | srd: rename extra_probes to optional_probes in all PDs | Bert Vermeulen | |
2012-02-01 | srd: rename extra_probes to optional_probes | Bert Vermeulen | |
2012-01-31 | srd: free all decoder instances when unloading decoders | Bert Vermeulen | |
2012-01-31 | srd: avoid POSIX_SOURCE warning | Bert Vermeulen | |
2012-01-31 | srd: remove obsolete DDC-only I2C filter | Bert Vermeulen | |
2012-01-31 | srd: add generic I2C filter PD | Bert Vermeulen | |
2012-01-31 | srd: Add missing <inttypes.h> #include (for PRIu64). | Uwe Hermann | |
2012-01-31 | edid: properly deal with leading I2C crud + small fixes | Bert Vermeulen | |
2012-01-30 | srd: removed stray malloc() | Bert Vermeulen | |