korad-kaxxxxp: Add support for Korad KD3005P

This commit is contained in:
Holger Müller 2017-11-30 21:53:40 +01:00 committed by Uwe Hermann
parent b2e9b6d48a
commit 41802ca4c0
2 changed files with 3 additions and 0 deletions

View File

@ -54,6 +54,8 @@ static const struct korad_kaxxxxp_model models[] = {
/* Sometimes the KA3005P has an extra 0x01 after the ID. */ /* Sometimes the KA3005P has an extra 0x01 after the ID. */
{KORAD_KA3005P_0X01, "Korad", "KA3005P", {KORAD_KA3005P_0X01, "Korad", "KA3005P",
"KORADKA3005PV2.0\x01", 1, {0, 31, 0.01}, {0, 5, 0.001}}, "KORADKA3005PV2.0\x01", 1, {0, 31, 0.01}, {0, 5, 0.001}},
{KORAD_KD3005P, "Korad", "KD3005P",
"KORAD KD3005P V2.0", 1, {0, 31, 0.01}, {0, 5, 0.001}},
ALL_ZERO ALL_ZERO
}; };

View File

@ -35,6 +35,7 @@ enum {
VELLEMAN_LABPS3005D, VELLEMAN_LABPS3005D,
KORAD_KA3005P, KORAD_KA3005P,
KORAD_KA3005P_0X01, KORAD_KA3005P_0X01,
KORAD_KD3005P,
/* Support for future devices with this protocol. */ /* Support for future devices with this protocol. */
}; };