Infineon: Add support for CYW89829 devices, improve swap with status algorithm speed
diff --git a/boot/cypress/platforms.mk b/boot/cypress/platforms.mk
index 56421c2..b8466ea 100644
--- a/boot/cypress/platforms.mk
+++ b/boot/cypress/platforms.mk
@@ -25,10 +25,10 @@
include host.mk
-# supported platforms
+# supported platforms list
PSOC_06X := PSOC_061_2M PSOC_061_1M PSOC_061_512K PSOC_062_2M PSOC_062_1M PSOC_062_512K PSOC_063_1M
XMC7000 := XMC7200 XMC7100
-PLATFORMS := $(PSOC_06X) CYW20829 $(XMC7000)
+PLATFORMS := $(PSOC_06X) CYW20829 CYW89829 $(XMC7000)
ifneq ($(filter $(PLATFORM), $(PLATFORMS)),)
else
@@ -39,6 +39,8 @@
FAMILY := PSOC6
else ifeq ($(PLATFORM), CYW20829)
FAMILY := CYW20829
+else ifeq ($(PLATFORM), CYW89829)
+FAMILY := CYW20829
else ifeq ($(PLATFORM), $(filter $(PLATFORM), $(XMC7000)))
FAMILY := XMC7000
endif