summaryrefslogtreecommitdiff
path: root/decoders/nrf905
diff options
context:
space:
mode:
Diffstat (limited to 'decoders/nrf905')
-rw-r--r--decoders/nrf905/pd.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/decoders/nrf905/pd.py b/decoders/nrf905/pd.py
index c36bd10..cc22e93 100644
--- a/decoders/nrf905/pd.py
+++ b/decoders/nrf905/pd.py
@@ -167,8 +167,6 @@ class Decoder(srd.Decoder):
reg_addr = i + addr
if reg_addr <= 9:
self.parse_config_register(reg_addr, registers[i], is_write)
- else:
- print('INVALID REGISTER ADDR ' + hex(reg_addr))
i += 1
def dump_cmd_bytes(self, prefix, cmd_bytes, ann):
@@ -182,14 +180,12 @@ class Decoder(srd.Decoder):
def handle_WC(self):
start_addr = self.mosi_bytes[0][0] & 0x0F
if start_addr > 9:
- print('ERROR: WRONG OFFSET')
return
self.parse_config_registers(start_addr, self.mosi_bytes[1:], True)
def handle_RC(self):
start_addr = self.mosi_bytes[0][0] & 0x0F
if start_addr > 9:
- print('ERROR: WRONG OFFSET')
return
self.parse_config_registers(start_addr, self.miso_bytes[1:], False)