Ryan Malloy 66f20af368 refactor: convert to src-layout for Python packaging
Rename python/ to src/ following PEP 517/518 modern packaging
conventions. Also adds .gitignore for docs and build artifacts.
2026-02-17 18:45:27 -07:00

25 lines
603 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# MIT License
# Copyright (c) 2018 zleffke
# Ported to GNU Radio 3.10+ by gr-mcp
"""
gr-sarsat: Cospas-Sarsat 406 MHz beacon decoder blocks for GNU Radio.
Blocks:
biphase_l_decode_bb - Biphase-L (Manchester) decoder
pds_frame_sync - PDS frame synchronizer
sarp_msg_extract - SARP message extractor
"""
from .biphase_l_decode_bb import biphase_l_decode_bb
from .pds_frame_sync import pds_frame_sync
from .sarp_msg_extract import sarp_msg_extract
__all__ = [
"biphase_l_decode_bb",
"pds_frame_sync",
"sarp_msg_extract",
]