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
Thank you for giving feedback to the stlink project.
In order to allow developers and other contributors to isolate and target your respective issue, please take some time to fill out each of the following items appropriate to your specific problem:
Target chip (and board if applicable): [ALL] (e.g STM32F402VG)
Futher we kindly ask you to describe the detected problem as detailed as possible and to add debug output if available, by using the following template:
The stlink library calls libusb_set_debug() on platforms with LIBUSB_API_VERSION < 0x01000106. FreeBSD includes its own implementation of the libusb API. The FreeBSD implementation of libusb_set_debug() enables very verbose tracing instead of normal logging suitable for everday use. It logs every libusb function call or USB transfer to standard output depending the enabled flags. This drowns out all normal output.
For example a simple st-info --probe returns this (on FreeBSD)
Commandline-Output:
Thank you for giving feedback to the stlink project.
In order to allow developers and other contributors to isolate and target your respective issue, please take some time to fill out each of the following items appropriate to your specific problem:
st-info
,st-flash
,st-util
)Futher we kindly ask you to describe the detected problem as detailed as possible and to add debug output if available, by using the following template:
The stlink library calls
libusb_set_debug()
on platforms with LIBUSB_API_VERSION < 0x01000106. FreeBSD includes its own implementation of the libusb API. The FreeBSD implementation oflibusb_set_debug()
enables very verbose tracing instead of normal logging suitable for everday use. It logs every libusb function call or USB transfer to standard output depending the enabled flags. This drowns out all normal output.For example a simple st-info --probe returns this (on FreeBSD)
Commandline-Output:
Expected/description:
I expected this instead of all the LIBUSB_* tracing:
I came up with a patch to
logging.c
to silence libusb on FreeBSD by default (#993).NOTICE: This bug report may be closed without further notice, if not enough information is provided!
Thank you for your support.
The stlink project maintainers
The text was updated successfully, but these errors were encountered: