ant-plus-next / DebugOptions
Represents the options for configuring debugging levels for USB communication. This interface allows setting different levels of debugging information for development or troubleshooting purposes.
DebugOptions
// Example usage of DebugOptions
const debugOptions: DebugOptions = {
usbDebugLevel: 3, // Set the USB debug level to 3 for detailed debug output.
throwLibUSBException: true // Throw exceptions on USB errors.
};