Skip to content

Commit f960c44

Browse files
authored
Update coreMQTT submodule pointer and sync transport interface (FreeRTOS#358)
Because the const qualifier was removed in PR FreeRTOS#356, coreMQTT also needs to be updated to remove it.
1 parent af837b2 commit f960c44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

FreeRTOS-Plus/Source/Application-Protocols/platform/include/transport_interface.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
* <br><br>
9191
* <b>Example code:</b>
9292
* @code{c}
93-
* int32_t myNetworkRecvImplementation( const NetworkContext_t * pNetworkContext,
93+
* int32_t myNetworkRecvImplementation( NetworkContext_t * pNetworkContext,
9494
* void * pBuffer,
9595
* size_t bytesToRecv )
9696
* {
@@ -122,7 +122,7 @@
122122
* <br><br>
123123
* <b>Example code:</b>
124124
* @code{c}
125-
* int32_t myNetworkSendImplementation( const NetworkContext_t * pNetworkContext,
125+
* int32_t myNetworkSendImplementation( NetworkContext_t * pNetworkContext,
126126
* const void * pBuffer,
127127
* size_t bytesToSend )
128128
* {

0 commit comments

Comments
 (0)