├── .github └── ISSUE_TEMPLATE │ └── issue-description.md ├── .gitmodules ├── CONTRIBUTING.md ├── LICENSE ├── LICENSES ├── AGPL-3.0-or-later.txt ├── BSD-3-Clause.txt ├── GPL-2.0-or-later.txt └── ISC.txt ├── README.md ├── doc ├── AnSIC-sensing-correction.png ├── README.md ├── app_notes │ ├── 40mhz.png │ ├── 40mhz.png.license │ ├── README.md │ ├── ad-hoc-two-sdr.md │ ├── ap-client-two-sdr.md │ ├── csi-architecture.jpg │ ├── csi-architecture.jpg.license │ ├── csi-fuzzer-beacon-ant-back-0.jpg │ ├── csi-fuzzer-beacon-ant-back-1-45-0-13.jpg │ ├── csi-fuzzer-implementation.png │ ├── csi-fuzzer-principle.png │ ├── csi-fuzzer-system-before-vs-now.png │ ├── csi-information-format.jpg │ ├── csi-information-format.jpg.license │ ├── csi-screen-shot-radar-matlab.jpg │ ├── csi-screen-shot-radar.jpg │ ├── csi-screen-shot.jpg │ ├── csi-screen-shot.jpg.license │ ├── csi.md │ ├── csi_fuzzer.md │ ├── driver_stat.md │ ├── drv_fpga_dynamic_loading.md │ ├── frequent_trick.md │ ├── guard-interval.png │ ├── guard-interval.png.license │ ├── hls.md │ ├── ieee80211n.md │ ├── inject_80211.md │ ├── iq-ack-timing-matlab-tx-ack-gap-fixed.jpg │ ├── iq-ack-timing-matlab-tx-ack-gap.jpg │ ├── iq-ack-timing-matlab-tx-ack-iq.jpg │ ├── iq-ack-timing-screen-shot.jpg │ ├── iq-architecture.jpg │ ├── iq-architecture.jpg.license │ ├── iq-capture-parameter.jpg │ ├── iq-capture-parameter.jpg.license │ ├── iq-information-format.jpg │ ├── iq-information-format.jpg.license │ ├── iq-screen-shot.jpg │ ├── iq-screen-shot.jpg.license │ ├── iq.md │ ├── iq_2ant-screen-shot.jpg │ ├── iq_2ant-screen-shot.jpg.license │ ├── iq_2ant-setup.png │ ├── iq_2ant-setup.png.license │ ├── iq_2ant.md │ ├── iq_ack_timing.md │ ├── mimo.png │ ├── mimo.png.license │ ├── mpdu-aggr.png │ ├── mpdu-aggr.png.license │ ├── openwifi-csi-fpga-loopback.jpg │ ├── openwifi-iq-loopback.jpg │ ├── openwifi-loopback-principle.jpg │ ├── openwifi-radar.jpg │ ├── packet-iq-self-loopback-test.md │ ├── perf_counter.md │ ├── radar-self-csi.md │ ├── sensing.png │ ├── subcarriers.png │ └── subcarriers.png.license ├── asic │ └── skywater-130-pdk-and-asic-considerations.md ├── bb-clk.jpg ├── cite-openwifi-github-code.md ├── cite-openwifi-vtc-paper.md ├── img_build_instruction │ └── kuiper.md ├── known_issue │ └── notter.md ├── openwifi-detail.jpg ├── openwifi-detail.jpg.license ├── publications.md ├── rf-digital-if-chain-config.jpg ├── rf-digital-if-chain-config.jpg.license ├── rf-digital-if-chain-spectrum.jpg ├── rf-digital-if-chain-spectrum.jpg.license └── videos.md ├── driver ├── Makefile ├── hw_def.h ├── make_all.sh ├── openofdm_rx │ ├── Makefile │ └── openofdm_rx.c ├── openofdm_tx │ ├── Makefile │ └── openofdm_tx.c ├── rx_intf │ ├── Makefile │ └── rx_intf.c ├── sdr.c ├── sdr.h ├── sdrctl_intf.c ├── side_ch │ ├── Makefile │ ├── make_driver.sh │ ├── side_ch.c │ └── side_ch.h ├── sysfs_intf.c ├── tx_intf │ ├── Makefile │ └── tx_intf.c ├── xilinx_dma │ ├── README.md │ ├── make_xilinx_dma.sh │ └── xilinx_dma.c └── xpu │ ├── Makefile │ └── xpu.c ├── kernel_boot ├── 10-network-device.rules ├── 70-persistent-net.rules ├── 72113-files.zip ├── ad9361.patch ├── ad9361_conv.patch ├── ad9361_private.patch ├── axi_hdmi_crtc.patch ├── boards │ ├── adrv9361z7035 │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── adrv9361z7035_fmc │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── adrv9364z7020 │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── antsdr │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ ├── notes.md │ │ └── u-boot.elf │ ├── antsdr_e200 │ │ ├── README.assets │ │ │ └── e200_struct.svg │ │ ├── README.md │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── e310v2 │ │ ├── README.assets │ │ │ └── struct.png │ │ ├── README.md │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── neptunesdr │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── sdrpi │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ ├── notes.md │ │ └── u-boot.elf │ ├── zc702_fmcs2 │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── zc706_fmcs2 │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf │ ├── zcu102_fmcs2 │ │ ├── bl31.elf │ │ ├── system.dtb │ │ ├── system.dts │ │ └── u-boot_xilinx_zynqmp_zcu102_revA.elf │ └── zed_fmcs2 │ │ ├── devicetree.dtb │ │ ├── devicetree.dts │ │ └── u-boot.elf ├── build_boot_bin.sh ├── build_zynqmp_boot_bin.sh ├── kernel_config ├── kernel_config_zynqmp └── kernel_patch_readme.md ├── openwifi-arch.jpg ├── openwifi-arch.jpg.license └── user_space ├── agc_settings.sh ├── arbitrary_iq_gen ├── iq_single_carrier_1000000Hz_512.bin ├── iq_single_carrier_1000000Hz_512.txt └── single_carrier_gen.m ├── boot_bin_gen.sh ├── build_wpa_supplicant_wo11b.sh ├── cd_adi_iio_dir.sh ├── check_calib_inf.sh ├── csi_fuzzer.sh ├── csi_fuzzer_scan.sh ├── cw_disable.sh ├── cw_max_min_cfg.sh ├── dhcpd.conf ├── difs_disable.sh ├── driver_nl80211.patch ├── drv_and_fpga_package_gen.sh ├── eifs_by_last_rx_fail_disable.sh ├── eifs_by_last_tx_fail_disable.sh ├── eifs_disable.sh ├── fast_reg_log ├── fast_reg_log.c └── fast_reg_log_analyzer.m ├── fosdem-11ag.sh ├── fosdem.sh ├── hostapd-openwifi-11ag.conf ├── hostapd-openwifi.conf ├── inject_80211 ├── Makefile ├── analyze_80211.c ├── ieee80211_radiotap.h ├── inject_80211.c ├── inject_80211.h ├── inject_80211.sh ├── radiotap.c ├── radiotap.h ├── unaligned.h └── uthash.h ├── link_perf_test.sh ├── load_fpga_img.sh ├── monitor_ch.sh ├── nav_disable.sh ├── nic_back_to_normal.sh ├── openwifi_ad9361_fir.ftr ├── openwifi_ad9361_fir_tx_0MHz.ftr ├── openwifi_ad9361_fir_tx_0MHz_11n.ftr ├── openwifi_ad9361_fir_tx_0MHz_11n_narrow1.ftr ├── populate_driver_userspace.sh ├── populate_kernel_image_module_reboot.sh ├── post_config.sh ├── prepare_kernel.sh ├── receiver_phase_offset_override.sh ├── rf_init.sh ├── rf_init_11n.sh ├── rssi_ad9361_show.sh ├── rssi_openwifi_show.sh ├── rx_gain_show.sh ├── rx_stat_show.sh ├── sdcard_boot_update.sh ├── sdr-ad-hoc-join.sh ├── sdr-ad-hoc-up.sh ├── sdrctl_src ├── Makefile ├── cmd.c ├── nl80211.h ├── nl80211_testmode_def.h ├── sdrctl.c ├── sdrctl.h ├── sections.c └── version.sh ├── set_dbg_ch0.sh ├── set_dbg_ch1.sh ├── set_dbg_ch2.sh ├── set_lbt_th.sh ├── set_restrict_freq.sh ├── set_rx_gain_auto.sh ├── set_rx_gain_manual.sh ├── set_rx_monitor_all.sh ├── set_rx_target_sender_mac_addr.sh ├── set_tx_lo.sh ├── set_tx_port.sh ├── setup_once.sh ├── side_ch_ctl_src ├── iq_capture.py ├── iq_capture_2ant.py ├── iq_capture_freq_offset.py ├── save_iq_to_txt_for_verilog_sim.m ├── show_iq_snr.m ├── side_ch_ctl.c ├── side_info_display.py ├── test_iq_2ant_file_display.m ├── test_iq_file_ack_timing_display.m ├── test_iq_file_display.m └── test_side_info_file_display.m ├── slice_cfg.sh ├── stat_enable.sh ├── system_top.bif ├── transfer_driver_userspace_to_board.sh ├── transfer_kernel_image_module_to_board.sh ├── tx_intf_iq_data_to_sysfs.sh ├── tx_intf_iq_send.sh ├── tx_prio_queue_show.sh ├── tx_stat_show.sh ├── update_sdcard.sh ├── webserver ├── index.html ├── openwifi-detail.jpg ├── openwifi-detail.jpg.license ├── openwifi-logo-small.jpg └── openwifi-logo-small.jpg.license ├── wgd.sh ├── wpa-connect.conf ├── wpa-openwifi.conf └── wpa-testap.conf /.github/ISSUE_TEMPLATE/issue-description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/.github/ISSUE_TEMPLATE/issue-description.md -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/AGPL-3.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/LICENSES/AGPL-3.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/LICENSES/BSD-3-Clause.txt -------------------------------------------------------------------------------- /LICENSES/GPL-2.0-or-later.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/LICENSES/GPL-2.0-or-later.txt -------------------------------------------------------------------------------- /LICENSES/ISC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/LICENSES/ISC.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/README.md -------------------------------------------------------------------------------- /doc/AnSIC-sensing-correction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/AnSIC-sensing-correction.png -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/app_notes/40mhz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/40mhz.png -------------------------------------------------------------------------------- /doc/app_notes/40mhz.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/40mhz.png.license -------------------------------------------------------------------------------- /doc/app_notes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/README.md -------------------------------------------------------------------------------- /doc/app_notes/ad-hoc-two-sdr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/ad-hoc-two-sdr.md -------------------------------------------------------------------------------- /doc/app_notes/ap-client-two-sdr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/ap-client-two-sdr.md -------------------------------------------------------------------------------- /doc/app_notes/csi-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-architecture.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-architecture.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-architecture.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/csi-fuzzer-beacon-ant-back-0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-fuzzer-beacon-ant-back-0.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-fuzzer-beacon-ant-back-1-45-0-13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-fuzzer-beacon-ant-back-1-45-0-13.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-fuzzer-implementation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-fuzzer-implementation.png -------------------------------------------------------------------------------- /doc/app_notes/csi-fuzzer-principle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-fuzzer-principle.png -------------------------------------------------------------------------------- /doc/app_notes/csi-fuzzer-system-before-vs-now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-fuzzer-system-before-vs-now.png -------------------------------------------------------------------------------- /doc/app_notes/csi-information-format.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-information-format.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-information-format.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-information-format.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/csi-screen-shot-radar-matlab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-screen-shot-radar-matlab.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-screen-shot-radar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-screen-shot-radar.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-screen-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-screen-shot.jpg -------------------------------------------------------------------------------- /doc/app_notes/csi-screen-shot.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi-screen-shot.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/csi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi.md -------------------------------------------------------------------------------- /doc/app_notes/csi_fuzzer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/csi_fuzzer.md -------------------------------------------------------------------------------- /doc/app_notes/driver_stat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/driver_stat.md -------------------------------------------------------------------------------- /doc/app_notes/drv_fpga_dynamic_loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/drv_fpga_dynamic_loading.md -------------------------------------------------------------------------------- /doc/app_notes/frequent_trick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/frequent_trick.md -------------------------------------------------------------------------------- /doc/app_notes/guard-interval.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/guard-interval.png -------------------------------------------------------------------------------- /doc/app_notes/guard-interval.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/guard-interval.png.license -------------------------------------------------------------------------------- /doc/app_notes/hls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/hls.md -------------------------------------------------------------------------------- /doc/app_notes/ieee80211n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/ieee80211n.md -------------------------------------------------------------------------------- /doc/app_notes/inject_80211.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/inject_80211.md -------------------------------------------------------------------------------- /doc/app_notes/iq-ack-timing-matlab-tx-ack-gap-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-ack-timing-matlab-tx-ack-gap-fixed.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-ack-timing-matlab-tx-ack-gap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-ack-timing-matlab-tx-ack-gap.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-ack-timing-matlab-tx-ack-iq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-ack-timing-matlab-tx-ack-iq.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-ack-timing-screen-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-ack-timing-screen-shot.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-architecture.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-architecture.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-architecture.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/iq-capture-parameter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-capture-parameter.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-capture-parameter.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-capture-parameter.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/iq-information-format.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-information-format.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-information-format.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-information-format.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/iq-screen-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-screen-shot.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq-screen-shot.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq-screen-shot.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/iq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq.md -------------------------------------------------------------------------------- /doc/app_notes/iq_2ant-screen-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_2ant-screen-shot.jpg -------------------------------------------------------------------------------- /doc/app_notes/iq_2ant-screen-shot.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_2ant-screen-shot.jpg.license -------------------------------------------------------------------------------- /doc/app_notes/iq_2ant-setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_2ant-setup.png -------------------------------------------------------------------------------- /doc/app_notes/iq_2ant-setup.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_2ant-setup.png.license -------------------------------------------------------------------------------- /doc/app_notes/iq_2ant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_2ant.md -------------------------------------------------------------------------------- /doc/app_notes/iq_ack_timing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/iq_ack_timing.md -------------------------------------------------------------------------------- /doc/app_notes/mimo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/mimo.png -------------------------------------------------------------------------------- /doc/app_notes/mimo.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/mimo.png.license -------------------------------------------------------------------------------- /doc/app_notes/mpdu-aggr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/mpdu-aggr.png -------------------------------------------------------------------------------- /doc/app_notes/mpdu-aggr.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/mpdu-aggr.png.license -------------------------------------------------------------------------------- /doc/app_notes/openwifi-csi-fpga-loopback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/openwifi-csi-fpga-loopback.jpg -------------------------------------------------------------------------------- /doc/app_notes/openwifi-iq-loopback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/openwifi-iq-loopback.jpg -------------------------------------------------------------------------------- /doc/app_notes/openwifi-loopback-principle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/openwifi-loopback-principle.jpg -------------------------------------------------------------------------------- /doc/app_notes/openwifi-radar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/openwifi-radar.jpg -------------------------------------------------------------------------------- /doc/app_notes/packet-iq-self-loopback-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/packet-iq-self-loopback-test.md -------------------------------------------------------------------------------- /doc/app_notes/perf_counter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/perf_counter.md -------------------------------------------------------------------------------- /doc/app_notes/radar-self-csi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/radar-self-csi.md -------------------------------------------------------------------------------- /doc/app_notes/sensing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/sensing.png -------------------------------------------------------------------------------- /doc/app_notes/subcarriers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/subcarriers.png -------------------------------------------------------------------------------- /doc/app_notes/subcarriers.png.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/app_notes/subcarriers.png.license -------------------------------------------------------------------------------- /doc/asic/skywater-130-pdk-and-asic-considerations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/asic/skywater-130-pdk-and-asic-considerations.md -------------------------------------------------------------------------------- /doc/bb-clk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/bb-clk.jpg -------------------------------------------------------------------------------- /doc/cite-openwifi-github-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/cite-openwifi-github-code.md -------------------------------------------------------------------------------- /doc/cite-openwifi-vtc-paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/cite-openwifi-vtc-paper.md -------------------------------------------------------------------------------- /doc/img_build_instruction/kuiper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/img_build_instruction/kuiper.md -------------------------------------------------------------------------------- /doc/known_issue/notter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/known_issue/notter.md -------------------------------------------------------------------------------- /doc/openwifi-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/openwifi-detail.jpg -------------------------------------------------------------------------------- /doc/openwifi-detail.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/openwifi-detail.jpg.license -------------------------------------------------------------------------------- /doc/publications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/publications.md -------------------------------------------------------------------------------- /doc/rf-digital-if-chain-config.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/rf-digital-if-chain-config.jpg -------------------------------------------------------------------------------- /doc/rf-digital-if-chain-config.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/rf-digital-if-chain-config.jpg.license -------------------------------------------------------------------------------- /doc/rf-digital-if-chain-spectrum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/rf-digital-if-chain-spectrum.jpg -------------------------------------------------------------------------------- /doc/rf-digital-if-chain-spectrum.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/rf-digital-if-chain-spectrum.jpg.license -------------------------------------------------------------------------------- /doc/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/doc/videos.md -------------------------------------------------------------------------------- /driver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/Makefile -------------------------------------------------------------------------------- /driver/hw_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/hw_def.h -------------------------------------------------------------------------------- /driver/make_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/make_all.sh -------------------------------------------------------------------------------- /driver/openofdm_rx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/openofdm_rx/Makefile -------------------------------------------------------------------------------- /driver/openofdm_rx/openofdm_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/openofdm_rx/openofdm_rx.c -------------------------------------------------------------------------------- /driver/openofdm_tx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/openofdm_tx/Makefile -------------------------------------------------------------------------------- /driver/openofdm_tx/openofdm_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/openofdm_tx/openofdm_tx.c -------------------------------------------------------------------------------- /driver/rx_intf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/rx_intf/Makefile -------------------------------------------------------------------------------- /driver/rx_intf/rx_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/rx_intf/rx_intf.c -------------------------------------------------------------------------------- /driver/sdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/sdr.c -------------------------------------------------------------------------------- /driver/sdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/sdr.h -------------------------------------------------------------------------------- /driver/sdrctl_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/sdrctl_intf.c -------------------------------------------------------------------------------- /driver/side_ch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/side_ch/Makefile -------------------------------------------------------------------------------- /driver/side_ch/make_driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/side_ch/make_driver.sh -------------------------------------------------------------------------------- /driver/side_ch/side_ch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/side_ch/side_ch.c -------------------------------------------------------------------------------- /driver/side_ch/side_ch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/side_ch/side_ch.h -------------------------------------------------------------------------------- /driver/sysfs_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/sysfs_intf.c -------------------------------------------------------------------------------- /driver/tx_intf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/tx_intf/Makefile -------------------------------------------------------------------------------- /driver/tx_intf/tx_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/tx_intf/tx_intf.c -------------------------------------------------------------------------------- /driver/xilinx_dma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/xilinx_dma/README.md -------------------------------------------------------------------------------- /driver/xilinx_dma/make_xilinx_dma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/xilinx_dma/make_xilinx_dma.sh -------------------------------------------------------------------------------- /driver/xilinx_dma/xilinx_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/xilinx_dma/xilinx_dma.c -------------------------------------------------------------------------------- /driver/xpu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/xpu/Makefile -------------------------------------------------------------------------------- /driver/xpu/xpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/driver/xpu/xpu.c -------------------------------------------------------------------------------- /kernel_boot/10-network-device.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/10-network-device.rules -------------------------------------------------------------------------------- /kernel_boot/70-persistent-net.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/70-persistent-net.rules -------------------------------------------------------------------------------- /kernel_boot/72113-files.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/72113-files.zip -------------------------------------------------------------------------------- /kernel_boot/ad9361.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/ad9361.patch -------------------------------------------------------------------------------- /kernel_boot/ad9361_conv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/ad9361_conv.patch -------------------------------------------------------------------------------- /kernel_boot/ad9361_private.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/ad9361_private.patch -------------------------------------------------------------------------------- /kernel_boot/axi_hdmi_crtc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/axi_hdmi_crtc.patch -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035_fmc/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035_fmc/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035_fmc/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035_fmc/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9361z7035_fmc/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9361z7035_fmc/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9364z7020/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9364z7020/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9364z7020/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9364z7020/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/adrv9364z7020/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/adrv9364z7020/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr/notes.md -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr_e200/README.assets/e200_struct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr_e200/README.assets/e200_struct.svg -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr_e200/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr_e200/README.md -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr_e200/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr_e200/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr_e200/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr_e200/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/antsdr_e200/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/antsdr_e200/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/e310v2/README.assets/struct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/e310v2/README.assets/struct.png -------------------------------------------------------------------------------- /kernel_boot/boards/e310v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/e310v2/README.md -------------------------------------------------------------------------------- /kernel_boot/boards/e310v2/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/e310v2/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/e310v2/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/e310v2/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/e310v2/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/e310v2/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/neptunesdr/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/neptunesdr/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/neptunesdr/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/neptunesdr/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/neptunesdr/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/neptunesdr/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/sdrpi/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/sdrpi/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/sdrpi/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/sdrpi/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/sdrpi/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/sdrpi/notes.md -------------------------------------------------------------------------------- /kernel_boot/boards/sdrpi/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/sdrpi/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/zc702_fmcs2/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc702_fmcs2/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/zc702_fmcs2/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc702_fmcs2/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/zc702_fmcs2/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc702_fmcs2/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/zc706_fmcs2/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc706_fmcs2/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/zc706_fmcs2/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc706_fmcs2/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/zc706_fmcs2/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zc706_fmcs2/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/boards/zcu102_fmcs2/bl31.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zcu102_fmcs2/bl31.elf -------------------------------------------------------------------------------- /kernel_boot/boards/zcu102_fmcs2/system.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zcu102_fmcs2/system.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/zcu102_fmcs2/system.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zcu102_fmcs2/system.dts -------------------------------------------------------------------------------- /kernel_boot/boards/zcu102_fmcs2/u-boot_xilinx_zynqmp_zcu102_revA.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zcu102_fmcs2/u-boot_xilinx_zynqmp_zcu102_revA.elf -------------------------------------------------------------------------------- /kernel_boot/boards/zed_fmcs2/devicetree.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zed_fmcs2/devicetree.dtb -------------------------------------------------------------------------------- /kernel_boot/boards/zed_fmcs2/devicetree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zed_fmcs2/devicetree.dts -------------------------------------------------------------------------------- /kernel_boot/boards/zed_fmcs2/u-boot.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/boards/zed_fmcs2/u-boot.elf -------------------------------------------------------------------------------- /kernel_boot/build_boot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/build_boot_bin.sh -------------------------------------------------------------------------------- /kernel_boot/build_zynqmp_boot_bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/build_zynqmp_boot_bin.sh -------------------------------------------------------------------------------- /kernel_boot/kernel_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/kernel_config -------------------------------------------------------------------------------- /kernel_boot/kernel_config_zynqmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/kernel_config_zynqmp -------------------------------------------------------------------------------- /kernel_boot/kernel_patch_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/kernel_boot/kernel_patch_readme.md -------------------------------------------------------------------------------- /openwifi-arch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/openwifi-arch.jpg -------------------------------------------------------------------------------- /openwifi-arch.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/openwifi-arch.jpg.license -------------------------------------------------------------------------------- /user_space/agc_settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/agc_settings.sh -------------------------------------------------------------------------------- /user_space/arbitrary_iq_gen/iq_single_carrier_1000000Hz_512.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/arbitrary_iq_gen/iq_single_carrier_1000000Hz_512.bin -------------------------------------------------------------------------------- /user_space/arbitrary_iq_gen/iq_single_carrier_1000000Hz_512.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/arbitrary_iq_gen/iq_single_carrier_1000000Hz_512.txt -------------------------------------------------------------------------------- /user_space/arbitrary_iq_gen/single_carrier_gen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/arbitrary_iq_gen/single_carrier_gen.m -------------------------------------------------------------------------------- /user_space/boot_bin_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/boot_bin_gen.sh -------------------------------------------------------------------------------- /user_space/build_wpa_supplicant_wo11b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/build_wpa_supplicant_wo11b.sh -------------------------------------------------------------------------------- /user_space/cd_adi_iio_dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/cd_adi_iio_dir.sh -------------------------------------------------------------------------------- /user_space/check_calib_inf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/check_calib_inf.sh -------------------------------------------------------------------------------- /user_space/csi_fuzzer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/csi_fuzzer.sh -------------------------------------------------------------------------------- /user_space/csi_fuzzer_scan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/csi_fuzzer_scan.sh -------------------------------------------------------------------------------- /user_space/cw_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/cw_disable.sh -------------------------------------------------------------------------------- /user_space/cw_max_min_cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/cw_max_min_cfg.sh -------------------------------------------------------------------------------- /user_space/dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/dhcpd.conf -------------------------------------------------------------------------------- /user_space/difs_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/difs_disable.sh -------------------------------------------------------------------------------- /user_space/driver_nl80211.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/driver_nl80211.patch -------------------------------------------------------------------------------- /user_space/drv_and_fpga_package_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/drv_and_fpga_package_gen.sh -------------------------------------------------------------------------------- /user_space/eifs_by_last_rx_fail_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/eifs_by_last_rx_fail_disable.sh -------------------------------------------------------------------------------- /user_space/eifs_by_last_tx_fail_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/eifs_by_last_tx_fail_disable.sh -------------------------------------------------------------------------------- /user_space/eifs_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/eifs_disable.sh -------------------------------------------------------------------------------- /user_space/fast_reg_log/fast_reg_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/fast_reg_log/fast_reg_log.c -------------------------------------------------------------------------------- /user_space/fast_reg_log/fast_reg_log_analyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/fast_reg_log/fast_reg_log_analyzer.m -------------------------------------------------------------------------------- /user_space/fosdem-11ag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/fosdem-11ag.sh -------------------------------------------------------------------------------- /user_space/fosdem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/fosdem.sh -------------------------------------------------------------------------------- /user_space/hostapd-openwifi-11ag.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/hostapd-openwifi-11ag.conf -------------------------------------------------------------------------------- /user_space/hostapd-openwifi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/hostapd-openwifi.conf -------------------------------------------------------------------------------- /user_space/inject_80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/Makefile -------------------------------------------------------------------------------- /user_space/inject_80211/analyze_80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/analyze_80211.c -------------------------------------------------------------------------------- /user_space/inject_80211/ieee80211_radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/ieee80211_radiotap.h -------------------------------------------------------------------------------- /user_space/inject_80211/inject_80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/inject_80211.c -------------------------------------------------------------------------------- /user_space/inject_80211/inject_80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/inject_80211.h -------------------------------------------------------------------------------- /user_space/inject_80211/inject_80211.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/inject_80211.sh -------------------------------------------------------------------------------- /user_space/inject_80211/radiotap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/radiotap.c -------------------------------------------------------------------------------- /user_space/inject_80211/radiotap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/radiotap.h -------------------------------------------------------------------------------- /user_space/inject_80211/unaligned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/unaligned.h -------------------------------------------------------------------------------- /user_space/inject_80211/uthash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/inject_80211/uthash.h -------------------------------------------------------------------------------- /user_space/link_perf_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/link_perf_test.sh -------------------------------------------------------------------------------- /user_space/load_fpga_img.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/load_fpga_img.sh -------------------------------------------------------------------------------- /user_space/monitor_ch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/monitor_ch.sh -------------------------------------------------------------------------------- /user_space/nav_disable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/nav_disable.sh -------------------------------------------------------------------------------- /user_space/nic_back_to_normal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/nic_back_to_normal.sh -------------------------------------------------------------------------------- /user_space/openwifi_ad9361_fir.ftr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/openwifi_ad9361_fir.ftr -------------------------------------------------------------------------------- /user_space/openwifi_ad9361_fir_tx_0MHz.ftr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/openwifi_ad9361_fir_tx_0MHz.ftr -------------------------------------------------------------------------------- /user_space/openwifi_ad9361_fir_tx_0MHz_11n.ftr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/openwifi_ad9361_fir_tx_0MHz_11n.ftr -------------------------------------------------------------------------------- /user_space/openwifi_ad9361_fir_tx_0MHz_11n_narrow1.ftr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/openwifi_ad9361_fir_tx_0MHz_11n_narrow1.ftr -------------------------------------------------------------------------------- /user_space/populate_driver_userspace.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/populate_driver_userspace.sh -------------------------------------------------------------------------------- /user_space/populate_kernel_image_module_reboot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/populate_kernel_image_module_reboot.sh -------------------------------------------------------------------------------- /user_space/post_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/post_config.sh -------------------------------------------------------------------------------- /user_space/prepare_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/prepare_kernel.sh -------------------------------------------------------------------------------- /user_space/receiver_phase_offset_override.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/receiver_phase_offset_override.sh -------------------------------------------------------------------------------- /user_space/rf_init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rf_init.sh -------------------------------------------------------------------------------- /user_space/rf_init_11n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rf_init_11n.sh -------------------------------------------------------------------------------- /user_space/rssi_ad9361_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rssi_ad9361_show.sh -------------------------------------------------------------------------------- /user_space/rssi_openwifi_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rssi_openwifi_show.sh -------------------------------------------------------------------------------- /user_space/rx_gain_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rx_gain_show.sh -------------------------------------------------------------------------------- /user_space/rx_stat_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/rx_stat_show.sh -------------------------------------------------------------------------------- /user_space/sdcard_boot_update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdcard_boot_update.sh -------------------------------------------------------------------------------- /user_space/sdr-ad-hoc-join.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdr-ad-hoc-join.sh -------------------------------------------------------------------------------- /user_space/sdr-ad-hoc-up.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdr-ad-hoc-up.sh -------------------------------------------------------------------------------- /user_space/sdrctl_src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/Makefile -------------------------------------------------------------------------------- /user_space/sdrctl_src/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/cmd.c -------------------------------------------------------------------------------- /user_space/sdrctl_src/nl80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/nl80211.h -------------------------------------------------------------------------------- /user_space/sdrctl_src/nl80211_testmode_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/nl80211_testmode_def.h -------------------------------------------------------------------------------- /user_space/sdrctl_src/sdrctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/sdrctl.c -------------------------------------------------------------------------------- /user_space/sdrctl_src/sdrctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/sdrctl.h -------------------------------------------------------------------------------- /user_space/sdrctl_src/sections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/sections.c -------------------------------------------------------------------------------- /user_space/sdrctl_src/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/sdrctl_src/version.sh -------------------------------------------------------------------------------- /user_space/set_dbg_ch0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_dbg_ch0.sh -------------------------------------------------------------------------------- /user_space/set_dbg_ch1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_dbg_ch1.sh -------------------------------------------------------------------------------- /user_space/set_dbg_ch2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_dbg_ch2.sh -------------------------------------------------------------------------------- /user_space/set_lbt_th.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_lbt_th.sh -------------------------------------------------------------------------------- /user_space/set_restrict_freq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_restrict_freq.sh -------------------------------------------------------------------------------- /user_space/set_rx_gain_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_rx_gain_auto.sh -------------------------------------------------------------------------------- /user_space/set_rx_gain_manual.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_rx_gain_manual.sh -------------------------------------------------------------------------------- /user_space/set_rx_monitor_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_rx_monitor_all.sh -------------------------------------------------------------------------------- /user_space/set_rx_target_sender_mac_addr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_rx_target_sender_mac_addr.sh -------------------------------------------------------------------------------- /user_space/set_tx_lo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_tx_lo.sh -------------------------------------------------------------------------------- /user_space/set_tx_port.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/set_tx_port.sh -------------------------------------------------------------------------------- /user_space/setup_once.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/setup_once.sh -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/iq_capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/iq_capture.py -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/iq_capture_2ant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/iq_capture_2ant.py -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/iq_capture_freq_offset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/iq_capture_freq_offset.py -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/save_iq_to_txt_for_verilog_sim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/save_iq_to_txt_for_verilog_sim.m -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/show_iq_snr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/show_iq_snr.m -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/side_ch_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/side_ch_ctl.c -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/side_info_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/side_info_display.py -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/test_iq_2ant_file_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/test_iq_2ant_file_display.m -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/test_iq_file_ack_timing_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/test_iq_file_ack_timing_display.m -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/test_iq_file_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/test_iq_file_display.m -------------------------------------------------------------------------------- /user_space/side_ch_ctl_src/test_side_info_file_display.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/side_ch_ctl_src/test_side_info_file_display.m -------------------------------------------------------------------------------- /user_space/slice_cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/slice_cfg.sh -------------------------------------------------------------------------------- /user_space/stat_enable.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/stat_enable.sh -------------------------------------------------------------------------------- /user_space/system_top.bif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/system_top.bif -------------------------------------------------------------------------------- /user_space/transfer_driver_userspace_to_board.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/transfer_driver_userspace_to_board.sh -------------------------------------------------------------------------------- /user_space/transfer_kernel_image_module_to_board.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/transfer_kernel_image_module_to_board.sh -------------------------------------------------------------------------------- /user_space/tx_intf_iq_data_to_sysfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/tx_intf_iq_data_to_sysfs.sh -------------------------------------------------------------------------------- /user_space/tx_intf_iq_send.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/tx_intf_iq_send.sh -------------------------------------------------------------------------------- /user_space/tx_prio_queue_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/tx_prio_queue_show.sh -------------------------------------------------------------------------------- /user_space/tx_stat_show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/tx_stat_show.sh -------------------------------------------------------------------------------- /user_space/update_sdcard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/update_sdcard.sh -------------------------------------------------------------------------------- /user_space/webserver/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/webserver/index.html -------------------------------------------------------------------------------- /user_space/webserver/openwifi-detail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/webserver/openwifi-detail.jpg -------------------------------------------------------------------------------- /user_space/webserver/openwifi-detail.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/webserver/openwifi-detail.jpg.license -------------------------------------------------------------------------------- /user_space/webserver/openwifi-logo-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/webserver/openwifi-logo-small.jpg -------------------------------------------------------------------------------- /user_space/webserver/openwifi-logo-small.jpg.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/webserver/openwifi-logo-small.jpg.license -------------------------------------------------------------------------------- /user_space/wgd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/wgd.sh -------------------------------------------------------------------------------- /user_space/wpa-connect.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/open-sdr/openwifi/HEAD/user_space/wpa-connect.conf -------------------------------------------------------------------------------- /user_space/wpa-openwifi.conf: -------------------------------------------------------------------------------- 1 | network={ 2 | ssid="openwifi" 3 | key_mgmt=NONE 4 | } 5 | -------------------------------------------------------------------------------- /user_space/wpa-testap.conf: -------------------------------------------------------------------------------- 1 | network={ 2 | ssid="testap" 3 | key_mgmt=NONE 4 | } 5 | --------------------------------------------------------------------------------