├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── analysis ├── allanvariance.py ├── autocorrelation.py ├── binutils.py ├── distribution.py ├── entropy.py ├── lsne.py └── tobinary.py ├── doc ├── img │ ├── coso.png │ ├── ero.png │ ├── logo.png │ ├── muro.png │ ├── ptrng.png │ ├── ringo.png │ ├── setuphold.png │ ├── simulation.png │ ├── toplevel.png │ └── workflow.png └── tutorial.ipynb ├── emulator ├── coso.py ├── emulator.py ├── ero.py ├── muro.py ├── playground.ipynb └── ro.py ├── hardware ├── config │ ├── digitalnoise │ │ ├── constants.vhd │ │ ├── generate.py │ │ └── templates │ │ │ ├── constraints.xdc.jinja │ │ │ └── settings.vhd.jinja │ └── registers │ │ ├── csrconfig │ │ ├── regmap.md │ │ ├── regmap.vhd │ │ └── regmap.yaml ├── hdl │ ├── analog.vhd │ ├── ptrng │ │ ├── alarm.vhd │ │ ├── bitpacker.vhd │ │ ├── clkdivider.vhd │ │ ├── conditioner.vhd │ │ ├── coso.vhd │ │ ├── digitalnoise.vhd │ │ ├── digitizer.vhd │ │ ├── ero.vhd │ │ ├── freqcounter.vhd │ │ ├── muro.vhd │ │ ├── onlinetest.vhd │ │ ├── ptrng.vhd │ │ └── synchronizer.vhd │ └── top.vhd ├── sim │ ├── Makefile │ ├── config.mk │ ├── signaltools.py │ ├── test_alarm │ │ ├── Makefile │ │ └── test_alarm.py │ ├── test_bitpacker │ │ ├── Makefile │ │ └── test_bitpacker.py │ ├── test_clkdivider │ │ ├── Makefile │ │ └── test_clkdivider.py │ ├── test_conditioner │ │ ├── Makefile │ │ └── test_conditioner.py │ ├── test_coso │ │ ├── Makefile │ │ └── test_coso.py │ ├── test_ero │ │ ├── Makefile │ │ └── test_ero.py │ ├── test_fifo │ │ ├── Makefile │ │ └── test_fifo.py │ ├── test_freqcounter │ │ ├── Makefile │ │ └── test_freqcounter.py │ ├── test_muro │ │ ├── Makefile │ │ ├── murowrapper.vhd │ │ └── test_muro.py │ ├── test_onlinetest │ │ ├── Makefile │ │ └── test_onlinetest.py │ └── test_ptrng │ │ ├── Makefile │ │ ├── digitalnoise_stub.vhd │ │ └── test_ptrng.py └── target │ ├── common │ ├── generic │ │ ├── fifo.vhd │ │ └── ring.vhd │ └── xilinx │ │ ├── adc.vhd │ │ ├── dpfifo.vhd │ │ ├── ring.vhd │ │ └── top.xdc │ └── fpga │ ├── hdl_files.tcl │ └── xilinx │ ├── arty_a7_100t │ ├── generate_coso.args │ ├── generate_ero.args │ ├── generate_muro.args │ ├── target.vhd │ └── target.xdc │ ├── arty_a7_35t │ ├── generate_coso.args │ ├── generate_ero.args │ ├── generate_muro.args │ ├── target.vhd │ └── target.xdc │ ├── automation │ ├── generate_bitstream.tcl │ └── program_bitstream.tcl │ └── generate_vivado_project.tcl ├── remote ├── analog.py ├── fluart.py ├── frequency.py ├── ping.py ├── readrng.py ├── regmap.py ├── settings.py.in └── temperature.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/README.md -------------------------------------------------------------------------------- /analysis/allanvariance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/allanvariance.py -------------------------------------------------------------------------------- /analysis/autocorrelation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/autocorrelation.py -------------------------------------------------------------------------------- /analysis/binutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/binutils.py -------------------------------------------------------------------------------- /analysis/distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/distribution.py -------------------------------------------------------------------------------- /analysis/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/entropy.py -------------------------------------------------------------------------------- /analysis/lsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/lsne.py -------------------------------------------------------------------------------- /analysis/tobinary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/analysis/tobinary.py -------------------------------------------------------------------------------- /doc/img/coso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/coso.png -------------------------------------------------------------------------------- /doc/img/ero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/ero.png -------------------------------------------------------------------------------- /doc/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/logo.png -------------------------------------------------------------------------------- /doc/img/muro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/muro.png -------------------------------------------------------------------------------- /doc/img/ptrng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/ptrng.png -------------------------------------------------------------------------------- /doc/img/ringo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/ringo.png -------------------------------------------------------------------------------- /doc/img/setuphold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/setuphold.png -------------------------------------------------------------------------------- /doc/img/simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/simulation.png -------------------------------------------------------------------------------- /doc/img/toplevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/toplevel.png -------------------------------------------------------------------------------- /doc/img/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/img/workflow.png -------------------------------------------------------------------------------- /doc/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/doc/tutorial.ipynb -------------------------------------------------------------------------------- /emulator/coso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/coso.py -------------------------------------------------------------------------------- /emulator/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/emulator.py -------------------------------------------------------------------------------- /emulator/ero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/ero.py -------------------------------------------------------------------------------- /emulator/muro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/muro.py -------------------------------------------------------------------------------- /emulator/playground.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/playground.ipynb -------------------------------------------------------------------------------- /emulator/ro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/emulator/ro.py -------------------------------------------------------------------------------- /hardware/config/digitalnoise/constants.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/digitalnoise/constants.vhd -------------------------------------------------------------------------------- /hardware/config/digitalnoise/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/digitalnoise/generate.py -------------------------------------------------------------------------------- /hardware/config/digitalnoise/templates/constraints.xdc.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/digitalnoise/templates/constraints.xdc.jinja -------------------------------------------------------------------------------- /hardware/config/digitalnoise/templates/settings.vhd.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/digitalnoise/templates/settings.vhd.jinja -------------------------------------------------------------------------------- /hardware/config/registers/csrconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/registers/csrconfig -------------------------------------------------------------------------------- /hardware/config/registers/regmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/registers/regmap.md -------------------------------------------------------------------------------- /hardware/config/registers/regmap.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/registers/regmap.vhd -------------------------------------------------------------------------------- /hardware/config/registers/regmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/config/registers/regmap.yaml -------------------------------------------------------------------------------- /hardware/hdl/analog.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/analog.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/alarm.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/alarm.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/bitpacker.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/bitpacker.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/clkdivider.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/clkdivider.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/conditioner.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/conditioner.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/coso.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/coso.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/digitalnoise.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/digitalnoise.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/digitizer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/digitizer.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/ero.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/ero.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/freqcounter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/freqcounter.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/muro.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/muro.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/onlinetest.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/onlinetest.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/ptrng.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/ptrng.vhd -------------------------------------------------------------------------------- /hardware/hdl/ptrng/synchronizer.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/ptrng/synchronizer.vhd -------------------------------------------------------------------------------- /hardware/hdl/top.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/hdl/top.vhd -------------------------------------------------------------------------------- /hardware/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/Makefile -------------------------------------------------------------------------------- /hardware/sim/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/config.mk -------------------------------------------------------------------------------- /hardware/sim/signaltools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/signaltools.py -------------------------------------------------------------------------------- /hardware/sim/test_alarm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_alarm/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_alarm/test_alarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_alarm/test_alarm.py -------------------------------------------------------------------------------- /hardware/sim/test_bitpacker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_bitpacker/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_bitpacker/test_bitpacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_bitpacker/test_bitpacker.py -------------------------------------------------------------------------------- /hardware/sim/test_clkdivider/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_clkdivider/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_clkdivider/test_clkdivider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_clkdivider/test_clkdivider.py -------------------------------------------------------------------------------- /hardware/sim/test_conditioner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_conditioner/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_conditioner/test_conditioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_conditioner/test_conditioner.py -------------------------------------------------------------------------------- /hardware/sim/test_coso/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_coso/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_coso/test_coso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_coso/test_coso.py -------------------------------------------------------------------------------- /hardware/sim/test_ero/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_ero/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_ero/test_ero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_ero/test_ero.py -------------------------------------------------------------------------------- /hardware/sim/test_fifo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_fifo/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_fifo/test_fifo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_fifo/test_fifo.py -------------------------------------------------------------------------------- /hardware/sim/test_freqcounter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_freqcounter/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_freqcounter/test_freqcounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_freqcounter/test_freqcounter.py -------------------------------------------------------------------------------- /hardware/sim/test_muro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_muro/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_muro/murowrapper.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_muro/murowrapper.vhd -------------------------------------------------------------------------------- /hardware/sim/test_muro/test_muro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_muro/test_muro.py -------------------------------------------------------------------------------- /hardware/sim/test_onlinetest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_onlinetest/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_onlinetest/test_onlinetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_onlinetest/test_onlinetest.py -------------------------------------------------------------------------------- /hardware/sim/test_ptrng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_ptrng/Makefile -------------------------------------------------------------------------------- /hardware/sim/test_ptrng/digitalnoise_stub.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_ptrng/digitalnoise_stub.vhd -------------------------------------------------------------------------------- /hardware/sim/test_ptrng/test_ptrng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/sim/test_ptrng/test_ptrng.py -------------------------------------------------------------------------------- /hardware/target/common/generic/fifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/common/generic/fifo.vhd -------------------------------------------------------------------------------- /hardware/target/common/generic/ring.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/common/generic/ring.vhd -------------------------------------------------------------------------------- /hardware/target/common/xilinx/adc.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/common/xilinx/adc.vhd -------------------------------------------------------------------------------- /hardware/target/common/xilinx/dpfifo.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/common/xilinx/dpfifo.vhd -------------------------------------------------------------------------------- /hardware/target/common/xilinx/ring.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/common/xilinx/ring.vhd -------------------------------------------------------------------------------- /hardware/target/common/xilinx/top.xdc: -------------------------------------------------------------------------------- 1 | # Constraints related to generic top 2 | -------------------------------------------------------------------------------- /hardware/target/fpga/hdl_files.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/hdl_files.tcl -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_100t/generate_coso.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_100t/generate_coso.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_100t/generate_ero.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_100t/generate_ero.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_100t/generate_muro.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_100t/generate_muro.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_100t/target.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_100t/target.vhd -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_100t/target.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_100t/target.xdc -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_35t/generate_coso.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_35t/generate_coso.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_35t/generate_ero.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_35t/generate_ero.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_35t/generate_muro.args: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_35t/generate_muro.args -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_35t/target.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_35t/target.vhd -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/arty_a7_35t/target.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/arty_a7_35t/target.xdc -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/automation/generate_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/automation/generate_bitstream.tcl -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/automation/program_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/automation/program_bitstream.tcl -------------------------------------------------------------------------------- /hardware/target/fpga/xilinx/generate_vivado_project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/hardware/target/fpga/xilinx/generate_vivado_project.tcl -------------------------------------------------------------------------------- /remote/analog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/analog.py -------------------------------------------------------------------------------- /remote/fluart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/fluart.py -------------------------------------------------------------------------------- /remote/frequency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/frequency.py -------------------------------------------------------------------------------- /remote/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/ping.py -------------------------------------------------------------------------------- /remote/readrng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/readrng.py -------------------------------------------------------------------------------- /remote/regmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/regmap.py -------------------------------------------------------------------------------- /remote/settings.py.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/settings.py.in -------------------------------------------------------------------------------- /remote/temperature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/remote/temperature.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentrng/ptrng/HEAD/requirements.txt --------------------------------------------------------------------------------