Skip to content

Commit

Permalink
Fix coreHTTP demo compile warning (FreeRTOS#1219)
Browse files Browse the repository at this point in the history
Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>
  • Loading branch information
chinglee-iot and kar-rahul-aws committed May 8, 2024
1 parent 6cda0cf commit 680a125
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 680a125

Please sign in to comment.