HPS

Results 106 comments of HPS

GDB is your friend, look at this: ``` (gdb) print *it $1 = {type = PKGDB_IT_LOCAL, db = 0x800c302d0, un = {remote = 0x800c6f008, local = {sqlite = 0x800c6f008, stmt...

I have installed headsetcontrol-2.6, and the battery request is timing out. But switching the LED off works! Here is a USB trace from the control endpoint: ``` 12:32:56.138922 usbus0.6 SUBM-CTRL-EP=00000080,SPD=FULL,NFR=2,SLEN=8,IVAL=0...

Found the solution (this is on FreeBSD) ``` sysctl hw.usb.uaudio.handle_hid=0 ``` Looks like there is a conflict receiving HID packets on the interrupt endpoint, so the status packet gets lost....

From what I can see, FreeBSD sets a variable called CMAKE_PREFIX_PATH. If you could use that, would be great! `/usr/ports/Mk/Uses/localbase.mk:CONFIGURE_ENV+= CMAKE_PREFIX_PATH="${LOCALBASE}"`

Try to add: `#include ` To resolve the missing sockaddr_in/in6 structure.

Hi there, There is something called "Latin-1 Supplement": https://www.wikidata.org/wiki/Q574509 If you convert those characters to proper UTF-8 codes first, then they will in turn be converted to proper UTF-16 codes,...

@emaste : I have not observed any problems in FreeBSD-14-main as of recently. Are these patches imported into our code-base? If yes, then this issue can be closed.

Have you tested how common CPUs process multiplication by zero when using floating point? Are there speed tricks in there?