You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by sr...@apache.org on 2023/06/05 08:36:17 UTC

[plc4x] 01/02: feat(knx): update vendor

This is an automated email from the ASF dual-hosted git repository.

sruehl pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit c29ea5b7e06dc05460e1d7893ef64f677038fc78
Author: Sebastian Rühl <sr...@apache.org>
AuthorDate: Mon Jun 5 10:35:36 2023 +0200

    feat(knx): update vendor
---
 .../knxnetip/readwrite/model/KnxManufacturer.go    | 26 +++++++++++++++++-----
 .../java/knxnetip/readwrite/KnxManufacturer.java   |  6 +++--
 2 files changed, 25 insertions(+), 7 deletions(-)

diff --git a/plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go b/plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go
index 3e3e380a49..a8507df789 100644
--- a/plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go
+++ b/plc4go/protocols/knxnetip/readwrite/model/KnxManufacturer.go
@@ -673,8 +673,9 @@ const (
 	KnxManufacturer_M_SUZHOU_HONGYUN_INTELLIGENT_TECHNOLOGYCO___LTD      KnxManufacturer = 630
 	KnxManufacturer_M_PASSIV_ENERGIE_GMBH                                KnxManufacturer = 631
 	KnxManufacturer_M_PAYNE_TECHNOLOGIES_LTD                             KnxManufacturer = 632
-	KnxManufacturer_M_ABB___RESERVED                                     KnxManufacturer = 633
-	KnxManufacturer_M_BUSCH_JAEGER_ELEKTRO___RESERVED                    KnxManufacturer = 634
+	KnxManufacturer_M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_  KnxManufacturer = 633
+	KnxManufacturer_M_ABB___RESERVED                                     KnxManufacturer = 634
+	KnxManufacturer_M_BUSCH_JAEGER_ELEKTRO___RESERVED                    KnxManufacturer = 635
 )
 
 var KnxManufacturerValues []KnxManufacturer
@@ -1315,6 +1316,7 @@ func init() {
 		KnxManufacturer_M_SUZHOU_HONGYUN_INTELLIGENT_TECHNOLOGYCO___LTD,
 		KnxManufacturer_M_PASSIV_ENERGIE_GMBH,
 		KnxManufacturer_M_PAYNE_TECHNOLOGIES_LTD,
+		KnxManufacturer_M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_,
 		KnxManufacturer_M_ABB___RESERVED,
 		KnxManufacturer_M_BUSCH_JAEGER_ELEKTRO___RESERVED,
 	}
@@ -3700,10 +3702,14 @@ func (e KnxManufacturer) Number() uint16 {
 		}
 	case 633:
 		{ /* '633' */
-			return 43954
+			return 690
 		}
 	case 634:
 		{ /* '634' */
+			return 43954
+		}
+	case 635:
+		{ /* '635' */
 			return 43959
 		}
 	case 64:
@@ -6258,10 +6264,14 @@ func (e KnxManufacturer) Name() string {
 		}
 	case 633:
 		{ /* '633' */
-			return "ABB - reserved"
+			return "Guangdong Yozewit Intelligent Technology Co.,Ltd."
 		}
 	case 634:
 		{ /* '634' */
+			return "ABB - reserved"
+		}
+	case 635:
+		{ /* '635' */
 			return "Busch-Jaeger Elektro - reserved"
 		}
 	case 64:
@@ -7626,8 +7636,10 @@ func KnxManufacturerByValue(value uint16) (enum KnxManufacturer, ok bool) {
 	case 632:
 		return KnxManufacturer_M_PAYNE_TECHNOLOGIES_LTD, true
 	case 633:
-		return KnxManufacturer_M_ABB___RESERVED, true
+		return KnxManufacturer_M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_, true
 	case 634:
+		return KnxManufacturer_M_ABB___RESERVED, true
+	case 635:
 		return KnxManufacturer_M_BUSCH_JAEGER_ELEKTRO___RESERVED, true
 	case 64:
 		return KnxManufacturer_M_BISCHOFF_ELEKTRONIK, true
@@ -8901,6 +8913,8 @@ func KnxManufacturerByName(value string) (enum KnxManufacturer, ok bool) {
 		return KnxManufacturer_M_PASSIV_ENERGIE_GMBH, true
 	case "M_PAYNE_TECHNOLOGIES_LTD":
 		return KnxManufacturer_M_PAYNE_TECHNOLOGIES_LTD, true
+	case "M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_":
+		return KnxManufacturer_M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_, true
 	case "M_ABB___RESERVED":
 		return KnxManufacturer_M_ABB___RESERVED, true
 	case "M_BUSCH_JAEGER_ELEKTRO___RESERVED":
@@ -10234,6 +10248,8 @@ func (e KnxManufacturer) PLC4XEnumName() string {
 		return "M_PASSIV_ENERGIE_GMBH"
 	case KnxManufacturer_M_PAYNE_TECHNOLOGIES_LTD:
 		return "M_PAYNE_TECHNOLOGIES_LTD"
+	case KnxManufacturer_M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_:
+		return "M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_"
 	case KnxManufacturer_M_ABB___RESERVED:
 		return "M_ABB___RESERVED"
 	case KnxManufacturer_M_BUSCH_JAEGER_ELEKTRO___RESERVED:
diff --git a/plc4j/drivers/knxnetip/src/main/generated/org/apache/plc4x/java/knxnetip/readwrite/KnxManufacturer.java b/plc4j/drivers/knxnetip/src/main/generated/org/apache/plc4x/java/knxnetip/readwrite/KnxManufacturer.java
index c8d02b12c5..4fa19d0ada 100644
--- a/plc4j/drivers/knxnetip/src/main/generated/org/apache/plc4x/java/knxnetip/readwrite/KnxManufacturer.java
+++ b/plc4j/drivers/knxnetip/src/main/generated/org/apache/plc4x/java/knxnetip/readwrite/KnxManufacturer.java
@@ -726,9 +726,11 @@ public enum KnxManufacturer {
       (int) 630, (int) 687, (String) "Suzhou Hongyun Intelligent TechnologyCo., Ltd"),
   M_PASSIV_ENERGIE_GMBH((int) 631, (int) 688, (String) "Passiv Energie GmbH"),
   M_PAYNE_TECHNOLOGIES_LTD((int) 632, (int) 689, (String) "Payne Technologies Ltd"),
-  M_ABB___RESERVED((int) 633, (int) 43954, (String) "ABB - reserved"),
+  M_GUANGDONG_YOZEWIT_INTELLIGENT_TECHNOLOGY_CO__LTD_(
+      (int) 633, (int) 690, (String) "Guangdong Yozewit Intelligent Technology Co.,Ltd."),
+  M_ABB___RESERVED((int) 634, (int) 43954, (String) "ABB - reserved"),
   M_BUSCH_JAEGER_ELEKTRO___RESERVED(
-      (int) 634, (int) 43959, (String) "Busch-Jaeger Elektro - reserved");
+      (int) 635, (int) 43959, (String) "Busch-Jaeger Elektro - reserved");
   private static final Map<Integer, KnxManufacturer> map;
 
   static {