HackRF-Treasure-Chest/Software/Universal Radio Hacker/tests/data/decode.py

10 lines
163 B
Python
Raw Permalink Normal View History

2022-09-22 22:46:47 +02:00
#!/usr/bin/env python
"""
Simple example external decoding
Simply removes every second bit
"""
import sys
bits = sys.argv[1]
print("".join(b for b in bits[::2]))