Page 1 of 1
bluescreen problem
Posted: Wed Feb 12, 2014 1:34 pm
by soshini
when i load fpga v0.0.3 on bladerf bluescreen appear
plz help
Re: bluescreen problem
Posted: Sun Feb 16, 2014 10:33 am
by jynik
Did you get past this issue? Sounds like a driver/card problem.
To get allow folks to understand your situation and provide insight, could you provide the following?
- OS version
- USB3 controller and are you using its latest drivers
- libbladeRF and bladeRF-cli version (run 'bladeRF-cli -i' then run the 'version' command)
Any other details pertaining to the
Troubleshooting wiki page would be good to share as well.
Re: bluescreen problem
Posted: Mon Feb 17, 2014 11:07 am
by soshini
excuse me
when i flash fx3 with fw 1.6.1 this happens(bladeRF-cli -f bladeRF_fw_v1.6.1.img)
but when i use interactive mode to flash (load fx3 bladeRF_fw_v1.6.1.img) it works without problem
bladeRF-cli version: 0.10.3-git
libbladeRF version: 0.12.1-git
windows 7 64 bit ultimate
i use usb2 port
Re: bluescreen problem
Posted: Sat Mar 01, 2014 11:56 am
by robert.ghilduta
Thanks for reporting this, I was finally able to reproduce and fix it. The Windows installer should now have this fix as well.
You can find out more about the fix at
https://github.com/Nuand/bladeRF/commit ... 84fe938c3c
Re: bluescreen problem
Posted: Fri May 09, 2014 1:29 am
by yoshimifuj
I experienced bluescreen with Windows8.1 Professional x64
bladeRF> version
bladeRF-cli version: 0.10.3-git
libbladeRF version: 0.12.1-git
Error: File or device I/O failure
Windows' bluescreen said 'WDF_VIOLATION'.
Re: bluescreen problem
Posted: Fri May 09, 2014 6:48 pm
by jynik
yoshimifuj,
Could you please provide more information regarding what's occurring when the bluescreen happens? From what you said below, it appears that the File/device I/O failure occured when you ran the 'version' command -- is this true?
Do you know what firmware version you're running? Have you tried upgrading your firmware (the latest is v1.6.1, obtained
here), as described
on this wiki page?
- Jon
Re: bluescreen problem
Posted: Tue May 13, 2014 4:00 am
by yoshimifuj
Jon,
It happened when I was flashing the firmware.
I'm using the latest version of the firmware.
I can't re-produce it today.
Yoshimi
Re: bluescreen problem
Posted: Tue May 13, 2014 6:05 am
by jynik
Hi Yoshimi,
Given that it was while you were flashing firmware, I believe the issue you were seeing was the same one soshini was reporting earlier in this thread. As you see in the previous post, Robert added a workaround for this in
commit b909236f, which corresponds to libbladeRF v0.14.0 and bladeRF-cli v0.10.6.
The underlying problem was that after flashing the firmware, the bladeRF was sent a "device reset" command. At this point, it is no longer possible to close the device handle -- in Windows (when using the libusbK driver), attempting to close the device handle that the device is no longer associated with appears to result in a bluescreen.
Robert's change removes the attempt to close the device handle. More recent versions of the code no longer send the device recent command, and instead instruct the user to power cycle the device for the firmware upgrade to take a effect. This has the slight advantage of not leaking memory (due to not being able to close the device handle).
I would suggest updating to a more recent codebase...if not for this issue, for a number of other fixes that have made it in over the recent weeks.
- Jon