Skip to content

Commit

Permalink
refactor(plc4go/ads): Refactoring of the go ADS drier
Browse files Browse the repository at this point in the history
- Made writing of Structs work for ADS
  • Loading branch information
chrisdutz committed Nov 25, 2022
1 parent 1612342 commit 9c1296b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 11 deletions.
26 changes: 21 additions & 5 deletions plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -630,8 +630,9 @@ public enum KnxManufacturer
M_ZHONGYUNXINZHIKONGGUJITUANYOUXIANGONGSI = 603,
M_STUHL_REGELSYSTEME_GMBH = 604,
M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD = 605,
M_ABB___RESERVED = 606,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 607,
M_GAIMEX = 606,
M_ABB___RESERVED = 607,
M_BUSCH_JAEGER_ELEKTRO___RESERVED = 608,
}

public static class KnxManufacturerInfo
Expand Down Expand Up @@ -2333,10 +2334,13 @@ public static class KnxManufacturerInfo
case KnxManufacturer.M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD: { /* '605' */
return 663;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '606' */
case KnxManufacturer.M_GAIMEX: { /* '606' */
return 664;
}
case KnxManufacturer.M_ABB___RESERVED: { /* '607' */
return 43954;
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '607' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '608' */
return 43959;
}
case KnxManufacturer.M_SCHNEIDER_ELECTRIC_INDUSTRIES_SAS: { /* '61' */
Expand Down Expand Up @@ -4167,10 +4171,13 @@ public static string Name(this KnxManufacturer value)
case KnxManufacturer.M_SHENZHEN_GLUCK_TECHNOLOGY_CO___LTD: { /* '605' */
return "Shenzhen Gluck Technology Co., LTD";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '606' */
case KnxManufacturer.M_GAIMEX: { /* '606' */
return "Gaimex";
}
case KnxManufacturer.M_ABB___RESERVED: { /* '607' */
return "ABB - reserved";
}
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '607' */
case KnxManufacturer.M_BUSCH_JAEGER_ELEKTRO___RESERVED: { /* '608' */
return "Busch-Jaeger Elektro - reserved";
}
case KnxManufacturer.M_SCHNEIDER_ELECTRIC_INDUSTRIES_SAS: { /* '61' */
Expand Down

0 comments on commit 9c1296b

Please sign in to comment.