Project scaffold for decoding Apollo USB signals: - 2287.5 MHz downlink with PM/FM modulation - 1.024 MHz BPSK subcarrier (PCM telemetry) - 1.25 MHz FM subcarrier (voice) - 128-word PCM frames at 50 fps Based on NAA Course A-624 Study Guide (1965) and Virtual AGC.
34 lines
871 B
TOML
34 lines
871 B
TOML
[project]
|
|
name = "gr-apollo"
|
|
version = "0.1.0"
|
|
description = "Apollo Unified S-Band (USB) decoder for GNU Radio 3.10+"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.10"
|
|
authors = [
|
|
{name = "Ryan Malloy", email = "ryan@supported.systems"},
|
|
]
|
|
keywords = ["gnuradio", "sdr", "apollo", "usb", "unified-s-band", "nasa", "space"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Communications :: Ham Radio",
|
|
"Topic :: Scientific/Engineering :: Astronomy",
|
|
]
|
|
|
|
dependencies = [
|
|
"numpy",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://git.supported.systems/rf/gr-apollo"
|
|
"Virtual AGC" = "https://www.ibiblio.org/apollo/"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|