Work well with the Dynastream ANTUSB-m, from Jan Klemkow.
authormpi <mpi@openbsd.org>
Wed, 22 Aug 2018 15:32:49 +0000 (15:32 +0000)
committermpi <mpi@openbsd.org>
Wed, 22 Aug 2018 15:32:49 +0000 (15:32 +0000)
share/man/man4/uscom.4
sys/dev/usb/uscom.c

index 31dc808..8b078a2 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: uscom.4,v 1.2 2014/03/25 07:10:34 jmc Exp $
+.\"    $OpenBSD: uscom.4,v 1.3 2018/08/22 15:32:49 mpi Exp $
 .\"
 .\" Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
 .\"
@@ -14,7 +14,7 @@
 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: March 25 2014 $
+.Dd $Mdocdate: August 22 2018 $
 .Dt USCOM 4
 .Os
 .Sh NAME
@@ -34,6 +34,7 @@ driver:
 .Bd -literal -offset indent
 HP 39G
 HP 49G
+Dynastream ANT USB-m Stick
 .Ed
 .Sh SEE ALSO
 .Xr tty 4 ,
index 69d5157..54dab86 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uscom.c,v 1.5 2016/09/02 09:14:59 mpi Exp $   */
+/*     $OpenBSD: uscom.c,v 1.6 2018/08/22 15:32:49 mpi Exp $   */
 
 /*
  * Copyright (c) 2006 Jonathan Gray <jsg@openbsd.org>
@@ -52,7 +52,8 @@ struct ucom_methods uscom_methods = {
 };
 
 static const struct usb_devno uscom_devs[] = {
-       { USB_VENDOR_HP,        USB_PRODUCT_HP_HPX9GP }
+       { USB_VENDOR_HP,                USB_PRODUCT_HP_HPX9GP },
+       { USB_VENDOR_DYNASTREAM,        USB_PRODUCT_DYNASTREAM_ANTUSBM }
 };
 
 int     uscom_match(struct device *, void *, void *);