Skip to content

Commit

Permalink
Adding OTA handler for incomming packets
Browse files Browse the repository at this point in the history
  • Loading branch information
chinglee-iot committed Aug 1, 2024
1 parent 3837f16 commit a4aa0a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions examples/evkbmimxrt1060/test/integration_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit a4aa0a1

Please sign in to comment.