├── .gitignore ├── Applications ├── Makefile ├── assets │ ├── bootstrap-3.0.0 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.js │ │ │ └── respond.min.js │ ├── bower.json │ ├── dropzone.js │ ├── flot │ │ ├── jquery.flot.js │ │ ├── jquery.flot.min.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.navigate.min.js │ │ ├── jquery.flot.resize.min.js │ │ ├── jquery.flot.selection.min.js │ │ ├── jquery.flot.touch.js │ │ ├── jquery.flot.touch_orig_notab.js │ │ └── jquery.flot.touch_test.js │ ├── images │ │ ├── 142.gif │ │ ├── appsarrowhomepage.png │ │ ├── backyard.jpg │ │ ├── backyardhomepage.png │ │ ├── bazaar_1.png │ │ ├── bazaar_2.png │ │ ├── bazaar_3.png │ │ ├── bazaar_4.png │ │ ├── bazaar_5.png │ │ ├── bazaarhomepage.png │ │ ├── codearrowhomepage.png │ │ ├── communityarrow.png │ │ ├── download.png │ │ ├── download_grey.png │ │ ├── install.png │ │ ├── installed.png │ │ ├── klucavnica.png │ │ ├── logo.png │ │ ├── logo_white.png │ │ ├── navbar_logo.png │ │ ├── reconfigure.png │ │ ├── redpitayahomepage.png │ │ ├── run.png │ │ ├── run1.png │ │ ├── siva-bazaar_ikona-dark.jpg │ │ ├── siva-bazaar_ikona.jpg │ │ ├── siva-redpitaya_ikona-dark.jpg │ │ ├── siva-redpitaya_ikona.jpg │ │ ├── siva_backyard.jpg │ │ ├── uninstall.png │ │ └── wat_nodata.jpg │ ├── jquery.mCustomScrollbar.concat.min.js │ ├── jquery.mCustomScrollbar.css │ ├── jquery.mCustomScrollbar.js │ ├── jquery.mCustomScrollbar.min.css │ ├── js │ │ ├── minified │ │ │ ├── jquery-1.11.0.min.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery-2.1.0.min.js │ │ │ ├── jquery-ui-1.10.4.min.js │ │ │ ├── jquery.mCustomScrollbar.min.js │ │ │ ├── jquery.mCustomScrollbar.min.js.gz │ │ │ ├── jquery.mousewheel-3.0.6.min.js │ │ │ └── jquery.mousewheel.min.js │ │ └── uncompressed │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── jquery.mousewheel-3.0.6.js │ │ │ └── jquery.mousewheel.js │ ├── mCSB_buttons.png │ ├── malihu-custom-scrollbar-plugin.jquery.json │ ├── package.json │ ├── redpitaya.custom.js │ └── style.css └── ecosystem │ ├── Makefile │ ├── error_bazaar_access.html │ ├── error_bazaar_install.html │ ├── error_bazaar_proto.html │ ├── ie9.css │ ├── images │ ├── 142.gif │ ├── appsarrowhomepage.png │ ├── backyard.jpg │ ├── backyardhomepage.png │ ├── bazaar_1.png │ ├── bazaar_2.png │ ├── bazaar_3.png │ ├── bazaar_4.png │ ├── bazaar_5.png │ ├── bazaarhomepage.png │ ├── codearrowhomepage.png │ ├── communityarrow.png │ ├── download.png │ ├── download_grey.png │ ├── img_visualprog.png │ ├── install.png │ ├── installed.png │ ├── logo.png │ ├── logo_white.png │ ├── reconfigure.png │ ├── redpitayahomepage.png │ ├── run.png │ ├── run1.png │ ├── siva-bazaar_ikona-dark.jpg │ ├── siva-bazaar_ikona.jpg │ ├── siva-redpitaya_ikona-dark.jpg │ ├── siva-redpitaya_ikona.jpg │ ├── siva_backyard.jpg │ └── uninstall.png │ ├── index.html │ ├── info │ ├── icon.png │ └── info.json │ ├── instruct.html │ ├── style.css │ └── ui │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── UX-UI-menu-rp-2.0-images_and_specs_1.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_10.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_11.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_12.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_2.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_3.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_4.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_5.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_6.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_7.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_8.gif │ ├── UX-UI-menu-rp-2.0-images_and_specs_9.gif │ └── UX-UI-menu-rp-2.0-logo_13.gif ├── Bazaar ├── nginx │ ├── Makefile │ ├── configure_withouts.txt │ └── ngx_ext_modules │ │ ├── ngx_http_rp_module │ │ ├── config │ │ ├── doc │ │ │ ├── Doxyfile │ │ │ ├── Makefile │ │ │ └── header.tex │ │ ├── include │ │ │ ├── cJSON.h │ │ │ ├── ngx_http_rp_module.h │ │ │ ├── rp_bazaar_app.h │ │ │ ├── rp_bazaar_cmd.h │ │ │ ├── rp_data_cmd.h │ │ │ └── websocket.h │ │ └── src │ │ │ ├── cJSON.c │ │ │ ├── ngx_http_rp_module.c │ │ │ ├── rp_bazaar_app.c │ │ │ ├── rp_bazaar_cmd.c │ │ │ ├── rp_data_cmd.c │ │ │ └── websocket.c │ │ └── ws_server │ │ ├── Makefile │ │ ├── rp_sdk │ │ ├── BaseParameter.h │ │ ├── CustomParameters.h │ │ ├── DataManager.cpp │ │ ├── DataManager.h │ │ ├── Makefile │ │ ├── Parameter.h │ │ ├── gziping.h │ │ └── misc.h │ │ ├── rp_websocket_server.cpp │ │ ├── rp_websocket_server.h │ │ ├── ws_server.conf │ │ ├── ws_server.cpp │ │ └── ws_server.h └── tools │ ├── encoder │ ├── encoder.cpp │ ├── encoder.h │ ├── privkey.cpp │ └── pubkey.cpp │ ├── idgen │ ├── Makefile │ ├── README.md │ └── main.cpp │ └── misc.h ├── CHANGELOG.md ├── COPYING ├── Examples ├── C │ ├── Makefile │ ├── README.md │ ├── acquire_trigger_posedge.c │ ├── acquire_trigger_software.c │ ├── analog_inputs.c │ ├── analog_outputs.c │ ├── axi_adc.c │ ├── digital_led_bar.c │ ├── digital_led_blink.c │ ├── digital_push_button.c │ ├── generate_arbitrary_waveform.c │ ├── generate_burst_trigger_external.c │ ├── generate_burst_trigger_software.c │ ├── generate_continuous.c │ ├── test_e_module │ └── test_e_module.c ├── Communication │ └── C │ │ ├── Makefile │ │ ├── iic │ │ ├── Makefile │ │ └── iic.c │ │ ├── spi │ │ ├── Makefile │ │ └── spi.c │ │ └── uart │ │ ├── Makefile │ │ └── uart.c ├── Matlab │ ├── Batman_on_RedPitaya.m │ ├── README.md │ ├── acquire_trigger_external.m │ ├── acquire_trigger_from_generator.m │ ├── acquire_trigger_posedge.m │ ├── analog_inputs.m │ ├── analog_outputs.m │ ├── analog_outputs_interactive.m │ ├── batman_ch1.csv │ ├── batman_ch2.csv │ ├── digital_led_bar.m │ ├── digital_led_bar_interactive.m │ ├── digital_led_blink.m │ ├── digital_push_button.m │ ├── generate_arbitrary_waveform.m │ ├── generate_burst_trigger_external.m │ ├── generate_burst_trigger_software.m │ └── generate_continuous.m ├── python │ ├── README.md │ ├── acquire_trigger_external.py │ ├── acquire_trigger_from_generator.py │ ├── acquire_trigger_posedge.py │ ├── analog_inputs.py │ ├── analog_outputs.py │ ├── digital_led_bar.py │ ├── digital_led_blink.py │ ├── digital_push_button.py │ ├── generate_arbitrary_waveform.py │ ├── generate_burst_trigger_external.py │ ├── generate_burst_trigger_software.py │ ├── generate_continuous.py │ └── redpitaya_scpi.py └── xadc │ └── xadc.sh ├── INSTALL.md ├── Makefile ├── NETWORKING.md ├── OS ├── README.md ├── buildroot │ ├── Makefile │ ├── busybox.config │ ├── config.armel │ ├── config.armhf │ ├── hostapd │ │ ├── Makefile │ │ └── wpa_supplicant_hostapd-0.8_rtw_r7475.20130812.tar.gz │ ├── overlay │ │ ├── etc │ │ │ ├── fstab │ │ │ ├── fw_env.config │ │ │ ├── init.d │ │ │ │ ├── S40network │ │ │ │ ├── S80nginx │ │ │ │ ├── connman-config │ │ │ │ ├── inactive-S90scpi │ │ │ │ ├── rcK │ │ │ │ └── rcS │ │ │ ├── inittab │ │ │ ├── motd │ │ │ ├── network │ │ │ │ └── interfaces │ │ │ ├── profile │ │ │ ├── ssh_host_dsa_key │ │ │ ├── ssh_host_ecdsa_key │ │ │ ├── ssh_host_ed25519_key │ │ │ ├── ssh_host_key │ │ │ └── ssh_host_rsa_key │ │ ├── opt │ │ │ └── redpitaya │ │ │ │ └── .empty │ │ ├── usr │ │ │ ├── lib │ │ │ │ └── libluajit-5.1.so.2 │ │ │ └── share │ │ │ │ └── udhcpc │ │ │ │ └── default.script │ │ └── var │ │ │ └── log │ └── patches │ │ ├── busybox │ │ └── 0000-float-sleep.patch │ │ └── connman │ │ └── 0000-connman-default-script.patch ├── debian │ ├── README.md │ ├── debian.sh │ ├── image.sh │ ├── overlay │ │ ├── etc │ │ │ ├── apt │ │ │ │ ├── apt.conf.d │ │ │ │ │ └── 99norecommends │ │ │ │ └── sources.list │ │ │ ├── default │ │ │ │ ├── hostapd │ │ │ │ └── ifplugd │ │ │ ├── dhcp │ │ │ │ ├── dhclient.conf │ │ │ │ └── dhcpd.conf │ │ │ ├── fstab │ │ │ ├── hostapd │ │ │ │ └── hostapd.conf │ │ │ ├── hostname │ │ │ ├── iptables.ipv4.nat │ │ │ ├── iptables.ipv4.nonat │ │ │ ├── motd │ │ │ ├── network │ │ │ │ ├── interfaces │ │ │ │ ├── interfaces-ap.wlan0 │ │ │ │ ├── interfaces-client.wlan0 │ │ │ │ └── interfaces.d │ │ │ │ │ ├── eth0 │ │ │ │ │ ├── wlan0 │ │ │ │ │ ├── wlan0.ap │ │ │ │ │ └── wlan0.client │ │ │ ├── profile.d │ │ │ │ ├── alias.sh │ │ │ │ ├── profile.sh │ │ │ │ └── redpitaya.sh │ │ │ ├── securetty │ │ │ ├── sysconfig │ │ │ │ └── redpitaya │ │ │ ├── systemd │ │ │ │ └── system │ │ │ │ │ ├── redpitaya_discovery.service │ │ │ │ │ ├── redpitaya_nginx.service │ │ │ │ │ ├── redpitaya_scpi.service │ │ │ │ │ └── redpitaya_wyliodrin.service │ │ │ ├── timezone │ │ │ └── udev │ │ │ │ └── rules.d │ │ │ │ └── 75-persistent-net-generator.rules │ │ ├── opt │ │ │ └── .empty │ │ └── var │ │ │ └── log │ │ │ └── nginx │ │ │ └── .empty │ ├── redpitaya.sh │ ├── update.sh │ └── wyliodrin.sh ├── filesystem │ ├── etc │ │ └── network │ │ │ ├── config │ │ │ ├── dnsmasq.conf │ │ │ ├── interfaces │ │ │ └── interfaces.ap │ └── sbin │ │ ├── bazaar │ │ ├── lantiq_mdio │ │ ├── ro │ │ └── rw └── tools │ └── discovery.sh ├── README.md ├── SDK ├── Makefile ├── Makefile_target ├── README.md ├── create_template.sh ├── install.sh └── run.sh ├── TODO.md ├── Test ├── GPIanalyser │ ├── GPIanalyse.c │ ├── Makefile │ ├── fpga_awg.c │ ├── fpga_awg.h │ ├── fpga_osc.c │ ├── fpga_osc.h │ ├── genCtrl.c │ ├── linAlg.c │ ├── linAlg.h │ ├── main_osc.c │ ├── main_osc.h │ ├── readme.txt │ ├── worker.c │ └── worker.h ├── NCE │ ├── README.txt │ ├── impednace_analyzer.m │ ├── matlab_initial_bode.m │ ├── matlab_initial_lcr.m │ ├── octave_initial_bode.m │ └── octave_initial_lcr.m ├── SD-card │ └── README.md ├── acquire │ ├── Makefile │ ├── acquire.c │ ├── fpga_osc.c │ ├── fpga_osc.h │ ├── main_osc.c │ ├── main_osc.h │ ├── worker.c │ └── worker.h ├── api-scpi │ ├── README.md │ ├── acq_bin_test.py │ ├── acq_dig_loop_test.py │ ├── ctrl_data │ │ ├── gen_ctrl_ch1 │ │ └── gen_ctrl_ch2 │ ├── redpitaya_scpi.py │ ├── scpi_t.py │ ├── scpi_t.pyc │ └── test_scpi_acq.py ├── bode │ ├── Makefile │ ├── README.md │ ├── acquire.c │ ├── bode.c │ ├── filtered_data.m │ ├── fpga_awg.c │ ├── fpga_awg.h │ ├── fpga_osc.c │ ├── fpga_osc.h │ ├── main_osc.c │ ├── main_osc.h │ ├── saved_data.m │ ├── version.h │ ├── worker.c │ └── worker.h ├── calib │ ├── Makefile │ ├── calib.c │ ├── rp_eeprom.c │ └── rp_eeprom.h ├── calibrate │ ├── Makefile │ ├── calibTune.c │ ├── calibrateApp.c │ ├── calibrateApp2.c │ └── version.h ├── clients │ └── matlab │ │ ├── acquire.m │ │ ├── driver │ │ ├── README.txt │ │ ├── red_pitaya.mdd │ │ ├── rp_generator.fig │ │ └── rp_generator.m │ │ ├── generate.m │ │ ├── interpolation │ │ ├── fft_interp.m │ │ └── interp_script.m │ │ └── monitor.m ├── ext_module │ ├── Makefile │ └── test_procedure.c ├── generate │ ├── Makefile │ ├── fpga_awg.c │ ├── fpga_awg.h │ └── generate.c ├── generate_pulse │ ├── fpga_awg.c │ ├── fpga_awg.h │ └── generate_pulse.c ├── hw_monitor │ ├── Makefile │ ├── hw_monitor.cpp │ ├── hw_monitor.h │ └── main.cpp ├── lcr │ ├── Makefile │ ├── README.md │ ├── acquire.c │ ├── fpga_awg.c │ ├── fpga_awg.h │ ├── fpga_osc.c │ ├── fpga_osc.h │ ├── getImpedance.c │ ├── index_final.html │ ├── lcr.c │ ├── main_osc.c │ ├── main_osc.h │ ├── version.h │ ├── worker.c │ └── worker.h ├── led_control │ ├── Makefile │ ├── led_control.c │ ├── led_control.h │ └── version.h ├── led_control_cpp │ ├── hw_monitor.cpp │ ├── hw_monitor.h │ ├── led.cpp │ ├── led.h │ └── version.h ├── monitor │ ├── Makefile │ └── monitor.c ├── monitoradvanced │ ├── Makefile │ ├── monitoradvanced.c │ └── version.h ├── scpi-client │ └── main.c └── xadc │ ├── Makefile │ ├── xadc_lib │ ├── include │ │ └── xadc_core_if.h │ ├── linux_include │ │ ├── events.h │ │ └── types.h │ └── src │ │ ├── xadc_core.c │ │ └── xadc_core.h │ └── xadc_read_cmd │ └── src │ └── xadc_main.c ├── api ├── include │ └── redpitaya │ │ └── rp.h └── rpbase │ ├── Makefile │ ├── doc │ ├── Makefile │ ├── conf │ │ └── doxyfile.inc │ └── img │ │ └── redpitaya-logo.png │ └── src │ ├── Makefile │ ├── acq_handler.c │ ├── acq_handler.h │ ├── analog_mixed_signals.h │ ├── calib.c │ ├── calib.h │ ├── common.c │ ├── common.h │ ├── exportmap │ ├── gen_handler.c │ ├── gen_handler.h │ ├── generate.c │ ├── generate.h │ ├── housekeeping.h │ ├── kiss_fft │ ├── Makefile │ ├── _kiss_fft_guts.h │ ├── kiss_fft.c │ ├── kiss_fft.h │ ├── kiss_fftr.c │ └── kiss_fftr.h │ ├── oscilloscope.c │ ├── oscilloscope.h │ ├── rp.c │ ├── spec_dsp.c │ ├── spec_dsp.h │ ├── spec_fpga.c │ ├── spec_fpga.h │ └── version.h ├── apps-free ├── Makefile ├── README.md ├── bode_plotter │ ├── Makefile │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ └── header.tex │ ├── fpga.conf │ ├── images │ │ ├── arow-left-black.png │ │ ├── arow-left.png │ │ ├── gear.png │ │ └── gear_hoover.png │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ ├── src │ │ ├── Makefile │ │ ├── calib.c │ │ ├── calib.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── fpga_pid.c │ │ ├── fpga_pid.h │ │ ├── generate.c │ │ ├── generate.h │ │ ├── main.c │ │ ├── main.h │ │ ├── pid.c │ │ ├── pid.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h │ └── style.css ├── freqanalyzer │ ├── Makefile │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src │ │ ├── Makefile │ │ ├── dsp.c │ │ ├── dsp.h │ │ ├── external │ │ └── kiss_fft │ │ │ ├── Makefile │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ └── kiss_fftr.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── main.c │ │ ├── main.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h ├── impedance_analyzer │ ├── Makefile │ ├── fpga.conf │ ├── images │ │ ├── arow-left-black.png │ │ ├── arow-left.png │ │ ├── gear.png │ │ └── gear_hoover.png │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ ├── src │ │ ├── Makefile │ │ ├── README.md │ │ ├── calib.c │ │ ├── calib.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── generate.c │ │ ├── generate.h │ │ ├── main.c │ │ ├── main.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h │ └── style.css ├── lti │ ├── Makefile │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src │ │ ├── Makefile │ │ ├── calib.c │ │ ├── calib.h │ │ ├── dsp.c │ │ ├── dsp.h │ │ ├── external │ │ ├── kiss_fft │ │ │ ├── Makefile │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ └── kiss_fftr.h │ │ └── picts │ │ │ ├── RP_conn.png │ │ │ ├── git.jpg │ │ │ └── z_tf.jpg │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── fpga_lti.c │ │ ├── fpga_lti.h │ │ ├── generate_basic.c │ │ ├── generate_basic.h │ │ ├── main.c │ │ ├── main.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h ├── scope+gen │ ├── Makefile │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ └── header.tex │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src ├── scope+istsensor │ ├── Makefile │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src │ │ ├── ISTctrl.c │ │ ├── ISTctrl.h │ │ ├── Makefile │ │ ├── calib.c │ │ ├── calib.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── generate.c │ │ ├── generate.h │ │ ├── main.c │ │ ├── main.h │ │ ├── pid.c │ │ ├── pid.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h ├── scope+pid │ ├── Makefile │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ └── header.tex │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src ├── scope │ ├── Makefile │ ├── doc │ │ ├── Doxyfile │ │ ├── Makefile │ │ └── header.tex │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src │ │ ├── Makefile │ │ ├── calib.c │ │ ├── calib.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── fpga_awg.c │ │ ├── fpga_awg.h │ │ ├── fpga_pid.c │ │ ├── fpga_pid.h │ │ ├── generate.c │ │ ├── generate.h │ │ ├── main.c │ │ ├── main.h │ │ ├── pid.c │ │ ├── pid.h │ │ ├── version.h │ │ ├── worker.c │ │ └── worker.h ├── spectrum │ ├── Makefile │ ├── fpga.conf │ ├── index.html │ ├── info │ │ ├── icon.png │ │ └── info.json │ └── src │ │ ├── Makefile │ │ ├── dsp.c │ │ ├── dsp.h │ │ ├── external │ │ ├── jpeg-6b │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── ansi2knr.1 │ │ │ ├── ansi2knr.c │ │ │ ├── cderror.h │ │ │ ├── cdjpeg.c │ │ │ ├── cdjpeg.h │ │ │ ├── change.log │ │ │ ├── cjpeg.1 │ │ │ ├── cjpeg.c │ │ │ ├── ckconfig.c │ │ │ ├── coderules.doc │ │ │ ├── config.guess │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── djpeg.1 │ │ │ ├── djpeg.c │ │ │ ├── example.c │ │ │ ├── filelist.doc │ │ │ ├── install-sh │ │ │ ├── install.doc │ │ │ ├── jcapimin.c │ │ │ ├── jcapistd.c │ │ │ ├── jccoefct.c │ │ │ ├── jccolor.c │ │ │ ├── jcdctmgr.c │ │ │ ├── jchuff.c │ │ │ ├── jchuff.h │ │ │ ├── jcinit.c │ │ │ ├── jcmainct.c │ │ │ ├── jcmarker.c │ │ │ ├── jcmaster.c │ │ │ ├── jcomapi.c │ │ │ ├── jconfig.bcc │ │ │ ├── jconfig.cfg │ │ │ ├── jconfig.dj │ │ │ ├── jconfig.doc │ │ │ ├── jconfig.h │ │ │ ├── jconfig.mac │ │ │ ├── jconfig.manx │ │ │ ├── jconfig.mc6 │ │ │ ├── jconfig.sas │ │ │ ├── jconfig.st │ │ │ ├── jconfig.vc │ │ │ ├── jconfig.vms │ │ │ ├── jconfig.wat │ │ │ ├── jcparam.c │ │ │ ├── jcphuff.c │ │ │ ├── jcprepct.c │ │ │ ├── jcsample.c │ │ │ ├── jctrans.c │ │ │ ├── jdapimin.c │ │ │ ├── jdapistd.c │ │ │ ├── jdatadst.c │ │ │ ├── jdatasrc.c │ │ │ ├── jdcoefct.c │ │ │ ├── jdcolor.c │ │ │ ├── jdct.h │ │ │ ├── jddctmgr.c │ │ │ ├── jdhuff.c │ │ │ ├── jdhuff.h │ │ │ ├── jdinput.c │ │ │ ├── jdmainct.c │ │ │ ├── jdmarker.c │ │ │ ├── jdmaster.c │ │ │ ├── jdmerge.c │ │ │ ├── jdphuff.c │ │ │ ├── jdpostct.c │ │ │ ├── jdsample.c │ │ │ ├── jdtrans.c │ │ │ ├── jerror.c │ │ │ ├── jerror.h │ │ │ ├── jfdctflt.c │ │ │ ├── jfdctfst.c │ │ │ ├── jfdctint.c │ │ │ ├── jidctflt.c │ │ │ ├── jidctfst.c │ │ │ ├── jidctint.c │ │ │ ├── jidctred.c │ │ │ ├── jinclude.h │ │ │ ├── jmemansi.c │ │ │ ├── jmemdos.c │ │ │ ├── jmemdosa.asm │ │ │ ├── jmemmac.c │ │ │ ├── jmemmgr.c │ │ │ ├── jmemname.c │ │ │ ├── jmemnobs.c │ │ │ ├── jmemsys.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpegint.h │ │ │ ├── jpeglib.h │ │ │ ├── jpegtran.1 │ │ │ ├── jpegtran.c │ │ │ ├── jquant1.c │ │ │ ├── jquant2.c │ │ │ ├── jutils.c │ │ │ ├── jversion.h │ │ │ ├── libjpeg.doc │ │ │ ├── ltconfig │ │ │ ├── ltmain.sh │ │ │ ├── makcjpeg.st │ │ │ ├── makdjpeg.st │ │ │ ├── makeapps.ds │ │ │ ├── makefile.ansi │ │ │ ├── makefile.bcc │ │ │ ├── makefile.cfg │ │ │ ├── makefile.dj │ │ │ ├── makefile.manx │ │ │ ├── makefile.mc6 │ │ │ ├── makefile.mms │ │ │ ├── makefile.sas │ │ │ ├── makefile.unix │ │ │ ├── makefile.vc │ │ │ ├── makefile.vms │ │ │ ├── makefile.wat │ │ │ ├── makelib.ds │ │ │ ├── makeproj.mac │ │ │ ├── makljpeg.st │ │ │ ├── maktjpeg.st │ │ │ ├── makvms.opt │ │ │ ├── rdbmp.c │ │ │ ├── rdcolmap.c │ │ │ ├── rdgif.c │ │ │ ├── rdjpgcom.1 │ │ │ ├── rdjpgcom.c │ │ │ ├── rdppm.c │ │ │ ├── rdrle.c │ │ │ ├── rdswitch.c │ │ │ ├── rdtarga.c │ │ │ ├── structure.doc │ │ │ ├── transupp.c │ │ │ ├── transupp.h │ │ │ ├── usage.doc │ │ │ ├── wizard.doc │ │ │ ├── wrbmp.c │ │ │ ├── wrgif.c │ │ │ ├── wrjpgcom.1 │ │ │ ├── wrjpgcom.c │ │ │ ├── wrppm.c │ │ │ ├── wrrle.c │ │ │ └── wrtarga.c │ │ └── kiss_fft │ │ │ ├── Makefile │ │ │ ├── _kiss_fft_guts.h │ │ │ ├── kiss_fft.c │ │ │ ├── kiss_fft.h │ │ │ ├── kiss_fftr.c │ │ │ └── kiss_fftr.h │ │ ├── fpga.c │ │ ├── fpga.h │ │ ├── main.c │ │ ├── main.h │ │ ├── version.h │ │ ├── waterfall.c │ │ ├── waterfall.h │ │ ├── wf_colmap.h │ │ ├── worker.c │ │ └── worker.h └── teslameter │ ├── Makefile │ ├── doc │ ├── Doxyfile │ ├── Makefile │ └── header.tex │ ├── fpga.conf │ ├── index.html │ ├── info │ ├── icon.png │ └── info.json │ └── src │ ├── Makefile │ ├── calib.c │ ├── calib.h │ ├── fpga.c │ ├── fpga.h │ ├── fpga_awg.c │ ├── fpga_awg.h │ ├── fpga_pid.c │ ├── fpga_pid.h │ ├── generate.c │ ├── generate.h │ ├── hw_monitor.c │ ├── hw_monitor.h │ ├── main.c │ ├── main.h │ ├── pid.c │ ├── pid.h │ ├── version.h │ ├── worker.c │ └── worker.h ├── doc └── visual │ ├── ArduinoSensorShield_3_PCB_3D_Top.pdf │ ├── ArduinoSensorShield_3_SCH.pdf │ ├── README.md │ ├── example_1 │ ├── blocks.png │ ├── main.visual │ ├── main.visual.py │ └── wiring.png │ ├── example_2 │ ├── blocks.png │ ├── switch.png │ └── wiring.png │ ├── example_3 │ ├── blocks.png │ └── wiring.png │ ├── example_4 │ ├── block_start.png │ ├── block_stop.png │ ├── block_timestamp.png │ ├── pushbutton.png │ └── wiring.png │ └── example_5 │ └── wiring.png ├── fpga ├── Makefile ├── README.md ├── archive │ ├── fpga_0.93.bit.xz │ └── fpga_0.94.bit.xz ├── doc │ ├── RedPitaya_HDL_memory_map.odt │ ├── redpitaya_block.odg │ └── redpitaya_block.odt ├── ip │ ├── system.bd │ └── system_bd.tcl ├── red_pitaya_hsi_dram_test.tcl ├── red_pitaya_hsi_dts.tcl ├── red_pitaya_hsi_fsbl.tcl ├── red_pitaya_vivado.tcl ├── red_pitaya_vivado_project.tcl ├── rtl │ ├── axi_master.v │ ├── axi_slave.v │ ├── axi_wr_fifo.v │ ├── pwm.sv │ ├── red_pitaya_ams.v │ ├── red_pitaya_asg.v │ ├── red_pitaya_asg_ch.v │ ├── red_pitaya_dfilt1.v │ ├── red_pitaya_hk.v │ ├── red_pitaya_pid.v │ ├── red_pitaya_pid_block.v │ ├── red_pitaya_pll.sv │ ├── red_pitaya_ps.v │ ├── red_pitaya_pwm.sv │ ├── red_pitaya_scope.v │ └── red_pitaya_top.v ├── sdc │ └── red_pitaya.xdc ├── sim │ ├── Makefile │ ├── pwm_tb.gtkw │ ├── red_pitaya_pll_tb.gtkw │ ├── red_pitaya_pwm_tb.gtkw │ └── red_pitaya_scope_tb.gtkw └── tbn │ ├── axi_master_model.sv │ ├── axi_slave_tb.sv │ ├── dfilt1_sim_values.txt │ ├── pwm_tb.sv │ ├── red_pitaya_ams_tb.sv │ ├── red_pitaya_asg_tb.sv │ ├── red_pitaya_dfilt1_tb.sv │ ├── red_pitaya_hk_tb.sv │ ├── red_pitaya_pid_tb.sv │ ├── red_pitaya_pll_tb.sv │ ├── red_pitaya_pwm_tb.sv │ ├── red_pitaya_scope_tb.sv │ ├── red_pitaya_scope_tb.v │ └── sys_bus_model.sv ├── patches ├── README.md ├── cryptopp.patch ├── devicetree.patch ├── fw_env.config ├── lantiq │ └── lantiq.c ├── libjson.patch ├── linux-xlnx-xilinx-v2015.4-config.patch ├── linux-xlnx-xilinx-v2015.4-eeprom.patch ├── linux-xlnx-xilinx-v2015.4-lantiq.patch ├── linux-xlnx-xilinx-v2015.4-wifi.patch ├── linux-xlnx-xilinx-v2015.4.01-config.patch ├── linux-xlnx-xilinx-v2015.4.01-eeprom.patch ├── linux-xlnx-xilinx-v2015.4.01-lantiq.patch ├── linux-xlnx-xilinx-v2015.4.01-wifi.patch ├── lua-nginx-module.patch ├── nginx.conf ├── nginx.patch ├── rtl8192cu │ ├── Kconfig │ ├── Makefile │ ├── clean │ ├── core │ │ ├── efuse │ │ │ └── rtw_efuse.c │ │ ├── rtw_ap.c │ │ ├── rtw_br_ext.c │ │ ├── rtw_cmd.c │ │ ├── rtw_debug.c │ │ ├── rtw_eeprom.c │ │ ├── rtw_ieee80211.c │ │ ├── rtw_io.c │ │ ├── rtw_ioctl_query.c │ │ ├── rtw_ioctl_rtl.c │ │ ├── rtw_ioctl_set.c │ │ ├── rtw_iol.c │ │ ├── rtw_mlme.c │ │ ├── rtw_mlme_ext.c │ │ ├── rtw_mp.c │ │ ├── rtw_mp_ioctl.c │ │ ├── rtw_p2p.c │ │ ├── rtw_pwrctrl.c │ │ ├── rtw_recv.c │ │ ├── rtw_rf.c │ │ ├── rtw_security.c │ │ ├── rtw_sreset.c │ │ ├── rtw_sta_mgt.c │ │ ├── rtw_tdls.c │ │ ├── rtw_wlan_util.c │ │ └── rtw_xmit.c │ ├── hal │ │ ├── HalPwrSeqCmd.c │ │ ├── dm.c │ │ ├── dm.h │ │ ├── hal_com.c │ │ ├── hal_intf.c │ │ └── rtl8192c │ │ │ ├── rtl8192c_cmd.c │ │ │ ├── rtl8192c_dm.c │ │ │ ├── rtl8192c_hal_init.c │ │ │ ├── rtl8192c_mp.c │ │ │ ├── rtl8192c_phycfg.c │ │ │ ├── rtl8192c_rf6052.c │ │ │ ├── rtl8192c_rxdesc.c │ │ │ ├── rtl8192c_sreset.c │ │ │ ├── rtl8192c_xmit.c │ │ │ └── usb │ │ │ ├── Hal8192CUHWImg.c │ │ │ ├── Hal8192CUHWImg_wowlan.c │ │ │ ├── rtl8192cu_led.c │ │ │ ├── rtl8192cu_recv.c │ │ │ ├── rtl8192cu_xmit.c │ │ │ ├── usb_halinit.c │ │ │ ├── usb_ops_ce.c │ │ │ ├── usb_ops_linux.c │ │ │ └── usb_ops_xp.c │ ├── ifcfg-wlan0 │ ├── include │ │ ├── Hal8192CEHWImg.h │ │ ├── Hal8192CPhyCfg.h │ │ ├── Hal8192CPhyReg.h │ │ ├── Hal8192CUHWImg.h │ │ ├── Hal8192CUHWImg_wowlan.h │ │ ├── Hal8192DEHWImg.h │ │ ├── Hal8192DPhyCfg.h │ │ ├── Hal8192DPhyReg.h │ │ ├── Hal8192DUHWImg.h │ │ ├── Hal8192DUHWImg_wowlan.h │ │ ├── HalPwrSeqCmd.h │ │ ├── autoconf.h │ │ ├── basic_types.h │ │ ├── byteorder │ │ │ ├── big_endian.h │ │ │ ├── generic.h │ │ │ ├── little_endian.h │ │ │ ├── swab.h │ │ │ └── swabb.h │ │ ├── circ_buf.h │ │ ├── cmd_osdep.h │ │ ├── drv_conf.h │ │ ├── drv_types.h │ │ ├── drv_types_ce.h │ │ ├── drv_types_linux.h │ │ ├── drv_types_sdio.h │ │ ├── drv_types_xp.h │ │ ├── ethernet.h │ │ ├── h2clbk.h │ │ ├── hal_com.h │ │ ├── hal_intf.h │ │ ├── ieee80211.h │ │ ├── ieee80211_ext.h │ │ ├── if_ether.h │ │ ├── ioctl_cfg80211.h │ │ ├── ip.h │ │ ├── linux │ │ │ └── wireless.h │ │ ├── mlme_osdep.h │ │ ├── mp_custom_oid.h │ │ ├── nic_spec.h │ │ ├── osdep_ce_service.h │ │ ├── osdep_intf.h │ │ ├── osdep_service.h │ │ ├── pci_hal.h │ │ ├── pci_ops.h │ │ ├── pci_osintf.h │ │ ├── recv_osdep.h │ │ ├── rtl8192c_cmd.h │ │ ├── rtl8192c_dm.h │ │ ├── rtl8192c_event.h │ │ ├── rtl8192c_hal.h │ │ ├── rtl8192c_led.h │ │ ├── rtl8192c_recv.h │ │ ├── rtl8192c_rf.h │ │ ├── rtl8192c_spec.h │ │ ├── rtl8192c_sreset.h │ │ ├── rtl8192c_xmit.h │ │ ├── rtl8192d_cmd.h │ │ ├── rtl8192d_dm.h │ │ ├── rtl8192d_hal.h │ │ ├── rtl8192d_led.h │ │ ├── rtl8192d_recv.h │ │ ├── rtl8192d_rf.h │ │ ├── rtl8192d_spec.h │ │ ├── rtl8192d_xmit.h │ │ ├── rtw_android.h │ │ ├── rtw_ap.h │ │ ├── rtw_br_ext.h │ │ ├── rtw_byteorder.h │ │ ├── rtw_cmd.h │ │ ├── rtw_debug.h │ │ ├── rtw_eeprom.h │ │ ├── rtw_efuse.h │ │ ├── rtw_event.h │ │ ├── rtw_ht.h │ │ ├── rtw_io.h │ │ ├── rtw_ioctl.h │ │ ├── rtw_ioctl_query.h │ │ ├── rtw_ioctl_rtl.h │ │ ├── rtw_ioctl_set.h │ │ ├── rtw_iol.h │ │ ├── rtw_led.h │ │ ├── rtw_mlme.h │ │ ├── rtw_mlme_ext.h │ │ ├── rtw_mp.h │ │ ├── rtw_mp_ioctl.h │ │ ├── rtw_mp_phy_regdef.h │ │ ├── rtw_p2p.h │ │ ├── rtw_pwrctrl.h │ │ ├── rtw_qos.h │ │ ├── rtw_recv.h │ │ ├── rtw_rf.h │ │ ├── rtw_security.h │ │ ├── rtw_sreset.h │ │ ├── rtw_tdls.h │ │ ├── rtw_version.h │ │ ├── rtw_xmit.h │ │ ├── sta_info.h │ │ ├── usb_hal.h │ │ ├── usb_ops.h │ │ ├── usb_ops_linux.h │ │ ├── usb_osintf.h │ │ ├── usb_vendor_req.h │ │ ├── wifi.h │ │ ├── wlan_bssdef.h │ │ └── xmit_osdep.h │ ├── os_dep │ │ ├── linux │ │ │ ├── ioctl_cfg80211.c │ │ │ ├── ioctl_linux.c │ │ │ ├── mlme_linux.c │ │ │ ├── os_intfs.c │ │ │ ├── pci_intf.c │ │ │ ├── pci_ops_linux.c │ │ │ ├── recv_linux.c │ │ │ ├── rtw_android.c │ │ │ ├── usb_intf.c │ │ │ ├── usb_ops_linux.c │ │ │ └── xmit_linux.c │ │ └── osdep_service.c │ ├── runwpa │ └── wlan0dhcp ├── scpi-parser-8746b911b06fe0fc3060c9c12493c13edfcdbd7e.patch ├── scpi-parser-b7e9d6858699f5ea9a23ecf6587e98e7b0e1bc28.patch ├── scpi-parser-fbe83efc8183980109846bd884da28104ca1faa1.patch ├── scpi-parser-v1.2.patch ├── scpi-parser-v2.1.patch ├── u-boot-xlnx-xilinx-v2015.4.patch ├── u-boot.script.buildroot └── u-boot.script.debian ├── scpi-server ├── Makefile ├── README.md ├── doc │ └── SCPIAPI_commands.odt └── src │ ├── Makefile │ ├── acquire.c │ ├── acquire.h │ ├── api_cmd.c │ ├── api_cmd.h │ ├── apin.c │ ├── apin.h │ ├── common.c │ ├── common.h │ ├── dpin.c │ ├── dpin.h │ ├── generate.c │ ├── generate.h │ ├── scpi-commands.c │ ├── scpi-commands.h │ └── scpi-server.c ├── settings.sh └── shared ├── Makefile ├── include └── redpitaya │ ├── http.h │ ├── system.h │ └── version.h └── libredpitaya ├── Makefile ├── http.c └── system.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/.gitignore -------------------------------------------------------------------------------- /Applications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/Makefile -------------------------------------------------------------------------------- /Applications/assets/bootstrap-3.0.0/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/bootstrap-3.0.0/js/jquery.js -------------------------------------------------------------------------------- /Applications/assets/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/bower.json -------------------------------------------------------------------------------- /Applications/assets/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/dropzone.js -------------------------------------------------------------------------------- /Applications/assets/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/flot/jquery.flot.js -------------------------------------------------------------------------------- /Applications/assets/flot/jquery.flot.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/flot/jquery.flot.min.js -------------------------------------------------------------------------------- /Applications/assets/flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /Applications/assets/flot/jquery.flot.resize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/flot/jquery.flot.resize.min.js -------------------------------------------------------------------------------- /Applications/assets/flot/jquery.flot.touch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/flot/jquery.flot.touch.js -------------------------------------------------------------------------------- /Applications/assets/images/142.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/142.gif -------------------------------------------------------------------------------- /Applications/assets/images/backyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/backyard.jpg -------------------------------------------------------------------------------- /Applications/assets/images/backyardhomepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/backyardhomepage.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaar_1.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaar_2.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaar_3.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaar_4.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaar_5.png -------------------------------------------------------------------------------- /Applications/assets/images/bazaarhomepage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/bazaarhomepage.png -------------------------------------------------------------------------------- /Applications/assets/images/communityarrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/communityarrow.png -------------------------------------------------------------------------------- /Applications/assets/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/download.png -------------------------------------------------------------------------------- /Applications/assets/images/download_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/download_grey.png -------------------------------------------------------------------------------- /Applications/assets/images/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/install.png -------------------------------------------------------------------------------- /Applications/assets/images/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/installed.png -------------------------------------------------------------------------------- /Applications/assets/images/klucavnica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/klucavnica.png -------------------------------------------------------------------------------- /Applications/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/logo.png -------------------------------------------------------------------------------- /Applications/assets/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/logo_white.png -------------------------------------------------------------------------------- /Applications/assets/images/navbar_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/navbar_logo.png -------------------------------------------------------------------------------- /Applications/assets/images/reconfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/reconfigure.png -------------------------------------------------------------------------------- /Applications/assets/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/run.png -------------------------------------------------------------------------------- /Applications/assets/images/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/run1.png -------------------------------------------------------------------------------- /Applications/assets/images/siva_backyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/siva_backyard.jpg -------------------------------------------------------------------------------- /Applications/assets/images/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/uninstall.png -------------------------------------------------------------------------------- /Applications/assets/images/wat_nodata.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/images/wat_nodata.jpg -------------------------------------------------------------------------------- /Applications/assets/jquery.mCustomScrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/jquery.mCustomScrollbar.css -------------------------------------------------------------------------------- /Applications/assets/jquery.mCustomScrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/jquery.mCustomScrollbar.js -------------------------------------------------------------------------------- /Applications/assets/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/mCSB_buttons.png -------------------------------------------------------------------------------- /Applications/assets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/package.json -------------------------------------------------------------------------------- /Applications/assets/redpitaya.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/redpitaya.custom.js -------------------------------------------------------------------------------- /Applications/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/assets/style.css -------------------------------------------------------------------------------- /Applications/ecosystem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/Makefile -------------------------------------------------------------------------------- /Applications/ecosystem/error_bazaar_access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/error_bazaar_access.html -------------------------------------------------------------------------------- /Applications/ecosystem/error_bazaar_proto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/error_bazaar_proto.html -------------------------------------------------------------------------------- /Applications/ecosystem/ie9.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/ie9.css -------------------------------------------------------------------------------- /Applications/ecosystem/images/142.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/142.gif -------------------------------------------------------------------------------- /Applications/ecosystem/images/backyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/backyard.jpg -------------------------------------------------------------------------------- /Applications/ecosystem/images/bazaar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/bazaar_1.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/bazaar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/bazaar_2.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/bazaar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/bazaar_3.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/bazaar_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/bazaar_4.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/bazaar_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/bazaar_5.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/download.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/download_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/download_grey.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/install.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/installed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/installed.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/logo.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/logo_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/logo_white.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/reconfigure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/reconfigure.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/run.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/run1.png -------------------------------------------------------------------------------- /Applications/ecosystem/images/siva_backyard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/siva_backyard.jpg -------------------------------------------------------------------------------- /Applications/ecosystem/images/uninstall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/images/uninstall.png -------------------------------------------------------------------------------- /Applications/ecosystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/index.html -------------------------------------------------------------------------------- /Applications/ecosystem/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/info/icon.png -------------------------------------------------------------------------------- /Applications/ecosystem/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/info/info.json -------------------------------------------------------------------------------- /Applications/ecosystem/instruct.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/instruct.html -------------------------------------------------------------------------------- /Applications/ecosystem/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/style.css -------------------------------------------------------------------------------- /Applications/ecosystem/ui/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/ui/5.png -------------------------------------------------------------------------------- /Applications/ecosystem/ui/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/ui/6.png -------------------------------------------------------------------------------- /Applications/ecosystem/ui/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/ui/7.png -------------------------------------------------------------------------------- /Applications/ecosystem/ui/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Applications/ecosystem/ui/8.png -------------------------------------------------------------------------------- /Bazaar/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/nginx/Makefile -------------------------------------------------------------------------------- /Bazaar/nginx/configure_withouts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/nginx/configure_withouts.txt -------------------------------------------------------------------------------- /Bazaar/nginx/ngx_ext_modules/ws_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/nginx/ngx_ext_modules/ws_server/Makefile -------------------------------------------------------------------------------- /Bazaar/tools/encoder/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/encoder/encoder.cpp -------------------------------------------------------------------------------- /Bazaar/tools/encoder/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/encoder/encoder.h -------------------------------------------------------------------------------- /Bazaar/tools/encoder/privkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/encoder/privkey.cpp -------------------------------------------------------------------------------- /Bazaar/tools/encoder/pubkey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/encoder/pubkey.cpp -------------------------------------------------------------------------------- /Bazaar/tools/idgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/idgen/Makefile -------------------------------------------------------------------------------- /Bazaar/tools/idgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/idgen/README.md -------------------------------------------------------------------------------- /Bazaar/tools/idgen/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/idgen/main.cpp -------------------------------------------------------------------------------- /Bazaar/tools/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Bazaar/tools/misc.h -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/COPYING -------------------------------------------------------------------------------- /Examples/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/Makefile -------------------------------------------------------------------------------- /Examples/C/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/README.md -------------------------------------------------------------------------------- /Examples/C/acquire_trigger_posedge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/acquire_trigger_posedge.c -------------------------------------------------------------------------------- /Examples/C/acquire_trigger_software.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/acquire_trigger_software.c -------------------------------------------------------------------------------- /Examples/C/analog_inputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/analog_inputs.c -------------------------------------------------------------------------------- /Examples/C/analog_outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/analog_outputs.c -------------------------------------------------------------------------------- /Examples/C/axi_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/axi_adc.c -------------------------------------------------------------------------------- /Examples/C/digital_led_bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/digital_led_bar.c -------------------------------------------------------------------------------- /Examples/C/digital_led_blink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/digital_led_blink.c -------------------------------------------------------------------------------- /Examples/C/digital_push_button.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/digital_push_button.c -------------------------------------------------------------------------------- /Examples/C/generate_arbitrary_waveform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/generate_arbitrary_waveform.c -------------------------------------------------------------------------------- /Examples/C/generate_burst_trigger_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/generate_burst_trigger_external.c -------------------------------------------------------------------------------- /Examples/C/generate_burst_trigger_software.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/generate_burst_trigger_software.c -------------------------------------------------------------------------------- /Examples/C/generate_continuous.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/generate_continuous.c -------------------------------------------------------------------------------- /Examples/C/test_e_module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/test_e_module -------------------------------------------------------------------------------- /Examples/C/test_e_module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/C/test_e_module.c -------------------------------------------------------------------------------- /Examples/Communication/C/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/Makefile -------------------------------------------------------------------------------- /Examples/Communication/C/iic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/iic/Makefile -------------------------------------------------------------------------------- /Examples/Communication/C/iic/iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/iic/iic.c -------------------------------------------------------------------------------- /Examples/Communication/C/spi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/spi/Makefile -------------------------------------------------------------------------------- /Examples/Communication/C/spi/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/spi/spi.c -------------------------------------------------------------------------------- /Examples/Communication/C/uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/uart/Makefile -------------------------------------------------------------------------------- /Examples/Communication/C/uart/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Communication/C/uart/uart.c -------------------------------------------------------------------------------- /Examples/Matlab/Batman_on_RedPitaya.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/Batman_on_RedPitaya.m -------------------------------------------------------------------------------- /Examples/Matlab/README.md: -------------------------------------------------------------------------------- 1 | This directory contains Red Pitaya matlab scpi examples. -------------------------------------------------------------------------------- /Examples/Matlab/acquire_trigger_external.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/acquire_trigger_external.m -------------------------------------------------------------------------------- /Examples/Matlab/acquire_trigger_posedge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/acquire_trigger_posedge.m -------------------------------------------------------------------------------- /Examples/Matlab/analog_inputs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/analog_inputs.m -------------------------------------------------------------------------------- /Examples/Matlab/analog_outputs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/analog_outputs.m -------------------------------------------------------------------------------- /Examples/Matlab/analog_outputs_interactive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/analog_outputs_interactive.m -------------------------------------------------------------------------------- /Examples/Matlab/batman_ch1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/batman_ch1.csv -------------------------------------------------------------------------------- /Examples/Matlab/batman_ch2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/batman_ch2.csv -------------------------------------------------------------------------------- /Examples/Matlab/digital_led_bar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/digital_led_bar.m -------------------------------------------------------------------------------- /Examples/Matlab/digital_led_bar_interactive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/digital_led_bar_interactive.m -------------------------------------------------------------------------------- /Examples/Matlab/digital_led_blink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/digital_led_blink.m -------------------------------------------------------------------------------- /Examples/Matlab/digital_push_button.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/digital_push_button.m -------------------------------------------------------------------------------- /Examples/Matlab/generate_arbitrary_waveform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/generate_arbitrary_waveform.m -------------------------------------------------------------------------------- /Examples/Matlab/generate_continuous.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/Matlab/generate_continuous.m -------------------------------------------------------------------------------- /Examples/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/README.md -------------------------------------------------------------------------------- /Examples/python/acquire_trigger_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/acquire_trigger_external.py -------------------------------------------------------------------------------- /Examples/python/acquire_trigger_posedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/acquire_trigger_posedge.py -------------------------------------------------------------------------------- /Examples/python/analog_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/analog_inputs.py -------------------------------------------------------------------------------- /Examples/python/analog_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/analog_outputs.py -------------------------------------------------------------------------------- /Examples/python/digital_led_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/digital_led_bar.py -------------------------------------------------------------------------------- /Examples/python/digital_led_blink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/digital_led_blink.py -------------------------------------------------------------------------------- /Examples/python/digital_push_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/digital_push_button.py -------------------------------------------------------------------------------- /Examples/python/generate_arbitrary_waveform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/generate_arbitrary_waveform.py -------------------------------------------------------------------------------- /Examples/python/generate_continuous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/generate_continuous.py -------------------------------------------------------------------------------- /Examples/python/redpitaya_scpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/python/redpitaya_scpi.py -------------------------------------------------------------------------------- /Examples/xadc/xadc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Examples/xadc/xadc.sh -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/INSTALL.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Makefile -------------------------------------------------------------------------------- /NETWORKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/NETWORKING.md -------------------------------------------------------------------------------- /OS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/README.md -------------------------------------------------------------------------------- /OS/buildroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/Makefile -------------------------------------------------------------------------------- /OS/buildroot/busybox.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/busybox.config -------------------------------------------------------------------------------- /OS/buildroot/config.armel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/config.armel -------------------------------------------------------------------------------- /OS/buildroot/config.armhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/config.armhf -------------------------------------------------------------------------------- /OS/buildroot/hostapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/hostapd/Makefile -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/fstab -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/fw_env.config: -------------------------------------------------------------------------------- 1 | ../opt/etc/fw_env.config -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/init.d/S40network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/init.d/S40network -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/init.d/S80nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/init.d/S80nginx -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/init.d/connman-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/init.d/connman-config -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/init.d/rcK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/init.d/rcK -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/init.d/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/init.d/rcS -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/inittab -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/motd: -------------------------------------------------------------------------------- 1 | /opt/redpitaya/version.txt -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/network/interfaces: -------------------------------------------------------------------------------- 1 | /opt/redpitaya/etc/network/interfaces -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/profile -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/ssh_host_dsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/ssh_host_dsa_key -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/ssh_host_ecdsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/ssh_host_ecdsa_key -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/ssh_host_ed25519_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/ssh_host_ed25519_key -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/ssh_host_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/ssh_host_key -------------------------------------------------------------------------------- /OS/buildroot/overlay/etc/ssh_host_rsa_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/buildroot/overlay/etc/ssh_host_rsa_key -------------------------------------------------------------------------------- /OS/buildroot/overlay/opt/redpitaya/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OS/buildroot/overlay/usr/lib/libluajit-5.1.so.2: -------------------------------------------------------------------------------- 1 | libluajit-5.1.so.2.0.2 -------------------------------------------------------------------------------- /OS/buildroot/overlay/var/log: -------------------------------------------------------------------------------- 1 | ../tmp/log -------------------------------------------------------------------------------- /OS/debian/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/README.md -------------------------------------------------------------------------------- /OS/debian/debian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/debian.sh -------------------------------------------------------------------------------- /OS/debian/image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/image.sh -------------------------------------------------------------------------------- /OS/debian/overlay/etc/apt/sources.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/apt/sources.list -------------------------------------------------------------------------------- /OS/debian/overlay/etc/default/hostapd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/default/hostapd -------------------------------------------------------------------------------- /OS/debian/overlay/etc/default/ifplugd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/default/ifplugd -------------------------------------------------------------------------------- /OS/debian/overlay/etc/dhcp/dhclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/dhcp/dhclient.conf -------------------------------------------------------------------------------- /OS/debian/overlay/etc/dhcp/dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/dhcp/dhcpd.conf -------------------------------------------------------------------------------- /OS/debian/overlay/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/fstab -------------------------------------------------------------------------------- /OS/debian/overlay/etc/hostapd/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/hostapd/hostapd.conf -------------------------------------------------------------------------------- /OS/debian/overlay/etc/hostname: -------------------------------------------------------------------------------- 1 | redpitaya 2 | -------------------------------------------------------------------------------- /OS/debian/overlay/etc/iptables.ipv4.nat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/iptables.ipv4.nat -------------------------------------------------------------------------------- /OS/debian/overlay/etc/iptables.ipv4.nonat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/iptables.ipv4.nonat -------------------------------------------------------------------------------- /OS/debian/overlay/etc/motd: -------------------------------------------------------------------------------- 1 | /opt/redpitaya/version.txt -------------------------------------------------------------------------------- /OS/debian/overlay/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/network/interfaces -------------------------------------------------------------------------------- /OS/debian/overlay/etc/network/interfaces.d/eth0: -------------------------------------------------------------------------------- 1 | iface eth0 inet dhcp 2 | -------------------------------------------------------------------------------- /OS/debian/overlay/etc/network/interfaces.d/wlan0: -------------------------------------------------------------------------------- 1 | wlan0.ap -------------------------------------------------------------------------------- /OS/debian/overlay/etc/profile.d/alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/profile.d/alias.sh -------------------------------------------------------------------------------- /OS/debian/overlay/etc/profile.d/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/profile.d/profile.sh -------------------------------------------------------------------------------- /OS/debian/overlay/etc/profile.d/redpitaya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/profile.d/redpitaya.sh -------------------------------------------------------------------------------- /OS/debian/overlay/etc/securetty: -------------------------------------------------------------------------------- 1 | # Serial Console for Xilinx Zynq-7000 2 | ttyPS0 3 | -------------------------------------------------------------------------------- /OS/debian/overlay/etc/sysconfig/redpitaya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/overlay/etc/sysconfig/redpitaya -------------------------------------------------------------------------------- /OS/debian/overlay/etc/timezone: -------------------------------------------------------------------------------- 1 | Europe/Ljubljana 2 | -------------------------------------------------------------------------------- /OS/debian/overlay/etc/udev/rules.d/75-persistent-net-generator.rules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OS/debian/overlay/opt/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OS/debian/overlay/var/log/nginx/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OS/debian/redpitaya.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/redpitaya.sh -------------------------------------------------------------------------------- /OS/debian/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/update.sh -------------------------------------------------------------------------------- /OS/debian/wyliodrin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/debian/wyliodrin.sh -------------------------------------------------------------------------------- /OS/filesystem/etc/network/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/etc/network/config -------------------------------------------------------------------------------- /OS/filesystem/etc/network/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/etc/network/dnsmasq.conf -------------------------------------------------------------------------------- /OS/filesystem/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/etc/network/interfaces -------------------------------------------------------------------------------- /OS/filesystem/etc/network/interfaces.ap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/etc/network/interfaces.ap -------------------------------------------------------------------------------- /OS/filesystem/sbin/bazaar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/sbin/bazaar -------------------------------------------------------------------------------- /OS/filesystem/sbin/lantiq_mdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/sbin/lantiq_mdio -------------------------------------------------------------------------------- /OS/filesystem/sbin/ro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/sbin/ro -------------------------------------------------------------------------------- /OS/filesystem/sbin/rw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/filesystem/sbin/rw -------------------------------------------------------------------------------- /OS/tools/discovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/OS/tools/discovery.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/README.md -------------------------------------------------------------------------------- /SDK/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/Makefile -------------------------------------------------------------------------------- /SDK/Makefile_target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/Makefile_target -------------------------------------------------------------------------------- /SDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/README.md -------------------------------------------------------------------------------- /SDK/create_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/create_template.sh -------------------------------------------------------------------------------- /SDK/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/install.sh -------------------------------------------------------------------------------- /SDK/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/SDK/run.sh -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/TODO.md -------------------------------------------------------------------------------- /Test/GPIanalyser/GPIanalyse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/GPIanalyse.c -------------------------------------------------------------------------------- /Test/GPIanalyser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/Makefile -------------------------------------------------------------------------------- /Test/GPIanalyser/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/fpga_awg.c -------------------------------------------------------------------------------- /Test/GPIanalyser/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/fpga_awg.h -------------------------------------------------------------------------------- /Test/GPIanalyser/fpga_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/fpga_osc.c -------------------------------------------------------------------------------- /Test/GPIanalyser/fpga_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/fpga_osc.h -------------------------------------------------------------------------------- /Test/GPIanalyser/genCtrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/genCtrl.c -------------------------------------------------------------------------------- /Test/GPIanalyser/linAlg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/linAlg.c -------------------------------------------------------------------------------- /Test/GPIanalyser/linAlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/linAlg.h -------------------------------------------------------------------------------- /Test/GPIanalyser/main_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/main_osc.c -------------------------------------------------------------------------------- /Test/GPIanalyser/main_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/main_osc.h -------------------------------------------------------------------------------- /Test/GPIanalyser/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/readme.txt -------------------------------------------------------------------------------- /Test/GPIanalyser/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/worker.c -------------------------------------------------------------------------------- /Test/GPIanalyser/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/GPIanalyser/worker.h -------------------------------------------------------------------------------- /Test/NCE/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/README.txt -------------------------------------------------------------------------------- /Test/NCE/impednace_analyzer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/impednace_analyzer.m -------------------------------------------------------------------------------- /Test/NCE/matlab_initial_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/matlab_initial_bode.m -------------------------------------------------------------------------------- /Test/NCE/matlab_initial_lcr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/matlab_initial_lcr.m -------------------------------------------------------------------------------- /Test/NCE/octave_initial_bode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/octave_initial_bode.m -------------------------------------------------------------------------------- /Test/NCE/octave_initial_lcr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/NCE/octave_initial_lcr.m -------------------------------------------------------------------------------- /Test/SD-card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/SD-card/README.md -------------------------------------------------------------------------------- /Test/acquire/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/Makefile -------------------------------------------------------------------------------- /Test/acquire/acquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/acquire.c -------------------------------------------------------------------------------- /Test/acquire/fpga_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/fpga_osc.c -------------------------------------------------------------------------------- /Test/acquire/fpga_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/fpga_osc.h -------------------------------------------------------------------------------- /Test/acquire/main_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/main_osc.c -------------------------------------------------------------------------------- /Test/acquire/main_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/main_osc.h -------------------------------------------------------------------------------- /Test/acquire/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/worker.c -------------------------------------------------------------------------------- /Test/acquire/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/acquire/worker.h -------------------------------------------------------------------------------- /Test/api-scpi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/README.md -------------------------------------------------------------------------------- /Test/api-scpi/acq_bin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/acq_bin_test.py -------------------------------------------------------------------------------- /Test/api-scpi/acq_dig_loop_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/acq_dig_loop_test.py -------------------------------------------------------------------------------- /Test/api-scpi/ctrl_data/gen_ctrl_ch1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/ctrl_data/gen_ctrl_ch1 -------------------------------------------------------------------------------- /Test/api-scpi/ctrl_data/gen_ctrl_ch2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/ctrl_data/gen_ctrl_ch2 -------------------------------------------------------------------------------- /Test/api-scpi/redpitaya_scpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/redpitaya_scpi.py -------------------------------------------------------------------------------- /Test/api-scpi/scpi_t.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/scpi_t.py -------------------------------------------------------------------------------- /Test/api-scpi/scpi_t.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/scpi_t.pyc -------------------------------------------------------------------------------- /Test/api-scpi/test_scpi_acq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/api-scpi/test_scpi_acq.py -------------------------------------------------------------------------------- /Test/bode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/Makefile -------------------------------------------------------------------------------- /Test/bode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/README.md -------------------------------------------------------------------------------- /Test/bode/acquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/acquire.c -------------------------------------------------------------------------------- /Test/bode/bode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/bode.c -------------------------------------------------------------------------------- /Test/bode/filtered_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/filtered_data.m -------------------------------------------------------------------------------- /Test/bode/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/fpga_awg.c -------------------------------------------------------------------------------- /Test/bode/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/fpga_awg.h -------------------------------------------------------------------------------- /Test/bode/fpga_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/fpga_osc.c -------------------------------------------------------------------------------- /Test/bode/fpga_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/fpga_osc.h -------------------------------------------------------------------------------- /Test/bode/main_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/main_osc.c -------------------------------------------------------------------------------- /Test/bode/main_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/main_osc.h -------------------------------------------------------------------------------- /Test/bode/saved_data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/saved_data.m -------------------------------------------------------------------------------- /Test/bode/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/version.h -------------------------------------------------------------------------------- /Test/bode/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/worker.c -------------------------------------------------------------------------------- /Test/bode/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/bode/worker.h -------------------------------------------------------------------------------- /Test/calib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calib/Makefile -------------------------------------------------------------------------------- /Test/calib/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calib/calib.c -------------------------------------------------------------------------------- /Test/calib/rp_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calib/rp_eeprom.c -------------------------------------------------------------------------------- /Test/calib/rp_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calib/rp_eeprom.h -------------------------------------------------------------------------------- /Test/calibrate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calibrate/Makefile -------------------------------------------------------------------------------- /Test/calibrate/calibTune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calibrate/calibTune.c -------------------------------------------------------------------------------- /Test/calibrate/calibrateApp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calibrate/calibrateApp.c -------------------------------------------------------------------------------- /Test/calibrate/calibrateApp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calibrate/calibrateApp2.c -------------------------------------------------------------------------------- /Test/calibrate/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/calibrate/version.h -------------------------------------------------------------------------------- /Test/clients/matlab/acquire.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/acquire.m -------------------------------------------------------------------------------- /Test/clients/matlab/driver/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/driver/README.txt -------------------------------------------------------------------------------- /Test/clients/matlab/driver/red_pitaya.mdd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/driver/red_pitaya.mdd -------------------------------------------------------------------------------- /Test/clients/matlab/driver/rp_generator.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/driver/rp_generator.fig -------------------------------------------------------------------------------- /Test/clients/matlab/driver/rp_generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/driver/rp_generator.m -------------------------------------------------------------------------------- /Test/clients/matlab/generate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/generate.m -------------------------------------------------------------------------------- /Test/clients/matlab/interpolation/fft_interp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/interpolation/fft_interp.m -------------------------------------------------------------------------------- /Test/clients/matlab/monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/clients/matlab/monitor.m -------------------------------------------------------------------------------- /Test/ext_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/ext_module/Makefile -------------------------------------------------------------------------------- /Test/ext_module/test_procedure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/ext_module/test_procedure.c -------------------------------------------------------------------------------- /Test/generate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate/Makefile -------------------------------------------------------------------------------- /Test/generate/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate/fpga_awg.c -------------------------------------------------------------------------------- /Test/generate/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate/fpga_awg.h -------------------------------------------------------------------------------- /Test/generate/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate/generate.c -------------------------------------------------------------------------------- /Test/generate_pulse/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate_pulse/fpga_awg.c -------------------------------------------------------------------------------- /Test/generate_pulse/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate_pulse/fpga_awg.h -------------------------------------------------------------------------------- /Test/generate_pulse/generate_pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/generate_pulse/generate_pulse.c -------------------------------------------------------------------------------- /Test/hw_monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/hw_monitor/Makefile -------------------------------------------------------------------------------- /Test/hw_monitor/hw_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/hw_monitor/hw_monitor.cpp -------------------------------------------------------------------------------- /Test/hw_monitor/hw_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/hw_monitor/hw_monitor.h -------------------------------------------------------------------------------- /Test/hw_monitor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/hw_monitor/main.cpp -------------------------------------------------------------------------------- /Test/lcr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/Makefile -------------------------------------------------------------------------------- /Test/lcr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/README.md -------------------------------------------------------------------------------- /Test/lcr/acquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/acquire.c -------------------------------------------------------------------------------- /Test/lcr/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/fpga_awg.c -------------------------------------------------------------------------------- /Test/lcr/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/fpga_awg.h -------------------------------------------------------------------------------- /Test/lcr/fpga_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/fpga_osc.c -------------------------------------------------------------------------------- /Test/lcr/fpga_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/fpga_osc.h -------------------------------------------------------------------------------- /Test/lcr/getImpedance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/getImpedance.c -------------------------------------------------------------------------------- /Test/lcr/index_final.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/index_final.html -------------------------------------------------------------------------------- /Test/lcr/lcr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/lcr.c -------------------------------------------------------------------------------- /Test/lcr/main_osc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/main_osc.c -------------------------------------------------------------------------------- /Test/lcr/main_osc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/main_osc.h -------------------------------------------------------------------------------- /Test/lcr/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/version.h -------------------------------------------------------------------------------- /Test/lcr/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/worker.c -------------------------------------------------------------------------------- /Test/lcr/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/lcr/worker.h -------------------------------------------------------------------------------- /Test/led_control/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control/Makefile -------------------------------------------------------------------------------- /Test/led_control/led_control.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control/led_control.c -------------------------------------------------------------------------------- /Test/led_control/led_control.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control/led_control.h -------------------------------------------------------------------------------- /Test/led_control/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control/version.h -------------------------------------------------------------------------------- /Test/led_control_cpp/hw_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control_cpp/hw_monitor.cpp -------------------------------------------------------------------------------- /Test/led_control_cpp/hw_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control_cpp/hw_monitor.h -------------------------------------------------------------------------------- /Test/led_control_cpp/led.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control_cpp/led.cpp -------------------------------------------------------------------------------- /Test/led_control_cpp/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control_cpp/led.h -------------------------------------------------------------------------------- /Test/led_control_cpp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/led_control_cpp/version.h -------------------------------------------------------------------------------- /Test/monitor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/monitor/Makefile -------------------------------------------------------------------------------- /Test/monitor/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/monitor/monitor.c -------------------------------------------------------------------------------- /Test/monitoradvanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/monitoradvanced/Makefile -------------------------------------------------------------------------------- /Test/monitoradvanced/monitoradvanced.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/monitoradvanced/monitoradvanced.c -------------------------------------------------------------------------------- /Test/monitoradvanced/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/monitoradvanced/version.h -------------------------------------------------------------------------------- /Test/scpi-client/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/scpi-client/main.c -------------------------------------------------------------------------------- /Test/xadc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/Makefile -------------------------------------------------------------------------------- /Test/xadc/xadc_lib/include/xadc_core_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_lib/include/xadc_core_if.h -------------------------------------------------------------------------------- /Test/xadc/xadc_lib/linux_include/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_lib/linux_include/events.h -------------------------------------------------------------------------------- /Test/xadc/xadc_lib/linux_include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_lib/linux_include/types.h -------------------------------------------------------------------------------- /Test/xadc/xadc_lib/src/xadc_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_lib/src/xadc_core.c -------------------------------------------------------------------------------- /Test/xadc/xadc_lib/src/xadc_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_lib/src/xadc_core.h -------------------------------------------------------------------------------- /Test/xadc/xadc_read_cmd/src/xadc_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/Test/xadc/xadc_read_cmd/src/xadc_main.c -------------------------------------------------------------------------------- /api/include/redpitaya/rp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/include/redpitaya/rp.h -------------------------------------------------------------------------------- /api/rpbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/Makefile -------------------------------------------------------------------------------- /api/rpbase/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/doc/Makefile -------------------------------------------------------------------------------- /api/rpbase/doc/conf/doxyfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/doc/conf/doxyfile.inc -------------------------------------------------------------------------------- /api/rpbase/doc/img/redpitaya-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/doc/img/redpitaya-logo.png -------------------------------------------------------------------------------- /api/rpbase/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/Makefile -------------------------------------------------------------------------------- /api/rpbase/src/acq_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/acq_handler.c -------------------------------------------------------------------------------- /api/rpbase/src/acq_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/acq_handler.h -------------------------------------------------------------------------------- /api/rpbase/src/analog_mixed_signals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/analog_mixed_signals.h -------------------------------------------------------------------------------- /api/rpbase/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/calib.c -------------------------------------------------------------------------------- /api/rpbase/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/calib.h -------------------------------------------------------------------------------- /api/rpbase/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/common.c -------------------------------------------------------------------------------- /api/rpbase/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/common.h -------------------------------------------------------------------------------- /api/rpbase/src/exportmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/exportmap -------------------------------------------------------------------------------- /api/rpbase/src/gen_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/gen_handler.c -------------------------------------------------------------------------------- /api/rpbase/src/gen_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/gen_handler.h -------------------------------------------------------------------------------- /api/rpbase/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/generate.c -------------------------------------------------------------------------------- /api/rpbase/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/generate.h -------------------------------------------------------------------------------- /api/rpbase/src/housekeeping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/housekeeping.h -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/Makefile -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/kiss_fft.c -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/kiss_fft.h -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/kiss_fftr.c -------------------------------------------------------------------------------- /api/rpbase/src/kiss_fft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/kiss_fft/kiss_fftr.h -------------------------------------------------------------------------------- /api/rpbase/src/oscilloscope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/oscilloscope.c -------------------------------------------------------------------------------- /api/rpbase/src/oscilloscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/oscilloscope.h -------------------------------------------------------------------------------- /api/rpbase/src/rp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/rp.c -------------------------------------------------------------------------------- /api/rpbase/src/spec_dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/spec_dsp.c -------------------------------------------------------------------------------- /api/rpbase/src/spec_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/spec_dsp.h -------------------------------------------------------------------------------- /api/rpbase/src/spec_fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/spec_fpga.c -------------------------------------------------------------------------------- /api/rpbase/src/spec_fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/spec_fpga.h -------------------------------------------------------------------------------- /api/rpbase/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/api/rpbase/src/version.h -------------------------------------------------------------------------------- /apps-free/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/Makefile -------------------------------------------------------------------------------- /apps-free/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/README.md -------------------------------------------------------------------------------- /apps-free/bode_plotter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/Makefile -------------------------------------------------------------------------------- /apps-free/bode_plotter/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/doc/Doxyfile -------------------------------------------------------------------------------- /apps-free/bode_plotter/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/doc/Makefile -------------------------------------------------------------------------------- /apps-free/bode_plotter/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/doc/header.tex -------------------------------------------------------------------------------- /apps-free/bode_plotter/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/fpga.conf -------------------------------------------------------------------------------- /apps-free/bode_plotter/images/arow-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/images/arow-left.png -------------------------------------------------------------------------------- /apps-free/bode_plotter/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/images/gear.png -------------------------------------------------------------------------------- /apps-free/bode_plotter/images/gear_hoover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/images/gear_hoover.png -------------------------------------------------------------------------------- /apps-free/bode_plotter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/index.html -------------------------------------------------------------------------------- /apps-free/bode_plotter/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/info/icon.png -------------------------------------------------------------------------------- /apps-free/bode_plotter/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/info/info.json -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/Makefile -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/calib.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/calib.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga_pid.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/fpga_pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/fpga_pid.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/generate.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/generate.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/main.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/main.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/pid.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/pid.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/version.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/worker.c -------------------------------------------------------------------------------- /apps-free/bode_plotter/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/src/worker.h -------------------------------------------------------------------------------- /apps-free/bode_plotter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/bode_plotter/style.css -------------------------------------------------------------------------------- /apps-free/freqanalyzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/Makefile -------------------------------------------------------------------------------- /apps-free/freqanalyzer/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/fpga.conf -------------------------------------------------------------------------------- /apps-free/freqanalyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/index.html -------------------------------------------------------------------------------- /apps-free/freqanalyzer/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/info/icon.png -------------------------------------------------------------------------------- /apps-free/freqanalyzer/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/info/info.json -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/Makefile -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/dsp.c -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/dsp.h -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/fpga.c -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/fpga.h -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/main.c -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/main.h -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/version.h -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/worker.c -------------------------------------------------------------------------------- /apps-free/freqanalyzer/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/freqanalyzer/src/worker.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/Makefile -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/fpga.conf -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/images/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/images/gear.png -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/index.html -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/info/icon.png -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/info/info.json -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/Makefile -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/README.md: -------------------------------------------------------------------------------- 1 | developer: luka.golinar, redpitaya 2 | 3 | -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/calib.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/calib.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/fpga.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/fpga.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/generate.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/generate.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/main.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/main.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/version.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/worker.c -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/src/worker.h -------------------------------------------------------------------------------- /apps-free/impedance_analyzer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/impedance_analyzer/style.css -------------------------------------------------------------------------------- /apps-free/lti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/Makefile -------------------------------------------------------------------------------- /apps-free/lti/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/fpga.conf -------------------------------------------------------------------------------- /apps-free/lti/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/index.html -------------------------------------------------------------------------------- /apps-free/lti/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/info/icon.png -------------------------------------------------------------------------------- /apps-free/lti/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/info/info.json -------------------------------------------------------------------------------- /apps-free/lti/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/Makefile -------------------------------------------------------------------------------- /apps-free/lti/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/calib.c -------------------------------------------------------------------------------- /apps-free/lti/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/calib.h -------------------------------------------------------------------------------- /apps-free/lti/src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/dsp.c -------------------------------------------------------------------------------- /apps-free/lti/src/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/dsp.h -------------------------------------------------------------------------------- /apps-free/lti/src/external/kiss_fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/kiss_fft/Makefile -------------------------------------------------------------------------------- /apps-free/lti/src/external/kiss_fft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/kiss_fft/kiss_fft.c -------------------------------------------------------------------------------- /apps-free/lti/src/external/kiss_fft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/kiss_fft/kiss_fft.h -------------------------------------------------------------------------------- /apps-free/lti/src/external/kiss_fft/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/kiss_fft/kiss_fftr.c -------------------------------------------------------------------------------- /apps-free/lti/src/external/kiss_fft/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/kiss_fft/kiss_fftr.h -------------------------------------------------------------------------------- /apps-free/lti/src/external/picts/RP_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/picts/RP_conn.png -------------------------------------------------------------------------------- /apps-free/lti/src/external/picts/git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/picts/git.jpg -------------------------------------------------------------------------------- /apps-free/lti/src/external/picts/z_tf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/external/picts/z_tf.jpg -------------------------------------------------------------------------------- /apps-free/lti/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/lti/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/lti/src/fpga_lti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/fpga_lti.c -------------------------------------------------------------------------------- /apps-free/lti/src/fpga_lti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/fpga_lti.h -------------------------------------------------------------------------------- /apps-free/lti/src/generate_basic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/generate_basic.c -------------------------------------------------------------------------------- /apps-free/lti/src/generate_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/generate_basic.h -------------------------------------------------------------------------------- /apps-free/lti/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/main.c -------------------------------------------------------------------------------- /apps-free/lti/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/main.h -------------------------------------------------------------------------------- /apps-free/lti/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/version.h -------------------------------------------------------------------------------- /apps-free/lti/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/worker.c -------------------------------------------------------------------------------- /apps-free/lti/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/lti/src/worker.h -------------------------------------------------------------------------------- /apps-free/scope+gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/Makefile -------------------------------------------------------------------------------- /apps-free/scope+gen/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/doc/Doxyfile -------------------------------------------------------------------------------- /apps-free/scope+gen/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/doc/Makefile -------------------------------------------------------------------------------- /apps-free/scope+gen/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/doc/header.tex -------------------------------------------------------------------------------- /apps-free/scope+gen/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/fpga.conf -------------------------------------------------------------------------------- /apps-free/scope+gen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/index.html -------------------------------------------------------------------------------- /apps-free/scope+gen/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/info/icon.png -------------------------------------------------------------------------------- /apps-free/scope+gen/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+gen/info/info.json -------------------------------------------------------------------------------- /apps-free/scope+gen/src: -------------------------------------------------------------------------------- 1 | ../scope/src -------------------------------------------------------------------------------- /apps-free/scope+istsensor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/Makefile -------------------------------------------------------------------------------- /apps-free/scope+istsensor/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/fpga.conf -------------------------------------------------------------------------------- /apps-free/scope+istsensor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/index.html -------------------------------------------------------------------------------- /apps-free/scope+istsensor/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/info/icon.png -------------------------------------------------------------------------------- /apps-free/scope+istsensor/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/info/info.json -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/ISTctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/ISTctrl.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/ISTctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/ISTctrl.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/Makefile -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/calib.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/calib.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/fpga.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/fpga.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/generate.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/generate.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/main.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/main.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/pid.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/pid.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/version.h -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/worker.c -------------------------------------------------------------------------------- /apps-free/scope+istsensor/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+istsensor/src/worker.h -------------------------------------------------------------------------------- /apps-free/scope+pid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/Makefile -------------------------------------------------------------------------------- /apps-free/scope+pid/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/doc/Doxyfile -------------------------------------------------------------------------------- /apps-free/scope+pid/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/doc/Makefile -------------------------------------------------------------------------------- /apps-free/scope+pid/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/doc/header.tex -------------------------------------------------------------------------------- /apps-free/scope+pid/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/fpga.conf -------------------------------------------------------------------------------- /apps-free/scope+pid/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/index.html -------------------------------------------------------------------------------- /apps-free/scope+pid/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/info/icon.png -------------------------------------------------------------------------------- /apps-free/scope+pid/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope+pid/info/info.json -------------------------------------------------------------------------------- /apps-free/scope+pid/src: -------------------------------------------------------------------------------- 1 | ../scope/src -------------------------------------------------------------------------------- /apps-free/scope/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/Makefile -------------------------------------------------------------------------------- /apps-free/scope/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/doc/Doxyfile -------------------------------------------------------------------------------- /apps-free/scope/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/doc/Makefile -------------------------------------------------------------------------------- /apps-free/scope/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/doc/header.tex -------------------------------------------------------------------------------- /apps-free/scope/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/fpga.conf -------------------------------------------------------------------------------- /apps-free/scope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/index.html -------------------------------------------------------------------------------- /apps-free/scope/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/info/icon.png -------------------------------------------------------------------------------- /apps-free/scope/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/info/info.json -------------------------------------------------------------------------------- /apps-free/scope/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/Makefile -------------------------------------------------------------------------------- /apps-free/scope/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/calib.c -------------------------------------------------------------------------------- /apps-free/scope/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/calib.h -------------------------------------------------------------------------------- /apps-free/scope/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga.c -------------------------------------------------------------------------------- /apps-free/scope/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga.h -------------------------------------------------------------------------------- /apps-free/scope/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/scope/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/scope/src/fpga_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga_pid.c -------------------------------------------------------------------------------- /apps-free/scope/src/fpga_pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/fpga_pid.h -------------------------------------------------------------------------------- /apps-free/scope/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/generate.c -------------------------------------------------------------------------------- /apps-free/scope/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/generate.h -------------------------------------------------------------------------------- /apps-free/scope/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/main.c -------------------------------------------------------------------------------- /apps-free/scope/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/main.h -------------------------------------------------------------------------------- /apps-free/scope/src/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/pid.c -------------------------------------------------------------------------------- /apps-free/scope/src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/pid.h -------------------------------------------------------------------------------- /apps-free/scope/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/version.h -------------------------------------------------------------------------------- /apps-free/scope/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/worker.c -------------------------------------------------------------------------------- /apps-free/scope/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/scope/src/worker.h -------------------------------------------------------------------------------- /apps-free/spectrum/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/Makefile -------------------------------------------------------------------------------- /apps-free/spectrum/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/fpga.conf -------------------------------------------------------------------------------- /apps-free/spectrum/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/index.html -------------------------------------------------------------------------------- /apps-free/spectrum/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/info/icon.png -------------------------------------------------------------------------------- /apps-free/spectrum/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/info/info.json -------------------------------------------------------------------------------- /apps-free/spectrum/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/Makefile -------------------------------------------------------------------------------- /apps-free/spectrum/src/dsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/dsp.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/dsp.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/README -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/cjpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/cjpeg.1 -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/cjpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/cjpeg.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/djpeg.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/djpeg.1 -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/djpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/djpeg.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/jdct.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/rdbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/rdbmp.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/rdgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/rdgif.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/rdppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/rdppm.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/rdrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/rdrle.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/wrbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/wrbmp.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/wrgif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/wrgif.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/wrppm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/wrppm.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/external/jpeg-6b/wrrle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/external/jpeg-6b/wrrle.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/fpga.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/fpga.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/main.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/main.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/version.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/waterfall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/waterfall.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/waterfall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/waterfall.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/wf_colmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/wf_colmap.h -------------------------------------------------------------------------------- /apps-free/spectrum/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/worker.c -------------------------------------------------------------------------------- /apps-free/spectrum/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/spectrum/src/worker.h -------------------------------------------------------------------------------- /apps-free/teslameter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/Makefile -------------------------------------------------------------------------------- /apps-free/teslameter/doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/doc/Doxyfile -------------------------------------------------------------------------------- /apps-free/teslameter/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/doc/Makefile -------------------------------------------------------------------------------- /apps-free/teslameter/doc/header.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/doc/header.tex -------------------------------------------------------------------------------- /apps-free/teslameter/fpga.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/fpga.conf -------------------------------------------------------------------------------- /apps-free/teslameter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/index.html -------------------------------------------------------------------------------- /apps-free/teslameter/info/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/info/icon.png -------------------------------------------------------------------------------- /apps-free/teslameter/info/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/info/info.json -------------------------------------------------------------------------------- /apps-free/teslameter/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/Makefile -------------------------------------------------------------------------------- /apps-free/teslameter/src/calib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/calib.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/calib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/calib.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga_awg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga_awg.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga_awg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga_awg.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga_pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga_pid.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/fpga_pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/fpga_pid.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/generate.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/generate.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/hw_monitor.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps-free/teslameter/src/hw_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/hw_monitor.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/main.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/main.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/pid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/pid.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/pid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/pid.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/version.h -------------------------------------------------------------------------------- /apps-free/teslameter/src/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/worker.c -------------------------------------------------------------------------------- /apps-free/teslameter/src/worker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/apps-free/teslameter/src/worker.h -------------------------------------------------------------------------------- /doc/visual/ArduinoSensorShield_3_PCB_3D_Top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/ArduinoSensorShield_3_PCB_3D_Top.pdf -------------------------------------------------------------------------------- /doc/visual/ArduinoSensorShield_3_SCH.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/ArduinoSensorShield_3_SCH.pdf -------------------------------------------------------------------------------- /doc/visual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/README.md -------------------------------------------------------------------------------- /doc/visual/example_1/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_1/blocks.png -------------------------------------------------------------------------------- /doc/visual/example_1/main.visual: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_1/main.visual -------------------------------------------------------------------------------- /doc/visual/example_1/main.visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_1/main.visual.py -------------------------------------------------------------------------------- /doc/visual/example_1/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_1/wiring.png -------------------------------------------------------------------------------- /doc/visual/example_2/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_2/blocks.png -------------------------------------------------------------------------------- /doc/visual/example_2/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_2/switch.png -------------------------------------------------------------------------------- /doc/visual/example_2/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_2/wiring.png -------------------------------------------------------------------------------- /doc/visual/example_3/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_3/blocks.png -------------------------------------------------------------------------------- /doc/visual/example_3/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_3/wiring.png -------------------------------------------------------------------------------- /doc/visual/example_4/block_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_4/block_start.png -------------------------------------------------------------------------------- /doc/visual/example_4/block_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_4/block_stop.png -------------------------------------------------------------------------------- /doc/visual/example_4/block_timestamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_4/block_timestamp.png -------------------------------------------------------------------------------- /doc/visual/example_4/pushbutton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_4/pushbutton.png -------------------------------------------------------------------------------- /doc/visual/example_4/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_4/wiring.png -------------------------------------------------------------------------------- /doc/visual/example_5/wiring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/doc/visual/example_5/wiring.png -------------------------------------------------------------------------------- /fpga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/Makefile -------------------------------------------------------------------------------- /fpga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/README.md -------------------------------------------------------------------------------- /fpga/archive/fpga_0.93.bit.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/archive/fpga_0.93.bit.xz -------------------------------------------------------------------------------- /fpga/archive/fpga_0.94.bit.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/archive/fpga_0.94.bit.xz -------------------------------------------------------------------------------- /fpga/doc/RedPitaya_HDL_memory_map.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/doc/RedPitaya_HDL_memory_map.odt -------------------------------------------------------------------------------- /fpga/doc/redpitaya_block.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/doc/redpitaya_block.odg -------------------------------------------------------------------------------- /fpga/doc/redpitaya_block.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/doc/redpitaya_block.odt -------------------------------------------------------------------------------- /fpga/ip/system.bd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/ip/system.bd -------------------------------------------------------------------------------- /fpga/ip/system_bd.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/ip/system_bd.tcl -------------------------------------------------------------------------------- /fpga/red_pitaya_hsi_dram_test.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/red_pitaya_hsi_dram_test.tcl -------------------------------------------------------------------------------- /fpga/red_pitaya_hsi_dts.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/red_pitaya_hsi_dts.tcl -------------------------------------------------------------------------------- /fpga/red_pitaya_hsi_fsbl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/red_pitaya_hsi_fsbl.tcl -------------------------------------------------------------------------------- /fpga/red_pitaya_vivado.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/red_pitaya_vivado.tcl -------------------------------------------------------------------------------- /fpga/red_pitaya_vivado_project.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/red_pitaya_vivado_project.tcl -------------------------------------------------------------------------------- /fpga/rtl/axi_master.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/axi_master.v -------------------------------------------------------------------------------- /fpga/rtl/axi_slave.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/axi_slave.v -------------------------------------------------------------------------------- /fpga/rtl/axi_wr_fifo.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/axi_wr_fifo.v -------------------------------------------------------------------------------- /fpga/rtl/pwm.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/pwm.sv -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_ams.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_ams.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_asg.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_asg.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_asg_ch.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_asg_ch.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_dfilt1.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_dfilt1.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_hk.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_hk.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_pid.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_pid.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_pid_block.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_pid_block.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_pll.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_pll.sv -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_ps.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_ps.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_pwm.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_pwm.sv -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_scope.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_scope.v -------------------------------------------------------------------------------- /fpga/rtl/red_pitaya_top.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/rtl/red_pitaya_top.v -------------------------------------------------------------------------------- /fpga/sdc/red_pitaya.xdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sdc/red_pitaya.xdc -------------------------------------------------------------------------------- /fpga/sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sim/Makefile -------------------------------------------------------------------------------- /fpga/sim/pwm_tb.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sim/pwm_tb.gtkw -------------------------------------------------------------------------------- /fpga/sim/red_pitaya_pll_tb.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sim/red_pitaya_pll_tb.gtkw -------------------------------------------------------------------------------- /fpga/sim/red_pitaya_pwm_tb.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sim/red_pitaya_pwm_tb.gtkw -------------------------------------------------------------------------------- /fpga/sim/red_pitaya_scope_tb.gtkw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/sim/red_pitaya_scope_tb.gtkw -------------------------------------------------------------------------------- /fpga/tbn/axi_master_model.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/axi_master_model.sv -------------------------------------------------------------------------------- /fpga/tbn/axi_slave_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/axi_slave_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/dfilt1_sim_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/dfilt1_sim_values.txt -------------------------------------------------------------------------------- /fpga/tbn/pwm_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/pwm_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_ams_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_ams_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_asg_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_asg_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_dfilt1_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_dfilt1_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_hk_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_hk_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_pid_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_pid_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_pll_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_pll_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_pwm_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_pwm_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_scope_tb.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_scope_tb.sv -------------------------------------------------------------------------------- /fpga/tbn/red_pitaya_scope_tb.v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/red_pitaya_scope_tb.v -------------------------------------------------------------------------------- /fpga/tbn/sys_bus_model.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/fpga/tbn/sys_bus_model.sv -------------------------------------------------------------------------------- /patches/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/README.md -------------------------------------------------------------------------------- /patches/cryptopp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/cryptopp.patch -------------------------------------------------------------------------------- /patches/devicetree.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/devicetree.patch -------------------------------------------------------------------------------- /patches/fw_env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/fw_env.config -------------------------------------------------------------------------------- /patches/lantiq/lantiq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/lantiq/lantiq.c -------------------------------------------------------------------------------- /patches/libjson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/libjson.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/linux-xlnx-xilinx-v2015.4-config.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4-eeprom.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/linux-xlnx-xilinx-v2015.4-eeprom.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4-lantiq.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/linux-xlnx-xilinx-v2015.4-lantiq.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4-wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/linux-xlnx-xilinx-v2015.4-wifi.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4.01-config.patch: -------------------------------------------------------------------------------- 1 | linux-xlnx-xilinx-v2015.4-config.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4.01-eeprom.patch: -------------------------------------------------------------------------------- 1 | linux-xlnx-xilinx-v2015.4-eeprom.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4.01-lantiq.patch: -------------------------------------------------------------------------------- 1 | linux-xlnx-xilinx-v2015.4-lantiq.patch -------------------------------------------------------------------------------- /patches/linux-xlnx-xilinx-v2015.4.01-wifi.patch: -------------------------------------------------------------------------------- 1 | linux-xlnx-xilinx-v2015.4-wifi.patch -------------------------------------------------------------------------------- /patches/lua-nginx-module.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/lua-nginx-module.patch -------------------------------------------------------------------------------- /patches/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/nginx.conf -------------------------------------------------------------------------------- /patches/nginx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/nginx.patch -------------------------------------------------------------------------------- /patches/rtl8192cu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/Kconfig -------------------------------------------------------------------------------- /patches/rtl8192cu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/Makefile -------------------------------------------------------------------------------- /patches/rtl8192cu/clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/clean -------------------------------------------------------------------------------- /patches/rtl8192cu/core/efuse/rtw_efuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/efuse/rtw_efuse.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_ap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_ap.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_br_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_br_ext.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_cmd.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_debug.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_eeprom.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_ieee80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_ieee80211.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_io.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_ioctl_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_ioctl_query.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_ioctl_rtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_ioctl_rtl.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_ioctl_set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_ioctl_set.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_iol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_iol.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_mlme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_mlme.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_mlme_ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_mlme_ext.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_mp.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_mp_ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_mp_ioctl.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_p2p.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_p2p.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_pwrctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_pwrctrl.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_recv.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_rf.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_security.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_security.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_sreset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_sreset.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_sta_mgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_sta_mgt.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_tdls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_tdls.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_wlan_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_wlan_util.c -------------------------------------------------------------------------------- /patches/rtl8192cu/core/rtw_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/core/rtw_xmit.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/HalPwrSeqCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/HalPwrSeqCmd.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/dm.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/dm.h -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/hal_com.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/hal_com.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/hal_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/hal_intf.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/rtl8192c_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/rtl8192c_cmd.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/rtl8192c_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/rtl8192c_dm.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/rtl8192c_mp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/rtl8192c_mp.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/rtl8192c_xmit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/rtl8192c_xmit.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/usb/usb_ops_ce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/usb/usb_ops_ce.c -------------------------------------------------------------------------------- /patches/rtl8192cu/hal/rtl8192c/usb/usb_ops_xp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/hal/rtl8192c/usb/usb_ops_xp.c -------------------------------------------------------------------------------- /patches/rtl8192cu/ifcfg-wlan0: -------------------------------------------------------------------------------- 1 | #DHCP client 2 | DEVICE=wlan0 3 | BOOTPROTO=dhcp 4 | ONBOOT=yes -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192CEHWImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192CEHWImg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192CPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192CPhyCfg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192CPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192CPhyReg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192CUHWImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192CUHWImg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192DEHWImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192DEHWImg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192DPhyCfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192DPhyCfg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192DPhyReg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192DPhyReg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/Hal8192DUHWImg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/Hal8192DUHWImg.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/HalPwrSeqCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/HalPwrSeqCmd.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/autoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/autoconf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/basic_types.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/byteorder/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/byteorder/generic.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/byteorder/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/byteorder/swab.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/byteorder/swabb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/byteorder/swabb.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/circ_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/circ_buf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/cmd_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/cmd_osdep.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_conf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_types.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_types_ce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_types_ce.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_types_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_types_linux.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_types_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_types_sdio.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/drv_types_xp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/drv_types_xp.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/ethernet.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/h2clbk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/h2clbk.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/hal_com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/hal_com.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/hal_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/hal_intf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/ieee80211.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/ieee80211_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/ieee80211_ext.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/if_ether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/if_ether.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/ioctl_cfg80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/ioctl_cfg80211.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/ip.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/linux/wireless.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/linux/wireless.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/mlme_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/mlme_osdep.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/mp_custom_oid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/mp_custom_oid.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/nic_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/nic_spec.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/osdep_ce_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/osdep_ce_service.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/osdep_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/osdep_intf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/osdep_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/osdep_service.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/pci_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/pci_hal.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/pci_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/pci_ops.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/pci_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/pci_osintf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/recv_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/recv_osdep.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_cmd.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_dm.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_event.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_hal.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_led.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_recv.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_rf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_spec.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_sreset.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192c_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192c_xmit.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_cmd.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_dm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_dm.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_hal.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_led.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_recv.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_rf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_spec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_spec.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtl8192d_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtl8192d_xmit.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_android.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ap.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_br_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_br_ext.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_byteorder.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_cmd.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_debug.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_eeprom.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_efuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_efuse.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_event.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ht.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ht.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_io.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ioctl.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ioctl_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ioctl_query.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ioctl_rtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ioctl_rtl.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_ioctl_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_ioctl_set.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_iol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_iol.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_led.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_mlme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_mlme.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_mlme_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_mlme_ext.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_mp.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_mp_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_mp_ioctl.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_mp_phy_regdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_mp_phy_regdef.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_p2p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_p2p.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_pwrctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_pwrctrl.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_qos.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_recv.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_rf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_security.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_sreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_sreset.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_tdls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_tdls.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_version.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/rtw_xmit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/rtw_xmit.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/sta_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/sta_info.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/usb_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/usb_hal.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/usb_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/usb_ops.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/usb_ops_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/usb_ops_linux.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/usb_osintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/usb_osintf.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/usb_vendor_req.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/usb_vendor_req.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/wifi.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/wlan_bssdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/wlan_bssdef.h -------------------------------------------------------------------------------- /patches/rtl8192cu/include/xmit_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/include/xmit_osdep.h -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/ioctl_cfg80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/ioctl_cfg80211.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/ioctl_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/ioctl_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/mlme_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/mlme_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/os_intfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/os_intfs.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/pci_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/pci_intf.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/pci_ops_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/pci_ops_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/recv_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/recv_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/rtw_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/rtw_android.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/usb_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/usb_intf.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/usb_ops_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/usb_ops_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/linux/xmit_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/linux/xmit_linux.c -------------------------------------------------------------------------------- /patches/rtl8192cu/os_dep/osdep_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/os_dep/osdep_service.c -------------------------------------------------------------------------------- /patches/rtl8192cu/runwpa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/runwpa -------------------------------------------------------------------------------- /patches/rtl8192cu/wlan0dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/rtl8192cu/wlan0dhcp -------------------------------------------------------------------------------- /patches/scpi-parser-v1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/scpi-parser-v1.2.patch -------------------------------------------------------------------------------- /patches/scpi-parser-v2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/scpi-parser-v2.1.patch -------------------------------------------------------------------------------- /patches/u-boot-xlnx-xilinx-v2015.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/u-boot-xlnx-xilinx-v2015.4.patch -------------------------------------------------------------------------------- /patches/u-boot.script.buildroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/u-boot.script.buildroot -------------------------------------------------------------------------------- /patches/u-boot.script.debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/patches/u-boot.script.debian -------------------------------------------------------------------------------- /scpi-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/Makefile -------------------------------------------------------------------------------- /scpi-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/README.md -------------------------------------------------------------------------------- /scpi-server/doc/SCPIAPI_commands.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/doc/SCPIAPI_commands.odt -------------------------------------------------------------------------------- /scpi-server/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/Makefile -------------------------------------------------------------------------------- /scpi-server/src/acquire.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/acquire.c -------------------------------------------------------------------------------- /scpi-server/src/acquire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/acquire.h -------------------------------------------------------------------------------- /scpi-server/src/api_cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/api_cmd.c -------------------------------------------------------------------------------- /scpi-server/src/api_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/api_cmd.h -------------------------------------------------------------------------------- /scpi-server/src/apin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/apin.c -------------------------------------------------------------------------------- /scpi-server/src/apin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/apin.h -------------------------------------------------------------------------------- /scpi-server/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/common.c -------------------------------------------------------------------------------- /scpi-server/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/common.h -------------------------------------------------------------------------------- /scpi-server/src/dpin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/dpin.c -------------------------------------------------------------------------------- /scpi-server/src/dpin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/dpin.h -------------------------------------------------------------------------------- /scpi-server/src/generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/generate.c -------------------------------------------------------------------------------- /scpi-server/src/generate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/generate.h -------------------------------------------------------------------------------- /scpi-server/src/scpi-commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/scpi-commands.c -------------------------------------------------------------------------------- /scpi-server/src/scpi-commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/scpi-commands.h -------------------------------------------------------------------------------- /scpi-server/src/scpi-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/scpi-server/src/scpi-server.c -------------------------------------------------------------------------------- /settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/settings.sh -------------------------------------------------------------------------------- /shared/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/Makefile -------------------------------------------------------------------------------- /shared/include/redpitaya/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/include/redpitaya/http.h -------------------------------------------------------------------------------- /shared/include/redpitaya/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/include/redpitaya/system.h -------------------------------------------------------------------------------- /shared/include/redpitaya/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/include/redpitaya/version.h -------------------------------------------------------------------------------- /shared/libredpitaya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/libredpitaya/Makefile -------------------------------------------------------------------------------- /shared/libredpitaya/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/libredpitaya/http.c -------------------------------------------------------------------------------- /shared/libredpitaya/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HrRossi/RedPitaya/HEAD/shared/libredpitaya/system.c --------------------------------------------------------------------------------