New TEMPerHUM sensor; reported by Mikolaj Kucharski on bugs@
authormiod <miod@openbsd.org>
Fri, 8 Dec 2023 06:33:48 +0000 (06:33 +0000)
committermiod <miod@openbsd.org>
Fri, 8 Dec 2023 06:33:48 +0000 (06:33 +0000)
share/man/man4/ugold.4
sys/dev/usb/ugold.c

index 78e328a..43df089 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: ugold.4,v 1.8 2023/11/30 20:08:23 miod Exp $
+.\"    $OpenBSD: ugold.4,v 1.9 2023/12/08 06:33:48 miod Exp $
 .\"
 .\" Copyright (c) 2013 Takayoshi SASANO <sasano@openbsd.org>
 .\" Copyright (c) 2013 Martin Pieuchot <mpi@openbsd.org>
@@ -16,7 +16,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: November 30 2023 $
+.Dd $Mdocdate: December 8 2023 $
 .Dt UGOLD 4
 .Os
 .Sh NAME
@@ -41,6 +41,7 @@ driver:
 .It Li "RDing TEMPerGold_V3.4" Ta "1 Temperature"
 .It Li "RDing TEMPerHum1V1.0" Ta "1 Temperature and 1 Humidity"
 .It Li "RDing TEMPerHum1V1.2" Ta "1 Temperature and 1 Humidity"
+.It Li "RDing TEMPerHUM_V3.9" Ta "1 Temperature and 1 Humidity"
 .It Li "RDing TEMPerHUM_V4.0" Ta "1 Temperature and 1 Humidity"
 .It Li "RDing TEMPer1F_H1V1.5F" Ta "1 Temperature and 1 Humidity"
 .It Li "RDing TEMPerX_V3.1" Ta "1 Temperature and 1 Humidity"
index a5bd162..9d1a30b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ugold.c,v 1.24 2023/11/30 20:08:23 miod Exp $   */
+/*     $OpenBSD: ugold.c,v 1.25 2023/12/08 06:33:48 miod Exp $   */
 
 /*
  * Copyright (c) 2013 Takayoshi SASANO <uaa@openbsd.org>
@@ -453,7 +453,8 @@ ugold_si700x_type(struct ugold_softc *sc)
        }
        if (sc->sc_model_len >= 9 &&
            memcmp(sc->sc_model, "TEMPerHUM", 9) == 0) {
-               if (memcmp(sc->sc_model + 9, "_V4.0  ", 16 - 9) == 0) {
+               if (memcmp(sc->sc_model + 9, "_V3.9  ", 16 - 9) == 0 ||
+                   memcmp(sc->sc_model + 9, "_V4.0  ", 16 - 9) == 0) {
                        sc->sc_type = UGOLD_TYPE_TEMPERX;
                        descr = "temperx (temperature and humidity)";
                        goto identified;