]> sigrok.org Git - libsigrokdecode.git/commitdiff
nrf24l01: Change 'xn297_extensions' option to 'chip'.
authorUwe Hermann <redacted>
Tue, 24 Feb 2015 20:46:04 +0000 (21:46 +0100)
committerUwe Hermann <redacted>
Tue, 24 Feb 2015 20:46:04 +0000 (21:46 +0100)
This allows for easily extending the PD to support other clones or
compatibles of the nRF24L01(+) chip as well.

decoders/nrf24l01/pd.py

index f7299619b67a78850b030020ad8d141324e7289b..2337d4b6d01faed86c778e4b49ff89cbdebb9b4b 100644 (file)
@@ -52,6 +52,7 @@ regs = {
     0x1c: ('DYNPD',       1),
     0x1d: ('FEATURE',     1),
 }
+
 xn297_regs = {
     0x19: ('DEMOD_CAL',   5),
     0x1e: ('RF_CAL',      7),
@@ -68,8 +69,8 @@ class Decoder(srd.Decoder):
     inputs = ['spi']
     outputs = ['nrf24l01']
     options = (
-        {'id': 'xn297_extensions', 'desc': 'XN297 extensions',
-            'default': 'disable', 'values': ('enable', 'disable')},
+        {'id': 'chip', 'desc': 'Chip type',
+            'default': 'nrf24l01', 'values': ('nrf24l01', 'xn297')},
     )
     annotations = (
         # Sent from the host to the chip.
@@ -100,7 +101,7 @@ class Decoder(srd.Decoder):
 
     def start(self):
         self.out_ann = self.register(srd.OUTPUT_ANN)
-        if self.options['xn297_extensions'] == 'enable':
+        if self.options['chip'] == 'xn297':
             regs.update(xn297_regs)
 
     def warn(self, pos, msg):