rfcat icon indicating copy to clipboard operation
rfcat copied to clipboard

Error on exit: "RESETUP set from recv thread"

Open ChazTuna opened this issue 11 months ago • 2 comments

In March 2024 Upgraded to use Python 3. Works great with both rfcat -r and python programs. When either exits I get:

RESETUP set from recv thread** followed by for instance: libusb: debug [libusb_get_device_list] or libusb: debug [libusb_get_device_descriptor] Segmentation fault

Anyone else see this too?

ChazTuna avatar Mar 21 '24 22:03 ChazTuna

Fixed this for my python program using: `import os

os._exit(0)`

Instead of sys.exit(0)

No exit error "RESETUP set from recv thread" Might be brute force to create a graceful exit...

ChazTuna avatar Mar 22 '24 16:03 ChazTuna

Ah I will have to try that. I was just ignoring "RESETUP set from recv thread" because it had no impact on the actual tx/rx.

Crsarmv7l avatar Jun 11 '24 14:06 Crsarmv7l