From 1137659684a7a25d3efbe57639b19de69d258b8c Mon Sep 17 00:00:00 2001 From: Tobiasgraf <4622393+tobiasgraf@users.noreply.github.com> Date: Fri, 3 Nov 2023 15:49:09 +0100 Subject: [PATCH] Fix Endpoint Definitions for cc32xx example (#30199) Definitions dont match the definition in the zap file. --- examples/air-purifier-app/cc32xx/main/AppTask.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/air-purifier-app/cc32xx/main/AppTask.cpp b/examples/air-purifier-app/cc32xx/main/AppTask.cpp index fa112c1ee23a21..e753e5ac4aed8f 100644 --- a/examples/air-purifier-app/cc32xx/main/AppTask.cpp +++ b/examples/air-purifier-app/cc32xx/main/AppTask.cpp @@ -62,8 +62,8 @@ extern void DisplayBanner(); #define AIR_PURIFIER_ENDPOINT 1 #define AIR_QUALITY_SENSOR_ENDPOINT 2 -#define RELATIVE_HUMIDITY_SENSOR_ENDPOINT 3 -#define TEMPERATURE_SENSOR_ENDPOINT 4 +#define TEMPERATURE_SENSOR_ENDPOINT 3 +#define RELATIVE_HUMIDITY_SENSOR_ENDPOINT 4 // Added the below three for DNS Server Initialization using namespace ::chip;