This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# Flipper RAW .sub format | |
# | |
# Having a look at some of the code in lib/subghz/protocols/raw.c | |
# - Decoded data is stored as a line starting with the text "Raw_Data: " followed by space delimited integers. | |
# - Each line stores a maximum number of integers limited to SUBGHZ_DOWNLOAD_MAX_SIZE ,defined as 512. Then a new line is written. | |
# - The sign of each integer represents a decoded signal logic level, positive / negative , logic level 1 / 0 | |
# - The absolute value of each integer represents the signal level duration. I am guessing this is in micro-seconds |