]> sigrok.org Git - libsigrokdecode.git/commitdiff
nrf24l01: Add option to support the XN297's extra registers
authorMike <redacted>
Fri, 6 Feb 2015 16:42:32 +0000 (16:42 +0000)
committerUwe Hermann <redacted>
Tue, 24 Feb 2015 20:38:37 +0000 (21:38 +0100)
decoders/nrf24l01/pd.py

index b026f598f9aeafcc62f42cd5d061688785c823be..f7299619b67a78850b030020ad8d141324e7289b 100644 (file)
@@ -52,6 +52,11 @@ regs = {
     0x1c: ('DYNPD',       1),
     0x1d: ('FEATURE',     1),
 }
+xn297_regs = {
+    0x19: ('DEMOD_CAL',   5),
+    0x1e: ('RF_CAL',      7),
+    0x1f: ('BB_CAL',      5),
+}
 
 class Decoder(srd.Decoder):
     api_version = 2
@@ -62,6 +67,10 @@ class Decoder(srd.Decoder):
     license = 'gplv2+'
     inputs = ['spi']
     outputs = ['nrf24l01']
+    options = (
+        {'id': 'xn297_extensions', 'desc': 'XN297 extensions',
+            'default': 'disable', 'values': ('enable', 'disable')},
+    )
     annotations = (
         # Sent from the host to the chip.
         ('cmd', 'Commands sent to the device'),
@@ -91,6 +100,8 @@ class Decoder(srd.Decoder):
 
     def start(self):
         self.out_ann = self.register(srd.OUTPUT_ANN)
+        if self.options['xn297_extensions'] == 'enable':
+            regs.update(xn297_regs)
 
     def warn(self, pos, msg):
         '''Put a warning message 'msg' at 'pos'.'''