Difference between revisions of "Protocol decoder HOWTO"

From sigrok
Jump to navigation Jump to search
m
m
Line 1: Line 1:
This page serves as a quick-start guide for people who want to write their own sigrok protocol decoders (PDs).
This page serves as a quick-start guide for people who want to write their own [[libsigrokdecode]] protocol decoders (PDs).


It is '''not''' intended to replace the [[Protocol decoder API]] page, but rather to give a short overview/tutorial and some tips.
It is '''not''' intended to replace the [[Protocol decoder API]] page, but rather to give a short overview/tutorial and some tips.
Line 11: Line 11:
Every protocol decoder is a Python module and has its own subdirectory in libsigrokdecode's '''decoders''' directory.
Every protocol decoder is a Python module and has its own subdirectory in libsigrokdecode's '''decoders''' directory.


This is a minimalistic example of how a sigrok protocol decoder looks like, in this case the '''i2c''' decoder (license header, comments, and some other parts omitted).
This is a minimalistic example of how a protocol decoder looks like, in this case the '''i2c''' decoder (license header, comments, and some other parts omitted).


'''Note''': Do not start new protocol decoders by copying code from here. Instead, it's recommended to select an already existing decoder in the source code which is similar to the one you plan to write, and copy that as a starting point.
'''Note''': Do not start new protocol decoders by copying code from here. Instead, it's recommended to select an already existing decoder in the source code which is similar to the one you plan to write, and copy that as a starting point.
Line 44: Line 44:
  bus using two signals (SCL = serial clock line, SDA = serial data line).
  bus using two signals (SCL = serial clock line, SDA = serial data line).
   
   
  <Insert further descriptions etc. here>
  <Insert notes and hints for the user here>
  '''
  '''
   
   
Line 51: Line 51:
</small>
</small>


This is a standard Python file, required in every Python module. It contains a module-level docstring, which is accessible by frontends via the libsigrokdecode API. It should contain a description of the protocol (in this case I2C), and some protocol decoder info, such as its options, protocol output format, and so on.
This is a standard Python file, required in every Python module. It contains a module-level docstring, which is accessible by frontends via the libsigrokdecode API. It should contain a (very) short description of the protocol (in this case I2C), and some notes and hints for the user of this protocol decoder (which can be shown in GUIs when the user selects/browses different PDs).
 
This docstring should '''not''' contain the full, extensive protocol description. Instead, the per-PD wiki page should be used for protocol description, photos of devices or photos of example acquisition setups, and so on. Each decoder has one unique wiki page at the URL '''<nowiki>http://sigrok.org/wiki/Protocol_decoder:<pd></nowiki>''', where '''<pd>''' is the Python module name of the decoder ('''i2c''' in this case). Some examples for such per-PD wiki pages: [[Protocol_decoder:Uart|UART]], [[Protocol_decoder:Pan1321|PAN1321]], [[Protocol_decoder:Mx25lxx05d|MX25LXX05D]], [[Protocol_decoder:Dcf77|DCF77]].


The "'''from .pd import *'''" line will make sure the code from '''pd.py''' gets properly imported when this module is used.
The "'''from .pd import *'''" line will make sure the code from '''pd.py''' gets properly imported when this module is used.
Line 76: Line 78:
     optional_probes = []
     optional_probes = []
     options = {
     options = {
         'addressing': ['Slave address size (in bits)', 7],
         'address_format': ['Displayed slave address format', 'shifted'],
     }
     }
     annotations = [
     annotations = [
         ['7-bit shifted hex', 'Read/write bit shifted out from the 8-bit I2C slave address'],
         ['Start', 'Start condition'],
         ['7-bit shifted hex (short)', 'Read/write bit shifted out from the 8-bit I2C slave address'],
        ['Repeat start', 'Repeat start condition'],
         ['Raw hex', 'Unaltered raw data'],
        ['Stop', 'Stop condition'],
        ['ACK', 'ACK'],
        ['NACK', 'NACK'],
        ['Address read', 'Address read'],
        ['Address write', 'Address write'],
         ['Data read', 'Data read'],
        ['Data write', 'Data write'],
         ['Warnings', 'Human-readable warnings'],
     ]
     ]
   
   
     def __init__(self, **kwargs):
     def __init__(self, **kwargs):
         self.state = 'FIND START'
         self.state = 'FIND START'
         self.samplenum = 0
         # And various other variable initializations...
   
   
     def start(self, metadata):
     def start(self, metadata):

Revision as of 22:45, 19 September 2013

This page serves as a quick-start guide for people who want to write their own libsigrokdecode protocol decoders (PDs).

