├── .github └── workflows │ └── test.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── amalthea ├── __init__.py ├── gateware │ ├── demod.py │ ├── device.py │ ├── fft.py │ ├── interactive-test.py │ ├── radio.py │ ├── stream.py │ ├── types │ │ ├── complex.py │ │ └── fixed_point.py │ ├── util.py │ └── wishbone_example.py └── gnuradio │ ├── amalthea_demod.block.yml │ ├── amalthea_device.block.yml │ ├── amalthea_rx.block.yml │ ├── amaltheasource.block.yml │ ├── amaltheasource.py │ ├── example │ ├── hybridsdr.grc │ └── hybridsdr_wb.grc │ ├── hybridsdr.domain.yml │ ├── wishbone.domain.yml │ └── wishbone_counter.block.yml ├── docs ├── Makefile ├── conf.py ├── getting_started.rst ├── images │ ├── flowgraph_example.png │ └── flowgraph_example_full.png ├── index.rst ├── intro.rst └── make.bat ├── hardware ├── .gitignore ├── libraries │ ├── amalthea.3dshapes │ │ ├── UE27AC54100.step │ │ └── quarter.stp │ ├── amalthea.pretty │ │ ├── BGA-24_5x5_6.0x8.0mm.kicad_mod │ │ ├── BGA256C80P16X16_1400X1400X170.kicad_mod │ │ ├── CONN-Amphenol-UE27AC54100.kicad_mod │ │ ├── Filter_Johanson_2x1.25mm.kicad_mod │ │ ├── SMA-EDGE.kicad_mod │ │ ├── SOD128.kicad_mod │ │ ├── SWD_CONNECTOR_LARGE_BOX.kicad_mod │ │ ├── SWITCH-FSMRA.kicad_mod │ │ ├── USB-MICROB-FCI-10103592-LONGPADS.kicad_mod │ │ ├── lattice_cabga256.kicad_mod │ │ └── usb_tools_logo.kicad_mod │ ├── fpgas_and_processors.lib │ ├── rf.dcm │ ├── rf.lib │ ├── support_hardware.dcm │ ├── support_hardware.lib │ ├── usb.dcm │ └── usb.lib └── rev0 │ ├── amalthea_rev0-cache.lib │ ├── amalthea_rev0.kicad_pcb │ ├── amalthea_rev0.pro │ ├── amalthea_rev0.sch │ ├── debug_control_connections.sch │ ├── fp-lib-table │ ├── fpga_configuration.sch │ ├── gerber_r0.1 │ ├── amalthea_rev0-B_Cu.gbl │ ├── amalthea_rev0-B_Mask.gbs │ ├── amalthea_rev0-B_Paste.gbp │ ├── amalthea_rev0-B_SilkS.gbo │ ├── amalthea_rev0-Edge_Cuts.gm1 │ ├── amalthea_rev0-F_Cu.gtl │ ├── amalthea_rev0-F_Mask.gts │ ├── amalthea_rev0-F_Paste.gtp │ ├── amalthea_rev0-F_SilkS.gto │ ├── amalthea_rev0-In1_Cu.g2 │ ├── amalthea_rev0-In2_Cu.g3 │ ├── amalthea_rev0-NPTH.drl │ └── amalthea_rev0-PTH.drl │ ├── host_side.sch │ ├── power_supplies.sch │ ├── ram_section.sch │ ├── right_side_indicators.sch │ ├── sideband_side.sch │ ├── sym-lib-table │ └── target_side.sch ├── pyproject.toml ├── setup.py └── tests ├── __init__.py ├── test_complex.py ├── test_fft.py └── test_fixed_point.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/README.md -------------------------------------------------------------------------------- /amalthea/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /amalthea/gateware/demod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/demod.py -------------------------------------------------------------------------------- /amalthea/gateware/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/device.py -------------------------------------------------------------------------------- /amalthea/gateware/fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/fft.py -------------------------------------------------------------------------------- /amalthea/gateware/interactive-test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/interactive-test.py -------------------------------------------------------------------------------- /amalthea/gateware/radio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/radio.py -------------------------------------------------------------------------------- /amalthea/gateware/stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/stream.py -------------------------------------------------------------------------------- /amalthea/gateware/types/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/types/complex.py -------------------------------------------------------------------------------- /amalthea/gateware/types/fixed_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/types/fixed_point.py -------------------------------------------------------------------------------- /amalthea/gateware/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/util.py -------------------------------------------------------------------------------- /amalthea/gateware/wishbone_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gateware/wishbone_example.py -------------------------------------------------------------------------------- /amalthea/gnuradio/amalthea_demod.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/amalthea_demod.block.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/amalthea_device.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/amalthea_device.block.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/amalthea_rx.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/amalthea_rx.block.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/amaltheasource.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/amaltheasource.block.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/amaltheasource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/amaltheasource.py -------------------------------------------------------------------------------- /amalthea/gnuradio/example/hybridsdr.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/example/hybridsdr.grc -------------------------------------------------------------------------------- /amalthea/gnuradio/example/hybridsdr_wb.grc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/example/hybridsdr_wb.grc -------------------------------------------------------------------------------- /amalthea/gnuradio/hybridsdr.domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/hybridsdr.domain.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/wishbone.domain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/wishbone.domain.yml -------------------------------------------------------------------------------- /amalthea/gnuradio/wishbone_counter.block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/amalthea/gnuradio/wishbone_counter.block.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/images/flowgraph_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/images/flowgraph_example.png -------------------------------------------------------------------------------- /docs/images/flowgraph_example_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/images/flowgraph_example_full.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/docs/make.bat -------------------------------------------------------------------------------- /hardware/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/.gitignore -------------------------------------------------------------------------------- /hardware/libraries/amalthea.3dshapes/UE27AC54100.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.3dshapes/UE27AC54100.step -------------------------------------------------------------------------------- /hardware/libraries/amalthea.3dshapes/quarter.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.3dshapes/quarter.stp -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/BGA-24_5x5_6.0x8.0mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/BGA-24_5x5_6.0x8.0mm.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/BGA256C80P16X16_1400X1400X170.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/BGA256C80P16X16_1400X1400X170.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/CONN-Amphenol-UE27AC54100.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/CONN-Amphenol-UE27AC54100.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/Filter_Johanson_2x1.25mm.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/Filter_Johanson_2x1.25mm.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/SMA-EDGE.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/SMA-EDGE.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/SOD128.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/SOD128.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/SWD_CONNECTOR_LARGE_BOX.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/SWD_CONNECTOR_LARGE_BOX.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/SWITCH-FSMRA.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/SWITCH-FSMRA.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/USB-MICROB-FCI-10103592-LONGPADS.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/USB-MICROB-FCI-10103592-LONGPADS.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/lattice_cabga256.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/lattice_cabga256.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/amalthea.pretty/usb_tools_logo.kicad_mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/amalthea.pretty/usb_tools_logo.kicad_mod -------------------------------------------------------------------------------- /hardware/libraries/fpgas_and_processors.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/fpgas_and_processors.lib -------------------------------------------------------------------------------- /hardware/libraries/rf.dcm: -------------------------------------------------------------------------------- 1 | EESchema-DOCLIB Version 2.0 2 | # 3 | #End Doc Library 4 | -------------------------------------------------------------------------------- /hardware/libraries/rf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/rf.lib -------------------------------------------------------------------------------- /hardware/libraries/support_hardware.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/support_hardware.dcm -------------------------------------------------------------------------------- /hardware/libraries/support_hardware.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/support_hardware.lib -------------------------------------------------------------------------------- /hardware/libraries/usb.dcm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/usb.dcm -------------------------------------------------------------------------------- /hardware/libraries/usb.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/libraries/usb.lib -------------------------------------------------------------------------------- /hardware/rev0/amalthea_rev0-cache.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/amalthea_rev0-cache.lib -------------------------------------------------------------------------------- /hardware/rev0/amalthea_rev0.kicad_pcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/amalthea_rev0.kicad_pcb -------------------------------------------------------------------------------- /hardware/rev0/amalthea_rev0.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/amalthea_rev0.pro -------------------------------------------------------------------------------- /hardware/rev0/amalthea_rev0.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/amalthea_rev0.sch -------------------------------------------------------------------------------- /hardware/rev0/debug_control_connections.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/debug_control_connections.sch -------------------------------------------------------------------------------- /hardware/rev0/fp-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/fp-lib-table -------------------------------------------------------------------------------- /hardware/rev0/fpga_configuration.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/fpga_configuration.sch -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-B_Cu.gbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-B_Cu.gbl -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-B_Mask.gbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-B_Mask.gbs -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-B_Paste.gbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-B_Paste.gbp -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-B_SilkS.gbo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-B_SilkS.gbo -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-Edge_Cuts.gm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-Edge_Cuts.gm1 -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-F_Cu.gtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-F_Cu.gtl -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-F_Mask.gts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-F_Mask.gts -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-F_Paste.gtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-F_Paste.gtp -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-F_SilkS.gto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-F_SilkS.gto -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-In1_Cu.g2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-In1_Cu.g2 -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-In2_Cu.g3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-In2_Cu.g3 -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-NPTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-NPTH.drl -------------------------------------------------------------------------------- /hardware/rev0/gerber_r0.1/amalthea_rev0-PTH.drl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/gerber_r0.1/amalthea_rev0-PTH.drl -------------------------------------------------------------------------------- /hardware/rev0/host_side.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/host_side.sch -------------------------------------------------------------------------------- /hardware/rev0/power_supplies.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/power_supplies.sch -------------------------------------------------------------------------------- /hardware/rev0/ram_section.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/ram_section.sch -------------------------------------------------------------------------------- /hardware/rev0/right_side_indicators.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/right_side_indicators.sch -------------------------------------------------------------------------------- /hardware/rev0/sideband_side.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/sideband_side.sch -------------------------------------------------------------------------------- /hardware/rev0/sym-lib-table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/sym-lib-table -------------------------------------------------------------------------------- /hardware/rev0/target_side.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/hardware/rev0/target_side.sch -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/tests/test_complex.py -------------------------------------------------------------------------------- /tests/test_fft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/tests/test_fft.py -------------------------------------------------------------------------------- /tests/test_fixed_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greatscottgadgets/amalthea/HEAD/tests/test_fixed_point.py --------------------------------------------------------------------------------