From: Dave Platt Date: Sat, 28 Jan 2023 04:37:53 +0000 (-0800) Subject: kingst-la2016: add another supported LA2016 model (bytes 0x0b 0x10) X-Git-Url: http://sigrok.org/gitweb/?a=commitdiff_plain;h=e7c7aa119d49c9a8f25cb32858c74bfe5a4efb23;p=libsigrok.git kingst-la2016: add another supported LA2016 model (bytes 0x0b 0x10) Add the 11 (16) magic bytes combination (in hex: 0x0b 0x10) which adds a more recent Kingst LA2016 device to the list of supported models. This addresses the device identification part of bug #1825. --- diff --git a/src/hardware/kingst-la2016/protocol.c b/src/hardware/kingst-la2016/protocol.c index d5ae567e..ace0cd51 100644 --- a/src/hardware/kingst-la2016/protocol.c +++ b/src/hardware/kingst-la2016/protocol.c @@ -54,6 +54,7 @@ static const struct kingst_model models[] = { { 0x08, 0x00, "LA2016", "la2016a1", SR_MHZ(200), 16, 1, 0, }, { 0x09, 0x00, "LA1016", "la1016a1", SR_MHZ(100), 16, 1, 0, }, { 0x0a, 0x00, "LA1010", "la1010a2", SR_MHZ(100), 16, 0, SR_MHZ(800), }, + { 0x0b, 0x10, "LA2016", "la2016a2", SR_MHZ(200), 16, 1, 0, }, { 0x0c, 0x10, "LA5016", "la5016a2", SR_MHZ(500), 16, 2, SR_MHZ(800), }, { 0x0c, 0x00, "LA5016", "la5016a2", SR_MHZ(500), 16, 2, SR_MHZ(800), }, { 0x41, 0x00, "LA5016", "la5016a1", SR_MHZ(500), 16, 2, SR_MHZ(800), },