It is not intended to replace the Protocol decoder API page, but rather to give a short overview/tutorial and some tips.

Introduction

Protocol decoders are written entirely in Python (>= 3.0).

Files

Every protocol decoder is a Python module and has its own subdirectory in libsigrokdecode's decoders directory.

This is a minimalistic example of how a protocol decoder looks like, in this case the i2c decoder (license header, comments, and some other parts omitted).

Note: Do not start new protocol decoders by copying code from here. Instead, it's recommended to select an already existing decoder in the source code which is similar to the one you plan to write, and copy that as a starting point.

Hooking up to the build system

In order to hookup the new protocol decoder you wrote (i2c in this example), just add the respective entries for it in the following files.

  • Add an i2c line to the SUBDIRS variable in decoders/Makefile.am.
  • Add an decoders/i2c/Makefile line to the AC_CONFIG_FILES in configure.ac.

Makefile.am

 pkgdatadir = $(DECODERS_DIR)/i2c
 dist_pkgdata_DATA = __init__.py pd.py
 CLEANFILES = *.pyc

This file is used to tell the build system which files belong to the decoder.

__init__.py

 '''
 I2C protocol decoder.
 
 The Inter-Integrated Circuit (I2C) bus is a bidirectional, multi-master
 bus using two signals (SCL = serial clock line, SDA = serial data line).
 
 <Insert notes and hints for the user here>
 '''
 
 from .pd import *

This is a standard Python file, required in every Python module. It contains a module-level docstring, which is accessible by frontends via the libsigrokdecode API. It should contain a (very) short description of the protocol (in this case I2C), and some notes and hints for the user of this protocol decoder (which can be shown in GUIs when the user selects/browses different PDs).

This docstring should not contain the full, extensive protocol description. Instead, the per-PD wiki page should be used for protocol description, photos of devices or photos of example acquisition setups, and so on. Each decoder has one unique wiki page at the URL http://sigrok.org/wiki/Protocol_decoder:<pd>, where <pd> is the Python module name of the decoder (i2c in this case). Some examples for such per-PD wiki pages: UART, PAN1321, MX25LXX05D, DCF77.

The "from .pd import *" line will make sure the code from pd.py gets properly imported when this module is used.

pd.py

 import sigrokdecode as srd
 
 class Decoder(srd.Decoder):
     api_version = 1
     id = 'i2c'
     name = 'I2C'
     longname = 'Inter-Integrated Circuit'
     desc = 'Two-wire, multi-master, serial bus.'
     license = 'gplv2+'
     inputs = ['logic']
     outputs = ['i2c']
     probes = [
         {'id': 'scl', 'name': 'SCL', 'desc': 'Serial clock line'},
         {'id': 'sda', 'name': 'SDA', 'desc': 'Serial data line'},
     ]
     optional_probes = []
     options = {
         'address_format': ['Displayed slave address format', 'shifted'],
     }
     annotations = [
         ['Start', 'Start condition'],
         ['Repeat start', 'Repeat start condition'],
         ['Stop', 'Stop condition'],
         ['ACK', 'ACK'],
         ['NACK', 'NACK'],
         ['Address read', 'Address read'],
         ['Address write', 'Address write'],
         ['Data read', 'Data read'],
         ['Data write', 'Data write'],
         ['Warnings', 'Human-readable warnings'],
     ]
 
     def __init__(self, **kwargs):
         self.state = 'FIND START'
         # And various other variable initializations...
 
     def start(self, metadata):
         self.out_proto = self.add(srd.OUTPUT_PROTO, 'i2c')
         self.out_ann = self.add(srd.OUTPUT_ANN, 'i2c')
 
     def report(self):
         pass # Unused so far.
 
     def decode(self, ss, es, data):
         for self.samplenum, (scl, sda) in data:
             # ...

The recommended name for the actual decoder file is pd.py.

This file contains some meta information about the decoder, and the actual code itself, mostly in the decode() method.

Random notes, tips and tricks

  • You should only use raise in a protocol decoder to raise exceptions in cases which are a clear bug in the protocol decoder.
  • A simple and fast way to calculate a parity (i.e., count the number of 1 bits) over a number (0x55 in this example) is: ones = bin(0x55).count('1').
  • A simple function to convert a BCD number (max. 8 bits) to an integer is: def bcd2int(b): return (b & 0x0f) + ((b >> 4) * 10).
  • A nice way to construct method names according to (e.g.) protocol commands is: fn = getattr(self, 'handle_cmd_0x%02x' % cmd); fn(arg1, arg2, ...).