]> sigrok.org Git - libsigrokdecode.git/blobdiff - decoders/tca6408a/pd.py
license: remove FSF postal address from boiler plate license text
[libsigrokdecode.git] / decoders / tca6408a / pd.py
index 443a298e71183c9612932afbe83c58af3f965bc1..6d4be72d298f91e53f6b4e7e87c60429ef3e9595 100644 (file)
@@ -16,8 +16,7 @@
 ## GNU General Public License for more details.
 ##
 ## You should have received a copy of the GNU General Public License
-## along with this program; if not, write to the Free Software
-## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+## along with this program; if not, see <http://www.gnu.org/licenses/>.
 ##
 
 import sigrokdecode as srd
@@ -25,8 +24,8 @@ import sigrokdecode as srd
 class Decoder(srd.Decoder):
     api_version = 2
     id = 'tca6408a'
-    name = 'TCA6408A'
-    longname = 'TI TCA6408A'
+    name = 'TI TCA6408A'
+    longname = 'Texas Instruments TCA6408A'
     desc = 'Texas Instruments TCA6408A 8-bit I²C I/O expander.'
     license = 'gplv2+'
     inputs = ['i2c']
@@ -41,7 +40,7 @@ class Decoder(srd.Decoder):
         ('warnings', 'Warnings', (2,)),
     )
 
-    def __init__(self, **kwargs):
+    def __init__(self):
         self.state = 'IDLE'
         self.chip = -1
 
@@ -91,7 +90,6 @@ class Decoder(srd.Decoder):
             if cmd != 'START':
                 return
             self.state = 'GET SLAVE ADDR'
-            self.block_start_sample = ss
         elif self.state == 'GET SLAVE ADDR':
             self.chip = databyte  
             self.state = 'GET REG ADDR'
@@ -128,4 +126,3 @@ class Decoder(srd.Decoder):
                 handle_reg(databyte)
             elif cmd == 'STOP':
                 self.state = 'IDLE'
-