From a4aa0a19c9eea418a99db78cf6a9a88cd1291fd5 Mon Sep 17 00:00:00 2001 From: "Ching-Hsin,Lee" Date: Thu, 1 Aug 2024 22:11:20 +0800 Subject: [PATCH] Adding OTA handler for incomming packets --- examples/evkbmimxrt1060/test/integration_test.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/examples/evkbmimxrt1060/test/integration_test.c b/examples/evkbmimxrt1060/test/integration_test.c index b077002..21600c5 100644 --- a/examples/evkbmimxrt1060/test/integration_test.c +++ b/examples/evkbmimxrt1060/test/integration_test.c @@ -117,6 +117,17 @@ static void ThreadWrapper( void * pParam ) /*-----------------------------------------------------------*/ +/* Adding this function to use the common MQTT agent task. */ +bool otaDemo_handleIncomingMQTTMessage( char * topic, + size_t topicLength, + uint8_t * message, + size_t messageLength ) +{ + return false; +} + +/*-----------------------------------------------------------*/ + int FRTest_GenerateRandInt() { static bool first = true;