|
From: Dan S. <dds...@us...> - 2006-07-05 20:51:37
|
Update of /cvsroot/javax-usb/javax-usb-ri-linux/lib In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv2299 Modified Files: javax.usb.properties Log Message: update the fields in the javax.usb.properties file to add new fields for a common ri update. Index: javax.usb.properties =================================================================== RCS file: /cvsroot/javax-usb/javax-usb-ri-linux/lib/javax.usb.properties,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** javax.usb.properties 12 May 2005 19:15:07 -0000 1.12 --- javax.usb.properties 5 Jul 2006 20:51:30 -0000 1.13 *************** *** 36,39 **** --- 36,75 ---- com.ibm.jusb.UsbDeviceImp.queueSubmissions = true + # This property causes the common implementation to enforce short packet error conditions. + # If set, it checks each UsbIrp for a short packet condition upon completion, and if + # one is detected with no exception (and the accept short packet flag set to false), + # it creates a UsbShortPacketException and sets it on the UsbIrp. + # This should only be set to true for platform implementations that do not support/create + # short packet exceptions. + #com.ibm.jusb.UsbIrpImp.createShortPacketException = false + + # This property sets the default UsbTracer implementation. The default is the NullUsbTracer, + # which does no tracing at all. These implementations are provided, or you can create your own: + # com.ibm.jusb.util.NullUsbTracer + # com.ibm.jusb.util.StandardOutUsbTracer + # com.ibm.jusb.util.StandardErrorUsbTracer + #com.ibm.jusb.util.UsbTracer=com.ibm.jusb.util.NullUsbTracer + + # These set the default name and level of the "global" UsbTracer object. The level may be specified + # as any of these defines: + # TRACE_CRITICAL + # TRACE_ERROR + # TRACE_WARN + # TRACE_NOTICE + # TRACE_INFO + # TRACE_DEBUG + #com.ibm.jusb.util.UsbTracer.global.name=Main UsbTracer + #com.ibm.jusb.util.UsbTracer.global.level=TRACE_DEBUG + + # This sets the level of messages that the StandardOutUsbTracer prints. Trace messages with + # lower priority than this will not be printed. This may be specified as any of the + # level defines listed above. + #com.ibm.jusb.util.StandardOutUsbTracer.currentLevel=TRACE_DEBUG + + # This sets the level of messages that the StandardErrorUsbTracer prints. Trace messages with + # lower priority than this will not be printed. This may be specified as any of the + # level defines listed above. + #com.ibm.jusb.util.StandardErrorUsbTracer.currentLevel=TRACE_DEBUG + ################################################################################ # Properties required/used by javax.usb Linux Implementation |