-
Notifications
You must be signed in to change notification settings - Fork 160
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imx_uart with Raspberry Pi #116
Comments
Hello @MunawarAli1993 , I had also a problem with imx_uart on RPI3 as a host machine. Try to run htop in a separate terminal. Do you see that imx_uart, within the toradex script, simply gets "frozen" as soon as it starts? Do you also see simultaneously Undervoltage Warnings in the kernel log? |
Hi @sirop , yes, I have used toradex script. when I run the script, the imx_uart freezes and does not proceed further. I did not check the under voltage warnings. If you find any solution, kindly share it with me. |
Hi @MunawarAli1993, so you mean, imx_art works on https://up-shop.org/up-board-series.html board? As for arm processors: I do not know if your general hypothesis "toradex script does not work with arm processor" is correct. Maybe, also try a 32 bit version of imx_uart on an 64 bit ARM with multilib support? I do not know, probably, not worth the fuss. P.S. Who is so crazy to make you use RPI? Is it Hoffrichter in Schwerin? |
imx_uart assigns the return value of getopt_long() to a char variable. On systems that default to unsigned char (e.g. arm, aarch64, powerpc, s390) this causes the termination return value -1 to be read as 0xff and the option parsing loop never terminates, causing the program to get immediately stuck. Fix that by using an int which is the actual return type of getopt_long(). imx_usb already correctly uses int. This should fix issue boundarydevices#116. Signed-off-by: Anssi Hannula <[email protected]>
imx_uart assigns the return value of getopt_long() to a char variable. On systems that default to unsigned char (e.g. arm, aarch64, powerpc, s390) this causes the termination return value -1 to be read as 0xff and the option parsing loop never terminates, causing the program to get immediately stuck. Fix that by using an int which is the actual return type of getopt_long(). imx_usb already correctly uses int. Fixes boundarydevices#116. Signed-off-by: Anssi Hannula <[email protected]>
imx_uart assigns the return value of getopt_long() to a char variable. On systems that default to unsigned char (e.g. arm, aarch64, powerpc, s390) this causes the termination return value -1 to be read as 0xff and the option parsing loop never terminates, causing the program to get immediately stuck. Fix that by using an int which is the actual return type of getopt_long(). imx_usb already correctly uses int. Fixes boundarydevices#116. Signed-off-by: Anssi Hannula <[email protected]>
Hi everyone,
I am trying to flash u-boot to colibri VF50 using RPi3 as host machine.
Is it possible to do that using imx_uart binary file?
I compiled the code in my R pi and generated the binary file, but it does not seem working.
Kindly help me if anybody has any idea about this, I will really appreciate it.
Kind regards,
Munawar Ali
The text was updated successfully, but these errors were encountered: