Update coreMQTT submodule pointer and sync transport interface (#358)

Because the const qualifier was removed in PR #356, coreMQTT also needs to be updated to remove it.
This commit is contained in:
Oscar Michael Abrina 2020-10-21 12:11:41 -07:00 committed by GitHub
parent af837b2940
commit f960c4465f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

@ -1 +1 @@
Subproject commit c0fadc43392fa51bf5eadedc72e2e58580c50d51
Subproject commit 7f0478d13a152c3ab32ae79e132becff5d95df49

View file

@ -90,7 +90,7 @@
* <br><br>
* <b>Example code:</b>
* @code{c}
* int32_t myNetworkRecvImplementation( const NetworkContext_t * pNetworkContext,
* int32_t myNetworkRecvImplementation( NetworkContext_t * pNetworkContext,
* void * pBuffer,
* size_t bytesToRecv )
* {
@ -122,7 +122,7 @@
* <br><br>
* <b>Example code:</b>
* @code{c}
* int32_t myNetworkSendImplementation( const NetworkContext_t * pNetworkContext,
* int32_t myNetworkSendImplementation( NetworkContext_t * pNetworkContext,
* const void * pBuffer,
* size_t bytesToSend )
* {