]> sigrok.org Git - libsigrokdecode.git/blame - decoders/i2cfilter/__init__.py
srd: i2cfilter: Output actual I2C packets.
[libsigrokdecode.git] / decoders / i2cfilter / __init__.py
CommitLineData
61c2bd36
BV
1##
2## This file is part of the sigrok project.
3##
4## Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 3 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16## You should have received a copy of the GNU General Public License
17## along with this program; if not, see <http://www.gnu.org/licenses/>.
18##
19
20'''
156509ca
UH
21Generic I2C filtering protocol decoder.
22
48eee789
UH
23Takes input from the I2C protocol decoder and removes all traffic
24except that from/to the specified slave address and/or direction.
61c2bd36 25
48eee789
UH
26It then outputs the filtered data again as OUTPUT_PROTO of type/format 'i2c'
27(up the protocol decoder stack). No annotations are output.
61c2bd36 28
48eee789
UH
29The I2C slave address to filter out should be passed in as an option
30'address', as an integer. A specific read or write operation can be selected
31with the 'direction' option, which should be 'read', 'write', or 'both'.
61c2bd36
BV
32
33Both of these are optional; if no options are specified the entire payload
34of the I2C session will be output.
35'''
36
37from .i2cfilter import *
38