Page 1 of 1

None of the sample Web applications are connecting?

Posted: Fri Jan 22, 2021 5:19 am
by Magician
Hello, I tried a few of the sample applications and none of them are connecting
Any idea on how to start troubleshooting this?

Here are the commands for the last web app I tried:
rw
cat /opt/redpitaya/fpga/fpga_0.94.bit > /dev/xdevcfg
cd /root/
git clone https://github.com/RedPitaya/RedPitaya.git
cd /opt/redpitaya/www/apps
cp -r /root/RedPitaya/Examples/web-tutorial/1.read_voltage_gain_offset ./read_voltage_gain_offset
cd read_voltage_gain_offset
make INSTALL_DIR=/opt/redpitaya

http://rp-f046c0.local/read_voltage_gai ... /?type=run
Connecting....

Kind regards
Andreas

Re: None of the sample Web applications are connecting?

Posted: Fri Jan 22, 2021 8:34 pm
by Magician
Woohoo, it works!!
<TLDR> check /var/log/redpitaya_nginx/debug.log </TLDR>

After looking at the
/var/log/redpitaya_nginx error logs with

Code: Select all

tail -f debug.log
it was obvious that something was looking for "5.read_voltage_gain_offset" not "read_voltage_gain_offset"

Code: Select all

mv read_voltage_gain_offset 5.read_voltage_gain_offset
fixed the problem