]> 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 d53d8fc90ed4a83bd79591d09e36aacacafd1b2f..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
@@ -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'