You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
I have some problems with using the project.
First, cmd ". ../setenv" doesnt work, and I cant understand why, and then the project is built incorrectly, so there's no chance to start ./vhcibridge. So I'm using "python vhcibridge.py" instead.
Second problem is to connect to board. It is an error "'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)"
In your code you're using a variable named 'serdev' and the path is:
"serdev = '/dev/serial/by-id/usb-FTDI_UMFT234XD_FTWJO0MJ-if00-port0
serdev = 'spy://%s?file=serial.log' % serdev"
where FTDI is USB to UART bridge and the second string is your local server(?). When I'm using only /dev/serial/..., hence the second problem.
Please help me understand what I'm doing wrong.
The text was updated successfully, but these errors were encountered:
This project is not meant to be a ready tool to be used by someone who is not able to do some programming/hacking and read source code. It is not finished in that way. It is at the proof of concept stage. This project may not be for you.
The construct "spy://serial?file=serial.log" spies on the serial port communications and creates a log file named serial.log. It's use is optional.
The string "/dev/serial/by-id/usb-FTDI_UMFT234XD_FTWJO0MJ-if00-port0" identifies an extra serial device I am using, connected to pins: 17, 16, 5, 18. See uart.c file for more details.
This string will mean nothing to you. You need to use the name of your device.
Hi
I have some problems with using the project.
First, cmd ". ../setenv" doesnt work, and I cant understand why, and then the project is built incorrectly, so there's no chance to start ./vhcibridge. So I'm using "python vhcibridge.py" instead.
Second problem is to connect to board. It is an error "'device reports readiness to read but returned no data '
SerialException: device reports readiness to read but returned no data (device disconnected or multiple access on port?)"
In your code you're using a variable named 'serdev' and the path is:
"serdev = '/dev/serial/by-id/usb-FTDI_UMFT234XD_FTWJO0MJ-if00-port0
serdev = 'spy://%s?file=serial.log' % serdev"
where FTDI is USB to UART bridge and the second string is your local server(?). When I'm using only /dev/serial/..., hence the second problem.
Please help me understand what I'm doing wrong.
The text was updated successfully, but these errors were encountered: