From f960c4465f474d3d7f0986d4436da342863c9352 Mon Sep 17 00:00:00 2001 From: Oscar Michael Abrina Date: Wed, 21 Oct 2020 12:11:41 -0700 Subject: [PATCH] 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. --- FreeRTOS-Plus/Source/Application-Protocols/coreMQTT | 2 +- .../platform/include/transport_interface.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/FreeRTOS-Plus/Source/Application-Protocols/coreMQTT b/FreeRTOS-Plus/Source/Application-Protocols/coreMQTT index c0fadc433..7f0478d13 160000 --- a/FreeRTOS-Plus/Source/Application-Protocols/coreMQTT +++ b/FreeRTOS-Plus/Source/Application-Protocols/coreMQTT @@ -1 +1 @@ -Subproject commit c0fadc43392fa51bf5eadedc72e2e58580c50d51 +Subproject commit 7f0478d13a152c3ab32ae79e132becff5d95df49 diff --git a/FreeRTOS-Plus/Source/Application-Protocols/platform/include/transport_interface.h b/FreeRTOS-Plus/Source/Application-Protocols/platform/include/transport_interface.h index abc0ada2e..faea510ca 100644 --- a/FreeRTOS-Plus/Source/Application-Protocols/platform/include/transport_interface.h +++ b/FreeRTOS-Plus/Source/Application-Protocols/platform/include/transport_interface.h @@ -90,7 +90,7 @@ *

* Example code: * @code{c} - * int32_t myNetworkRecvImplementation( const NetworkContext_t * pNetworkContext, + * int32_t myNetworkRecvImplementation( NetworkContext_t * pNetworkContext, * void * pBuffer, * size_t bytesToRecv ) * { @@ -122,7 +122,7 @@ *

* Example code: * @code{c} - * int32_t myNetworkSendImplementation( const NetworkContext_t * pNetworkContext, + * int32_t myNetworkSendImplementation( NetworkContext_t * pNetworkContext, * const void * pBuffer, * size_t bytesToSend ) * {