├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── boards ├── RFSoC4x2 │ ├── RFSoC4x2.spec │ ├── base │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base.tcl │ │ ├── build_bitstream.tcl │ │ ├── check_timing.tcl │ │ ├── constants.py │ │ ├── makefile │ │ ├── notebooks │ │ │ ├── board │ │ │ │ ├── CMAC_Intro.ipynb │ │ │ │ ├── buttons_leds_switches.ipynb │ │ │ │ ├── oled_display.ipynb │ │ │ │ ├── pl_ddr4.ipynb │ │ │ │ ├── register_map_intro.ipynb │ │ │ │ ├── rfsoc4x2_pmbus.ipynb │ │ │ │ └── syzygy_loopback.ipynb │ │ │ ├── microblaze │ │ │ │ ├── microblaze_c_libraries.ipynb │ │ │ │ ├── microblaze_programming.ipynb │ │ │ │ └── microblaze_python_libraries.ipynb │ │ │ ├── pmod │ │ │ │ ├── data │ │ │ │ │ ├── count_events_10us.jpg │ │ │ │ │ ├── generate_1us_forever.jpg │ │ │ │ │ ├── generate_1us_forever_settings.jpg │ │ │ │ │ ├── generate_1us_n_times.jpg │ │ │ │ │ ├── generate_1us_n_times_settings.jpg │ │ │ │ │ ├── measure_period_200KHz.jpg │ │ │ │ │ ├── pwm_25_duty_cycle.jpg │ │ │ │ │ └── pwm_50_duty_cycle.jpg │ │ │ │ ├── pmod_adc.ipynb │ │ │ │ ├── pmod_als.ipynb │ │ │ │ ├── pmod_dac_adc.ipynb │ │ │ │ ├── pmod_grove_adc.ipynb │ │ │ │ ├── pmod_grove_buzzer.ipynb │ │ │ │ ├── pmod_grove_light.ipynb │ │ │ │ ├── pmod_grove_oled.ipynb │ │ │ │ ├── pmod_grove_pir.ipynb │ │ │ │ ├── pmod_grove_tmp.ipynb │ │ │ │ ├── pmod_grove_usranger.ipynb │ │ │ │ ├── pmod_oled.ipynb │ │ │ │ ├── pmod_pwm.ipynb │ │ │ │ ├── pmod_tc1.ipynb │ │ │ │ ├── pmod_timer.ipynb │ │ │ │ └── pmod_tmp2.ipynb │ │ │ └── rfdc │ │ │ │ ├── 01_rf_dataconverter_introduction.ipynb │ │ │ │ ├── 02_rf_spectrum_analysis.ipynb │ │ │ │ ├── 03_rf_spectrum_sweep.ipynb │ │ │ │ └── data │ │ │ │ ├── rfsoc4x2_loopback.jpg │ │ │ │ ├── rfsystem_introduction.png │ │ │ │ ├── rfsystem_rfadc_block_overview.png │ │ │ │ ├── rfsystem_rfdac_block_overview.png │ │ │ │ └── rfsystem_rfdc_overview.png │ │ └── vivado │ │ │ └── constraints │ │ │ └── base.xdc │ ├── notebooks │ │ ├── common │ │ │ ├── display_port_introduction.ipynb │ │ │ ├── overlay_download.ipynb │ │ │ ├── programming_pybind11.ipynb │ │ │ ├── python_random.ipynb │ │ │ ├── python_retrieving_shell.ipynb │ │ │ ├── usb_webcam.ipynb │ │ │ ├── wifi.ipynb │ │ │ └── zynq_clocks.ipynb │ │ └── selftest │ │ │ ├── data │ │ │ └── rfsoc_selftest.png │ │ │ └── selftest.ipynb │ ├── packages │ │ ├── boot_rfsoc4x2 │ │ │ ├── boot.py │ │ │ ├── bootpy.service │ │ │ └── pre.sh │ │ ├── rfsoc4x2_oled │ │ │ ├── package │ │ │ │ ├── Makefile │ │ │ │ ├── oled.c │ │ │ │ ├── rfsoc4x2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── oled.py │ │ │ │ └── setup.py │ │ │ ├── pre.sh │ │ │ └── qemu.sh │ │ ├── rfsoc_sam │ │ │ ├── pre.sh │ │ │ └── qemu.sh │ │ ├── rfsystem │ │ │ ├── package │ │ │ │ ├── README.md │ │ │ │ ├── rfsystem.PNG │ │ │ │ ├── rfsystem │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── cmac.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── hierarchies.py │ │ │ │ │ ├── receiver.py │ │ │ │ │ ├── spectrum_sweep.py │ │ │ │ │ └── transmitter.py │ │ │ │ ├── setup.py │ │ │ │ └── time_domain_plot.png │ │ │ ├── pre.sh │ │ │ └── qemu.sh │ │ ├── selftest │ │ │ ├── README.md │ │ │ ├── RFSoC4x2-Connections-TopDown-View.png │ │ │ ├── boot.py │ │ │ └── pre.sh │ │ ├── sensorconf │ │ │ ├── pre.sh │ │ │ └── rfsoc4x2.conf │ │ ├── smbus2 │ │ │ └── qemu.sh │ │ ├── tics │ │ │ ├── pre.sh │ │ │ ├── qemu.sh │ │ │ └── tics │ │ │ │ ├── register_txts │ │ │ │ ├── LMK04828_245.76.txt │ │ │ │ └── LMX2594_491.52.txt │ │ │ │ └── tics_projects │ │ │ │ ├── LMK04828_245.76.tcs │ │ │ │ └── LMX2594_REF-245M76__491M52-no_pd.tcs │ │ └── xrfclk-patch │ │ │ ├── pre.sh │ │ │ ├── qemu.sh │ │ │ └── xrfclk-patch │ │ │ └── xrfclk.patch │ └── petalinux_bsp │ │ └── meta-user │ │ ├── recipes-bsp │ │ ├── device-tree │ │ │ └── files │ │ │ │ └── system-user.dtsi │ │ └── u-boot │ │ │ ├── files │ │ │ ├── 0001-read-from-at24mac402-extended-memory.patch │ │ │ ├── bsp.cfg │ │ │ └── ethernet.cfg │ │ │ └── u-boot-xlnx_%.bbappend │ │ └── recipes-kernel │ │ └── linux │ │ ├── linux-xlnx │ │ └── i2c.cfg │ │ └── linux-xlnx_%.bbappend ├── ZCU111 │ ├── ZCU111.spec │ ├── packages │ │ └── zcu111_sensors │ │ │ ├── pre.sh │ │ │ └── zcu111_sensors.conf │ └── petalinux_bsp │ │ └── meta-user │ │ ├── recipes-bsp │ │ ├── device-tree │ │ │ └── files │ │ │ │ └── system-user.dtsi │ │ └── u-boot │ │ │ ├── files │ │ │ ├── bsp.cfg │ │ │ └── ethernet.cfg │ │ │ └── u-boot-xlnx_%.bbappend │ │ └── recipes-kernel │ │ └── linux │ │ ├── linux-xlnx │ │ └── i2c.cfg │ │ └── linux-xlnx_%.bbappend ├── ZCU208 │ ├── ZCU208.spec │ ├── base │ │ ├── __init__.py │ │ ├── base.py │ │ ├── base.tcl │ │ ├── build_bitstream.tcl │ │ ├── check_timing.tcl │ │ ├── handoff.tcl │ │ ├── makefile │ │ ├── notebooks │ │ │ └── rfdc │ │ │ │ ├── 01_rf_dataconverter_introduction.ipynb │ │ │ │ ├── 02_rf_spectrum_analysis.ipynb │ │ │ │ ├── 03_rf_spectrum_sweep.ipynb │ │ │ │ └── data │ │ │ │ ├── CLK104_LMX_to_RFSOC.JPG │ │ │ │ ├── Carlisle_ADC224_ADC225.JPG │ │ │ │ ├── Carlisle_DAC230_DAC231.JPG │ │ │ │ ├── DAC_to_ADC.JPG │ │ │ │ ├── DAC_to_ADC_M2M_DCBlock.JPG │ │ │ │ ├── DAC_to_ADC_both.JPG │ │ │ │ ├── ZCU208-Connections-Front-View.jpg │ │ │ │ ├── ZCU208-Connections-TopDown-View.jpg │ │ │ │ ├── rfsystem_rfadc_block_overview.png │ │ │ │ └── rfsystem_rfdac_block_overview.png │ │ └── vivado │ │ │ └── constraints │ │ │ └── base.xdc │ ├── notebooks │ │ ├── Welcome To RFSOC-PYNQ.ipynb │ │ ├── common │ │ │ ├── data │ │ │ │ ├── random_1.jpg │ │ │ │ ├── random_2.jpg │ │ │ │ └── wifi.jpg │ │ │ ├── overlay_download.ipynb │ │ │ ├── programming_pybind11.ipynb │ │ │ ├── python_random.ipynb │ │ │ ├── python_retrieving_shell.ipynb │ │ │ ├── usb_webcam.ipynb │ │ │ ├── wifi.ipynb │ │ │ └── zynq_clocks.ipynb │ │ └── selftest │ │ │ ├── buttons_leds_switches.ipynb │ │ │ ├── data │ │ │ ├── ZCU208_PushButtonsLEDsSwitches.JPG │ │ │ ├── ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.jpg │ │ │ └── ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.png │ │ │ ├── loopbackSFP.ipynb │ │ │ ├── pl_ddr4.ipynb │ │ │ └── selftest.ipynb │ ├── packages │ │ ├── rfsystem │ │ │ ├── package │ │ │ │ ├── README.md │ │ │ │ ├── rfsystem.PNG │ │ │ │ ├── rfsystem │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── hierarchies.py │ │ │ │ │ ├── receiver.py │ │ │ │ │ ├── spectrum_sweep.py │ │ │ │ │ └── transmitter.py │ │ │ │ ├── setup.py │ │ │ │ └── time_domain_plot.png │ │ │ ├── pre.sh │ │ │ └── qemu.sh │ │ ├── smbus2 │ │ │ └── qemu.sh │ │ └── tics │ │ │ ├── pre.sh │ │ │ ├── qemu.sh │ │ │ └── tics │ │ │ ├── LMK04828_245.76.txt │ │ │ ├── LMK04828_500.0.txt │ │ │ ├── LMX2594_4000.0.txt │ │ │ └── LMX2594_491.52.txt │ └── petalinux_bsp │ │ └── meta-user │ │ ├── recipes-bsp │ │ ├── device-tree │ │ │ └── files │ │ │ │ └── system-user.dtsi │ │ └── u-boot │ │ │ ├── files │ │ │ ├── bsp.cfg │ │ │ └── ethernet.cfg │ │ │ └── u-boot-xlnx_%.bbappend │ │ └── recipes-kernel │ │ └── linux │ │ ├── linux-xlnx │ │ └── i2c.cfg │ │ └── linux-xlnx_%.bbappend └── ip │ ├── address_remap_1.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── address_remap_v1_0_tb.sv │ │ │ └── design.tcl │ │ └── debug_hw_design │ │ │ ├── address_remap_v1_0_hw_test.tcl │ │ │ └── design.tcl │ ├── hdl │ │ └── address_remap_v1_0.v │ └── xgui │ │ └── address_remap_v1_0.tcl │ ├── amplitude_controller_1.0 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── hdl │ │ ├── AXI_Amplitude_Controller.vhd │ │ ├── Amplitude_Controller.vhd │ │ ├── D_Type.vhd │ │ └── S_AXI_Lite.vhd │ └── xgui │ │ └── amplitude_controller_v1_0.tcl │ ├── binary_latch_counter_1.0 │ ├── component.xml │ ├── sim_1 │ │ └── imports │ │ │ └── binary_latch_counter │ │ │ └── tb_binary_latch_counter.sv │ ├── sources_1 │ │ └── imports │ │ │ └── binary_latch_counter │ │ │ └── binary_latch_counter.sv │ └── xgui │ │ └── binary_latch_counter_v1_0.tcl │ ├── dff_en_reset_vector_1.0 │ ├── component.xml │ ├── dff_en_reset_vector.v │ └── xgui │ │ └── dff_en_reset_vector_v1_0.tcl │ ├── io_switch_1.1 │ ├── bd │ │ └── bd.tcl │ ├── component.xml │ ├── drivers │ │ └── io_switch_v1_0 │ │ │ ├── data │ │ │ ├── io_switch.mdd │ │ │ └── io_switch.tcl │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── io_switch.c │ │ │ ├── io_switch.h │ │ │ ├── io_switch_selftest.c │ │ │ ├── xio_switch.c │ │ │ └── xio_switch.h │ ├── example_designs │ │ ├── bfm_design │ │ │ ├── design.tcl │ │ │ └── io_switch_v1_1_tb.sv │ │ └── debug_hw_design │ │ │ ├── design.tcl │ │ │ └── io_switch_v1_1_hw_test.tcl │ ├── gui │ │ └── io_switch_v1_1.gtcl │ ├── hdl │ │ ├── io_switch_v1_1.v │ │ └── io_switch_v1_1_S_AXI.v │ ├── src │ │ ├── io_switch.v │ │ └── io_switch_bit.v │ └── xgui │ │ └── io_switch_v1_1.tcl │ └── packet_generator_1.0 │ ├── bd │ └── bd.tcl │ ├── component.xml │ ├── hdl │ ├── AXI_Packet_Generator.vhd │ ├── D_Type.vhd │ ├── Falling_Edge_Detector.vhd │ ├── Free_Counter.vhd │ ├── Packet_Generator.vhd │ ├── Packet_Inspector.vhd │ ├── Rising Edge Detector.vhd │ ├── SR_Latch.vhd │ └── S_AXI_Lite.vhd │ └── xgui │ └── packet_generator_v1_0.tcl └── docs ├── .rubocop.yml ├── .travis.yml ├── 4x2.md ├── CNAME ├── Gemfile ├── _config.yml ├── _data ├── documents.yml ├── downloads.yml └── navigation.yml ├── _layouts ├── default.html └── post.html ├── _sass ├── jekyll-theme-dinky.scss └── rouge-github.scss ├── accessories.md ├── appendix_example_boot_log.md ├── assets ├── css │ └── style.scss ├── fonts │ ├── Noto-Sans-700 │ │ ├── Noto-Sans-700.eot │ │ ├── Noto-Sans-700.svg │ │ ├── Noto-Sans-700.ttf │ │ ├── Noto-Sans-700.woff │ │ └── Noto-Sans-700.woff2 │ ├── Noto-Sans-700italic │ │ ├── Noto-Sans-700italic.eot │ │ ├── Noto-Sans-700italic.svg │ │ ├── Noto-Sans-700italic.ttf │ │ ├── Noto-Sans-700italic.woff │ │ └── Noto-Sans-700italic.woff2 │ ├── Noto-Sans-italic │ │ ├── Noto-Sans-italic.eot │ │ ├── Noto-Sans-italic.svg │ │ ├── Noto-Sans-italic.ttf │ │ ├── Noto-Sans-italic.woff │ │ └── Noto-Sans-italic.woff2 │ └── Noto-Sans-regular │ │ ├── Noto-Sans-regular.eot │ │ ├── Noto-Sans-regular.svg │ │ ├── Noto-Sans-regular.ttf │ │ ├── Noto-Sans-regular.woff │ │ └── Noto-Sans-regular.woff2 ├── img │ ├── favicon.ico │ └── mask-small.png └── js │ └── scale.fix.js ├── board_files.md ├── boards.md ├── educational_resources.md ├── faqs.md ├── getting_started.md ├── images ├── 01_rfsoc_2x2.png ├── 01_rfsoc_2x2_t.png ├── 221761734-A_AMD_Zynq_RFSoC_Lockup_RGB_Blk.png ├── RFSoC_4x2_Max_Res.png ├── RFSoC_4x2_Min_Res.png ├── block_diagram.png ├── board_files.png ├── board_overview.png ├── board_setup.png ├── boot_sequence.png ├── frequency_planner600.png ├── jupyter_home.png ├── jupyter_login.png ├── pynq-zu_boot_sequence.png ├── pynq_logo (2).png ├── pynq_logo.png ├── pynq_logo_white.png ├── rfsoc2x2.jpg ├── rfsoc2x2.png ├── rfsoc2x2_block_diagram.png ├── rfsoc2x2_connections.jpg ├── rfsoc2x2_connections_400.jpg ├── rfsoc2x2_hardware.png ├── rfsoc2x2_setup.png ├── rfsoc4x2.jpg ├── rfsoc4x2.png ├── rfsoc4x2_board.png ├── rfsoc4x2_board_800.png ├── rfsoc4x2_connections_400.jpg ├── rfsoc_2x2_1000.png ├── rfsoc_2x2_1500.png ├── rfsoc_2x2_2000.png ├── rfsoc_2x2_800.png ├── rfsoc_2x2_base.pdf ├── rfsoc_2x2_base_t.png ├── rfsoc_2x2_t.png ├── rfsoc_4x2_base_overlay.png ├── rfsoc_4x2_base_overlay_t.png ├── rfsoc_base_overlay.png ├── rfsoc_book_banner.png ├── rfsoc_logo.png ├── rfsystem_introduction.png ├── rfsystem_introduction_400.png ├── spectrum_analyzer400.png ├── strathclyde │ ├── dsp_notebooks │ │ ├── automatic_mod_class_400.png │ │ ├── digital_filtering_400.png │ │ ├── modulation_demodulation_400.png │ │ ├── ofdm_fundamentals_400.png │ │ ├── pulse_shaping_400.png │ │ ├── sampling_aliasing_400.png │ │ ├── sampling_quantisation_400.png │ │ └── spectral_analysis_400.png │ ├── pynq_agc_design_500.png │ ├── rfsoc_bpsk_demonstrator_500.png │ ├── rfsoc_frequency_planner_600.png │ ├── rfsoc_notebooks │ │ ├── rf_data_converters_400.png │ │ ├── rf_spectrum_400.png │ │ └── software_defined_radio_400.png │ ├── rfsoc_ofdm_demonstrator_500.png │ ├── rfsoc_qpsk_demonstrator_500.png │ └── rfsoc_spectrum_analyser_500.png ├── xilinx-zynq-rfsoc-color-rgb-logo.png ├── xup_rfsoc_pynq_logos.png ├── zcu111.jpg ├── zcu111.png ├── zcu208.png ├── zcu216.jpg └── zcu216.png ├── index.md ├── jekyll-theme-dinky.gemspec ├── jekyll-theme-minimal.gemspec ├── old_index.md ├── overlays.md ├── pdf ├── HTG-ZRF2-XUP_REV_11_Schematic_20Jan21.pdf ├── HTG-ZRF8_UG.pdf ├── RELEASED.RFSoC_4X2_Gen3_V2I1_SCH_Prototype_2021-12-17_V2.pdf ├── isfpga_rfsoc_2x2_next_steps.pdf ├── isfpga_rfsoc_2x2_overview.pdf ├── isfpga_rfsoc_2x2_rfsoc_overview.pdf ├── isfpga_rxsoc_2x2_demos.pdf ├── rfsoc_2x2_base_overlay.pdf └── rfsoc_4x2_base_overlay.pdf ├── purchase.md ├── rfsoc_4x2_base_overlay.md ├── rfsoc_4x2_getting_started.md ├── rfsoc_4x2_overview.md ├── script ├── bootstrap ├── cibuild ├── release └── validate-html ├── support.md └── tutorial.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/README.md -------------------------------------------------------------------------------- /boards/RFSoC4x2/RFSoC4x2.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/RFSoC4x2.spec -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/__init__.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/base.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/base.tcl -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/build_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/build_bitstream.tcl -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/check_timing.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/check_timing.tcl -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/constants.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/makefile -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/CMAC_Intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/CMAC_Intro.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/buttons_leds_switches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/buttons_leds_switches.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/oled_display.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/oled_display.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/pl_ddr4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/pl_ddr4.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/register_map_intro.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/register_map_intro.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/rfsoc4x2_pmbus.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/rfsoc4x2_pmbus.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/board/syzygy_loopback.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/board/syzygy_loopback.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/microblaze/microblaze_c_libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/microblaze/microblaze_c_libraries.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/microblaze/microblaze_programming.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/microblaze/microblaze_programming.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/microblaze/microblaze_python_libraries.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/microblaze/microblaze_python_libraries.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/count_events_10us.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/count_events_10us.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_forever.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_forever.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_forever_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_forever_settings.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_n_times.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_n_times.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_n_times_settings.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/generate_1us_n_times_settings.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/measure_period_200KHz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/measure_period_200KHz.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/pwm_25_duty_cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/pwm_25_duty_cycle.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/data/pwm_50_duty_cycle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/data/pwm_50_duty_cycle.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_adc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_adc.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_als.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_als.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_dac_adc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_dac_adc.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_adc.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_adc.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_buzzer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_buzzer.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_light.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_light.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_oled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_oled.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_pir.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_pir.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_tmp.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_tmp.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_usranger.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_grove_usranger.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_oled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_oled.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_pwm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_pwm.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_tc1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_tc1.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_timer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_timer.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/pmod/pmod_tmp2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/pmod/pmod_tmp2.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/01_rf_dataconverter_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/01_rf_dataconverter_introduction.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/02_rf_spectrum_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/02_rf_spectrum_analysis.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/03_rf_spectrum_sweep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/03_rf_spectrum_sweep.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/data/rfsoc4x2_loopback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/data/rfsoc4x2_loopback.jpg -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_introduction.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfadc_block_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfadc_block_overview.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfdac_block_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfdac_block_overview.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfdc_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/notebooks/rfdc/data/rfsystem_rfdc_overview.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/base/vivado/constraints/base.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/base/vivado/constraints/base.xdc -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/display_port_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/display_port_introduction.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/overlay_download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/overlay_download.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/programming_pybind11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/programming_pybind11.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/python_random.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/python_random.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/python_retrieving_shell.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/python_retrieving_shell.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/usb_webcam.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/usb_webcam.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/wifi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/wifi.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/common/zynq_clocks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/common/zynq_clocks.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/selftest/data/rfsoc_selftest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/selftest/data/rfsoc_selftest.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/notebooks/selftest/selftest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/notebooks/selftest/selftest.ipynb -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/boot_rfsoc4x2/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/boot_rfsoc4x2/boot.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/boot_rfsoc4x2/bootpy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/boot_rfsoc4x2/bootpy.service -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/boot_rfsoc4x2/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/boot_rfsoc4x2/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/package/Makefile -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/package/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/package/oled.c -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/package/rfsoc4x2/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2022 Xilinx, Inc 2 | # SPDX-License-Identifier: BSD-3-Clause 3 | 4 | -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/package/rfsoc4x2/oled.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/package/rfsoc4x2/oled.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/package/setup.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc4x2_oled/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc4x2_oled/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc_sam/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc_sam/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsoc_sam/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsoc_sam/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/README.md -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem.PNG -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/__init__.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/cmac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/cmac.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/constants.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/hierarchies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/hierarchies.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/receiver.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/spectrum_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/spectrum_sweep.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/rfsystem/transmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/rfsystem/transmitter.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/setup.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/package/time_domain_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/package/time_domain_plot.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/rfsystem/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/rfsystem/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/selftest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/selftest/README.md -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/selftest/RFSoC4x2-Connections-TopDown-View.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/selftest/RFSoC4x2-Connections-TopDown-View.png -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/selftest/boot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/selftest/boot.py -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/selftest/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/selftest/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/sensorconf/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/sensorconf/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/sensorconf/rfsoc4x2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/sensorconf/rfsoc4x2.conf -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/smbus2/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/smbus2/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/tics/register_txts/LMK04828_245.76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/tics/register_txts/LMK04828_245.76.txt -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/tics/register_txts/LMX2594_491.52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/tics/register_txts/LMX2594_491.52.txt -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/tics/tics_projects/LMK04828_245.76.tcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/tics/tics_projects/LMK04828_245.76.tcs -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/tics/tics/tics_projects/LMX2594_REF-245M76__491M52-no_pd.tcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/tics/tics/tics_projects/LMX2594_REF-245M76__491M52-no_pd.tcs -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/xrfclk-patch/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/xrfclk-patch/pre.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/xrfclk-patch/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/xrfclk-patch/qemu.sh -------------------------------------------------------------------------------- /boards/RFSoC4x2/packages/xrfclk-patch/xrfclk-patch/xrfclk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/packages/xrfclk-patch/xrfclk-patch/xrfclk.patch -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/0001-read-from-at24mac402-extended-memory.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/0001-read-from-at24mac402-extended-memory.patch -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg -------------------------------------------------------------------------------- /boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/RFSoC4x2/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/ZCU111/ZCU111.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/ZCU111.spec -------------------------------------------------------------------------------- /boards/ZCU111/packages/zcu111_sensors/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/packages/zcu111_sensors/pre.sh -------------------------------------------------------------------------------- /boards/ZCU111/packages/zcu111_sensors/zcu111_sensors.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/packages/zcu111_sensors/zcu111_sensors.conf -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg -------------------------------------------------------------------------------- /boards/ZCU111/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU111/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/ZCU208/ZCU208.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/ZCU208.spec -------------------------------------------------------------------------------- /boards/ZCU208/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/__init__.py -------------------------------------------------------------------------------- /boards/ZCU208/base/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/base.py -------------------------------------------------------------------------------- /boards/ZCU208/base/base.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/base.tcl -------------------------------------------------------------------------------- /boards/ZCU208/base/build_bitstream.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/build_bitstream.tcl -------------------------------------------------------------------------------- /boards/ZCU208/base/check_timing.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/check_timing.tcl -------------------------------------------------------------------------------- /boards/ZCU208/base/handoff.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/handoff.tcl -------------------------------------------------------------------------------- /boards/ZCU208/base/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/makefile -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/01_rf_dataconverter_introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/01_rf_dataconverter_introduction.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/02_rf_spectrum_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/02_rf_spectrum_analysis.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/03_rf_spectrum_sweep.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/03_rf_spectrum_sweep.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/CLK104_LMX_to_RFSOC.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/CLK104_LMX_to_RFSOC.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/Carlisle_ADC224_ADC225.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/Carlisle_ADC224_ADC225.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/Carlisle_DAC230_DAC231.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/Carlisle_DAC230_DAC231.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC_M2M_DCBlock.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC_M2M_DCBlock.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC_both.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/DAC_to_ADC_both.JPG -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/ZCU208-Connections-Front-View.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/ZCU208-Connections-Front-View.jpg -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/ZCU208-Connections-TopDown-View.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/ZCU208-Connections-TopDown-View.jpg -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/rfsystem_rfadc_block_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/rfsystem_rfadc_block_overview.png -------------------------------------------------------------------------------- /boards/ZCU208/base/notebooks/rfdc/data/rfsystem_rfdac_block_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/notebooks/rfdc/data/rfsystem_rfdac_block_overview.png -------------------------------------------------------------------------------- /boards/ZCU208/base/vivado/constraints/base.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/base/vivado/constraints/base.xdc -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/Welcome To RFSOC-PYNQ.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/Welcome To RFSOC-PYNQ.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/data/random_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/data/random_1.jpg -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/data/random_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/data/random_2.jpg -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/data/wifi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/data/wifi.jpg -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/overlay_download.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/overlay_download.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/programming_pybind11.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/programming_pybind11.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/python_random.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/python_random.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/python_retrieving_shell.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/python_retrieving_shell.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/usb_webcam.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/usb_webcam.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/wifi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/wifi.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/common/zynq_clocks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/common/zynq_clocks.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/buttons_leds_switches.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/buttons_leds_switches.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/data/ZCU208_PushButtonsLEDsSwitches.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/data/ZCU208_PushButtonsLEDsSwitches.JPG -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/data/ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/data/ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.jpg -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/data/ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/data/ZCU208_SFP_2x2_Cage_with_LoopbackAtUpperRight.png -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/loopbackSFP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/loopbackSFP.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/pl_ddr4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/pl_ddr4.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/notebooks/selftest/selftest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/notebooks/selftest/selftest.ipynb -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/README.md -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem.PNG -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/__init__.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/constants.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/hierarchies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/hierarchies.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/receiver.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/spectrum_sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/spectrum_sweep.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/rfsystem/transmitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/rfsystem/transmitter.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/setup.py -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/package/time_domain_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/package/time_domain_plot.png -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/pre.sh -------------------------------------------------------------------------------- /boards/ZCU208/packages/rfsystem/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/rfsystem/qemu.sh -------------------------------------------------------------------------------- /boards/ZCU208/packages/smbus2/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/smbus2/qemu.sh -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/pre.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/pre.sh -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/qemu.sh -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/tics/LMK04828_245.76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/tics/LMK04828_245.76.txt -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/tics/LMK04828_500.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/tics/LMK04828_500.0.txt -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/tics/LMX2594_4000.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/tics/LMX2594_4000.0.txt -------------------------------------------------------------------------------- /boards/ZCU208/packages/tics/tics/LMX2594_491.52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/packages/tics/tics/LMX2594_491.52.txt -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/device-tree/files/system-user.dtsi -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/bsp.cfg -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/files/ethernet.cfg -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-bsp/u-boot/u-boot-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx/i2c.cfg -------------------------------------------------------------------------------- /boards/ZCU208/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ZCU208/petalinux_bsp/meta-user/recipes-kernel/linux/linux-xlnx_%.bbappend -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/component.xml -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/example_designs/bfm_design/address_remap_v1_0_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/example_designs/bfm_design/address_remap_v1_0_tb.sv -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/example_designs/debug_hw_design/address_remap_v1_0_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/example_designs/debug_hw_design/address_remap_v1_0_hw_test.tcl -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/hdl/address_remap_v1_0.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/hdl/address_remap_v1_0.v -------------------------------------------------------------------------------- /boards/ip/address_remap_1.0/xgui/address_remap_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/address_remap_1.0/xgui/address_remap_v1_0.tcl -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/component.xml -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/hdl/AXI_Amplitude_Controller.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/hdl/AXI_Amplitude_Controller.vhd -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/hdl/Amplitude_Controller.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/hdl/Amplitude_Controller.vhd -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/hdl/D_Type.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/hdl/D_Type.vhd -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/hdl/S_AXI_Lite.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/hdl/S_AXI_Lite.vhd -------------------------------------------------------------------------------- /boards/ip/amplitude_controller_1.0/xgui/amplitude_controller_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/amplitude_controller_1.0/xgui/amplitude_controller_v1_0.tcl -------------------------------------------------------------------------------- /boards/ip/binary_latch_counter_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/binary_latch_counter_1.0/component.xml -------------------------------------------------------------------------------- /boards/ip/binary_latch_counter_1.0/sim_1/imports/binary_latch_counter/tb_binary_latch_counter.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/binary_latch_counter_1.0/sim_1/imports/binary_latch_counter/tb_binary_latch_counter.sv -------------------------------------------------------------------------------- /boards/ip/binary_latch_counter_1.0/sources_1/imports/binary_latch_counter/binary_latch_counter.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/binary_latch_counter_1.0/sources_1/imports/binary_latch_counter/binary_latch_counter.sv -------------------------------------------------------------------------------- /boards/ip/binary_latch_counter_1.0/xgui/binary_latch_counter_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/binary_latch_counter_1.0/xgui/binary_latch_counter_v1_0.tcl -------------------------------------------------------------------------------- /boards/ip/dff_en_reset_vector_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/dff_en_reset_vector_1.0/component.xml -------------------------------------------------------------------------------- /boards/ip/dff_en_reset_vector_1.0/dff_en_reset_vector.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/dff_en_reset_vector_1.0/dff_en_reset_vector.v -------------------------------------------------------------------------------- /boards/ip/dff_en_reset_vector_1.0/xgui/dff_en_reset_vector_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/dff_en_reset_vector_1.0/xgui/dff_en_reset_vector_v1_0.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/bd/bd.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/component.xml -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/data/io_switch.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/data/io_switch.mdd -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/data/io_switch.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/data/io_switch.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/Makefile -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch.c -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch.h -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch_selftest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/io_switch_selftest.c -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/xio_switch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/xio_switch.c -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/xio_switch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/drivers/io_switch_v1_0/src/xio_switch.h -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/example_designs/bfm_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/example_designs/bfm_design/design.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/example_designs/bfm_design/io_switch_v1_1_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/example_designs/bfm_design/io_switch_v1_1_tb.sv -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/example_designs/debug_hw_design/design.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/example_designs/debug_hw_design/design.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/example_designs/debug_hw_design/io_switch_v1_1_hw_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/example_designs/debug_hw_design/io_switch_v1_1_hw_test.tcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/gui/io_switch_v1_1.gtcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/gui/io_switch_v1_1.gtcl -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/hdl/io_switch_v1_1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/hdl/io_switch_v1_1.v -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/hdl/io_switch_v1_1_S_AXI.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/hdl/io_switch_v1_1_S_AXI.v -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/src/io_switch.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/src/io_switch.v -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/src/io_switch_bit.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/src/io_switch_bit.v -------------------------------------------------------------------------------- /boards/ip/io_switch_1.1/xgui/io_switch_v1_1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/io_switch_1.1/xgui/io_switch_v1_1.tcl -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/bd/bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/bd/bd.tcl -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/component.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/component.xml -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/AXI_Packet_Generator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/AXI_Packet_Generator.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/D_Type.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/D_Type.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/Falling_Edge_Detector.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/Falling_Edge_Detector.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/Free_Counter.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/Free_Counter.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/Packet_Generator.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/Packet_Generator.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/Packet_Inspector.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/Packet_Inspector.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/Rising Edge Detector.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/Rising Edge Detector.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/SR_Latch.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/SR_Latch.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/hdl/S_AXI_Lite.vhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/hdl/S_AXI_Lite.vhd -------------------------------------------------------------------------------- /boards/ip/packet_generator_1.0/xgui/packet_generator_v1_0.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/boards/ip/packet_generator_1.0/xgui/packet_generator_v1_0.tcl -------------------------------------------------------------------------------- /docs/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/.rubocop.yml -------------------------------------------------------------------------------- /docs/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/.travis.yml -------------------------------------------------------------------------------- /docs/4x2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/4x2.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | www.rfsoc-pynq.io -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/_data/documents.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_data/documents.yml -------------------------------------------------------------------------------- /docs/_data/downloads.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_data/downloads.yml -------------------------------------------------------------------------------- /docs/_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_data/navigation.yml -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/_layouts/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_layouts/post.html -------------------------------------------------------------------------------- /docs/_sass/jekyll-theme-dinky.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_sass/jekyll-theme-dinky.scss -------------------------------------------------------------------------------- /docs/_sass/rouge-github.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/_sass/rouge-github.scss -------------------------------------------------------------------------------- /docs/accessories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/accessories.md -------------------------------------------------------------------------------- /docs/appendix_example_boot_log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/appendix_example_boot_log.md -------------------------------------------------------------------------------- /docs/assets/css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/css/style.scss -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.svg -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700/Noto-Sans-700.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.svg -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-700italic/Noto-Sans-700italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.svg -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-italic/Noto-Sans-italic.woff2 -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.eot -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.svg -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.ttf -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff -------------------------------------------------------------------------------- /docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/fonts/Noto-Sans-regular/Noto-Sans-regular.woff2 -------------------------------------------------------------------------------- /docs/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/img/favicon.ico -------------------------------------------------------------------------------- /docs/assets/img/mask-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/img/mask-small.png -------------------------------------------------------------------------------- /docs/assets/js/scale.fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/assets/js/scale.fix.js -------------------------------------------------------------------------------- /docs/board_files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/board_files.md -------------------------------------------------------------------------------- /docs/boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/boards.md -------------------------------------------------------------------------------- /docs/educational_resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/educational_resources.md -------------------------------------------------------------------------------- /docs/faqs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/faqs.md -------------------------------------------------------------------------------- /docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/getting_started.md -------------------------------------------------------------------------------- /docs/images/01_rfsoc_2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/01_rfsoc_2x2.png -------------------------------------------------------------------------------- /docs/images/01_rfsoc_2x2_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/01_rfsoc_2x2_t.png -------------------------------------------------------------------------------- /docs/images/221761734-A_AMD_Zynq_RFSoC_Lockup_RGB_Blk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/221761734-A_AMD_Zynq_RFSoC_Lockup_RGB_Blk.png -------------------------------------------------------------------------------- /docs/images/RFSoC_4x2_Max_Res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/RFSoC_4x2_Max_Res.png -------------------------------------------------------------------------------- /docs/images/RFSoC_4x2_Min_Res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/RFSoC_4x2_Min_Res.png -------------------------------------------------------------------------------- /docs/images/block_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/block_diagram.png -------------------------------------------------------------------------------- /docs/images/board_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/board_files.png -------------------------------------------------------------------------------- /docs/images/board_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/board_overview.png -------------------------------------------------------------------------------- /docs/images/board_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/board_setup.png -------------------------------------------------------------------------------- /docs/images/boot_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/boot_sequence.png -------------------------------------------------------------------------------- /docs/images/frequency_planner600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/frequency_planner600.png -------------------------------------------------------------------------------- /docs/images/jupyter_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/jupyter_home.png -------------------------------------------------------------------------------- /docs/images/jupyter_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/jupyter_login.png -------------------------------------------------------------------------------- /docs/images/pynq-zu_boot_sequence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/pynq-zu_boot_sequence.png -------------------------------------------------------------------------------- /docs/images/pynq_logo (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/pynq_logo (2).png -------------------------------------------------------------------------------- /docs/images/pynq_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/pynq_logo.png -------------------------------------------------------------------------------- /docs/images/pynq_logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/pynq_logo_white.png -------------------------------------------------------------------------------- /docs/images/rfsoc2x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2.jpg -------------------------------------------------------------------------------- /docs/images/rfsoc2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2.png -------------------------------------------------------------------------------- /docs/images/rfsoc2x2_block_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2_block_diagram.png -------------------------------------------------------------------------------- /docs/images/rfsoc2x2_connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2_connections.jpg -------------------------------------------------------------------------------- /docs/images/rfsoc2x2_connections_400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2_connections_400.jpg -------------------------------------------------------------------------------- /docs/images/rfsoc2x2_hardware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2_hardware.png -------------------------------------------------------------------------------- /docs/images/rfsoc2x2_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc2x2_setup.png -------------------------------------------------------------------------------- /docs/images/rfsoc4x2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc4x2.jpg -------------------------------------------------------------------------------- /docs/images/rfsoc4x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc4x2.png -------------------------------------------------------------------------------- /docs/images/rfsoc4x2_board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc4x2_board.png -------------------------------------------------------------------------------- /docs/images/rfsoc4x2_board_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc4x2_board_800.png -------------------------------------------------------------------------------- /docs/images/rfsoc4x2_connections_400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc4x2_connections_400.jpg -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_1000.png -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_1500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_1500.png -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_2000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_2000.png -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_800.png -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_base.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_base.pdf -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_base_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_base_t.png -------------------------------------------------------------------------------- /docs/images/rfsoc_2x2_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_2x2_t.png -------------------------------------------------------------------------------- /docs/images/rfsoc_4x2_base_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_4x2_base_overlay.png -------------------------------------------------------------------------------- /docs/images/rfsoc_4x2_base_overlay_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_4x2_base_overlay_t.png -------------------------------------------------------------------------------- /docs/images/rfsoc_base_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_base_overlay.png -------------------------------------------------------------------------------- /docs/images/rfsoc_book_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_book_banner.png -------------------------------------------------------------------------------- /docs/images/rfsoc_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsoc_logo.png -------------------------------------------------------------------------------- /docs/images/rfsystem_introduction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsystem_introduction.png -------------------------------------------------------------------------------- /docs/images/rfsystem_introduction_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/rfsystem_introduction_400.png -------------------------------------------------------------------------------- /docs/images/spectrum_analyzer400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/spectrum_analyzer400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/automatic_mod_class_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/automatic_mod_class_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/digital_filtering_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/digital_filtering_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/modulation_demodulation_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/modulation_demodulation_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/ofdm_fundamentals_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/ofdm_fundamentals_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/pulse_shaping_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/pulse_shaping_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/sampling_aliasing_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/sampling_aliasing_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/sampling_quantisation_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/sampling_quantisation_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/dsp_notebooks/spectral_analysis_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/dsp_notebooks/spectral_analysis_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/pynq_agc_design_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/pynq_agc_design_500.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_bpsk_demonstrator_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_bpsk_demonstrator_500.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_frequency_planner_600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_frequency_planner_600.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_notebooks/rf_data_converters_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_notebooks/rf_data_converters_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_notebooks/rf_spectrum_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_notebooks/rf_spectrum_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_notebooks/software_defined_radio_400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_notebooks/software_defined_radio_400.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_ofdm_demonstrator_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_ofdm_demonstrator_500.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_qpsk_demonstrator_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_qpsk_demonstrator_500.png -------------------------------------------------------------------------------- /docs/images/strathclyde/rfsoc_spectrum_analyser_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/strathclyde/rfsoc_spectrum_analyser_500.png -------------------------------------------------------------------------------- /docs/images/xilinx-zynq-rfsoc-color-rgb-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/xilinx-zynq-rfsoc-color-rgb-logo.png -------------------------------------------------------------------------------- /docs/images/xup_rfsoc_pynq_logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/xup_rfsoc_pynq_logos.png -------------------------------------------------------------------------------- /docs/images/zcu111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/zcu111.jpg -------------------------------------------------------------------------------- /docs/images/zcu111.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/zcu111.png -------------------------------------------------------------------------------- /docs/images/zcu208.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/zcu208.png -------------------------------------------------------------------------------- /docs/images/zcu216.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/zcu216.jpg -------------------------------------------------------------------------------- /docs/images/zcu216.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/images/zcu216.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/jekyll-theme-dinky.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/jekyll-theme-dinky.gemspec -------------------------------------------------------------------------------- /docs/jekyll-theme-minimal.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/jekyll-theme-minimal.gemspec -------------------------------------------------------------------------------- /docs/old_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/old_index.md -------------------------------------------------------------------------------- /docs/overlays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/overlays.md -------------------------------------------------------------------------------- /docs/pdf/HTG-ZRF2-XUP_REV_11_Schematic_20Jan21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/HTG-ZRF2-XUP_REV_11_Schematic_20Jan21.pdf -------------------------------------------------------------------------------- /docs/pdf/HTG-ZRF8_UG.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/HTG-ZRF8_UG.pdf -------------------------------------------------------------------------------- /docs/pdf/RELEASED.RFSoC_4X2_Gen3_V2I1_SCH_Prototype_2021-12-17_V2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/RELEASED.RFSoC_4X2_Gen3_V2I1_SCH_Prototype_2021-12-17_V2.pdf -------------------------------------------------------------------------------- /docs/pdf/isfpga_rfsoc_2x2_next_steps.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/isfpga_rfsoc_2x2_next_steps.pdf -------------------------------------------------------------------------------- /docs/pdf/isfpga_rfsoc_2x2_overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/isfpga_rfsoc_2x2_overview.pdf -------------------------------------------------------------------------------- /docs/pdf/isfpga_rfsoc_2x2_rfsoc_overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/isfpga_rfsoc_2x2_rfsoc_overview.pdf -------------------------------------------------------------------------------- /docs/pdf/isfpga_rxsoc_2x2_demos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/isfpga_rxsoc_2x2_demos.pdf -------------------------------------------------------------------------------- /docs/pdf/rfsoc_2x2_base_overlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/rfsoc_2x2_base_overlay.pdf -------------------------------------------------------------------------------- /docs/pdf/rfsoc_4x2_base_overlay.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/pdf/rfsoc_4x2_base_overlay.pdf -------------------------------------------------------------------------------- /docs/purchase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/purchase.md -------------------------------------------------------------------------------- /docs/rfsoc_4x2_base_overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/rfsoc_4x2_base_overlay.md -------------------------------------------------------------------------------- /docs/rfsoc_4x2_getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/rfsoc_4x2_getting_started.md -------------------------------------------------------------------------------- /docs/rfsoc_4x2_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/rfsoc_4x2_overview.md -------------------------------------------------------------------------------- /docs/script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/script/bootstrap -------------------------------------------------------------------------------- /docs/script/cibuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/script/cibuild -------------------------------------------------------------------------------- /docs/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/script/release -------------------------------------------------------------------------------- /docs/script/validate-html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/script/validate-html -------------------------------------------------------------------------------- /docs/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/support.md -------------------------------------------------------------------------------- /docs/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/RFSoC-PYNQ/HEAD/docs/tutorial.md --------------------------------------------------------------------------------