X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=decoders%2Famulet_ascii%2Fpd.py;fp=decoders%2Famulet_ascii%2Fpd.py;h=54733ef35dcde7ec10498eca4f790dc1245c2c49;hb=f57bde305943ee2787f509625ff64299640562b1;hp=23f5a151b0eb07651d1bcd1a8892f0f669458c3c;hpb=0b137b0d5e1cd9a42ab57edbb6e1c724ca88f692;p=libsigrokdecode.git diff --git a/decoders/amulet_ascii/pd.py b/decoders/amulet_ascii/pd.py index 23f5a15..54733ef 100644 --- a/decoders/amulet_ascii/pd.py +++ b/decoders/amulet_ascii/pd.py @@ -24,7 +24,6 @@ from .lists import * L = len(cmds) RX = 0 TX = 1 -rxtx_channels = ('RX', 'TX') # Don't forget to keep this in sync with 'cmds' is lists.py. class Ann: @@ -59,9 +58,9 @@ class Decoder(srd.Decoder): ) options = ( {'id': 'ms_chan', 'desc': 'Master -> slave channel', - 'default': rxtx_channels[0], 'values': rxtx_channels}, + 'default': 'RX', 'values': ('RX', 'TX')}, {'id': 'sm_chan', 'desc': 'Slave -> master channel', - 'default': rxtx_channels[1], 'values': rxtx_channels}, + 'default': 'TX', 'values': ('RX', 'TX')}, ) def __init__(self):