X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=decoders%2Fi2c%2Fpd.py;h=5eff16971ce366f76cfcf89bb89751d5480de7ff;hp=6c505e02c2ad1c864150cd2667d35a41b874a050;hb=ab4aa33c4bd3f72707c718bb0448722a5c2c9912;hpb=919ace16e7100fccd51fda16c6d40fc3ad9915e2 diff --git a/decoders/i2c/pd.py b/decoders/i2c/pd.py index 6c505e0..5eff169 100644 --- a/decoders/i2c/pd.py +++ b/decoders/i2c/pd.py @@ -18,7 +18,7 @@ ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA ## -# I2C protocol decoder +# I²C protocol decoder # TODO: Look into arbitration, collision detection, clock synchronisation, etc. # TODO: Implement support for 10bit slave addresses. @@ -30,7 +30,7 @@ import sigrokdecode as srd ''' Protocol output format: -I2C packet: +I²C packet: [, ] is one of: @@ -66,7 +66,7 @@ proto = { class Decoder(srd.Decoder): api_version = 1 id = 'i2c' - name = 'I2C' + name = 'I²C' longname = 'Inter-Integrated Circuit' desc = 'Two-wire, multi-master, serial bus.' license = 'gplv2+'