Fix coreHTTP demo compile warning (#1219)

Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>
This commit is contained in:
chinglee-iot
2024-05-08 13:53:02 +08:00
committed by GitHub
parent 6cda0cf7fc
commit 680a1255e2
4 changed files with 16 additions and 0 deletions

View File

@ -200,6 +200,10 @@ static BaseType_t prvSendHttpRequest( const TransportInterface_t * pxTransportIn
/*-----------------------------------------------------------*/
extern BaseType_t xPlatformIsNetworkUp( void );
/*-----------------------------------------------------------*/
/*
* @brief Create the task that demonstrates the HTTP API Demo over a
* mutually-authenticated network connection with an HTTP server.

View File

@ -260,6 +260,10 @@ static BaseType_t prvSendHttpRequest( const TransportInterface_t * pxTransportIn
/*-----------------------------------------------------------*/
extern BaseType_t xPlatformIsNetworkUp( void );
/*-----------------------------------------------------------*/
/*
* @brief Create the task that demonstrates the HTTP API Demo over a
* mutually-authenticated network connection with an HTTP server.

View File

@ -429,6 +429,10 @@ static BaseType_t prvDownloadLoop( void );
/*-----------------------------------------------------------*/
extern BaseType_t xPlatformIsNetworkUp( void );
/*-----------------------------------------------------------*/
/*
* @brief Create task to demonstrate the HTTP API over a server-authenticated
* network connection with a server.

View File

@ -295,6 +295,10 @@ static BaseType_t prvVerifyS3ObjectFileSize( const TransportInterface_t * pxTran
/*-----------------------------------------------------------*/
extern BaseType_t xPlatformIsNetworkUp( void );
/*-----------------------------------------------------------*/
/*
* @brief Create the task that demonstrates the HTTP API Demo over a
* server-authenticated network connection with an HTTP server.