Skip to content

Commit 4bad7a6

Browse files
authored
Update cellular interface submodule pointer (FreeRTOS#1141)
1 parent b9cb18e commit 4bad7a6

File tree

7 files changed

+18
-13
lines changed

7 files changed

+18
-13
lines changed

FreeRTOS-Plus/Demo/FreeRTOS_Cellular_Interface_Windows_Simulator/Common/MutualAuthMQTTExample.c

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -213,11 +213,6 @@
213213
*/
214214
#define mqttexampleTRANSPORT_SEND_RECV_TIMEOUT_MS ( 5000U )
215215

216-
/**
217-
* @brief Transport timeout in milliseconds for transport send and receive.
218-
*/
219-
#define mqttexampleTRANSPORT_SEND_RECV_TIMEOUT_MS ( 200U )
220-
221216
/**
222217
* @brief The length of the outgoing publish records array used by the coreMQTT
223218
* library to track QoS > 0 packet ACKS for outgoing publishes.
@@ -404,6 +399,10 @@ static MQTTStatus_t prvProcessLoopWithTimeout( MQTTContext_t * pMqttContext,
404399

405400
/*-----------------------------------------------------------*/
406401

402+
extern UBaseType_t uxRand();
403+
404+
/*-----------------------------------------------------------*/
405+
407406
/**
408407
* @brief Static buffer used to hold MQTT messages being sent and received.
409408
*/
Submodule bg96 updated from c33a362 to 6761849

FreeRTOS-Plus/VisualStudio_StaticProjects/FreeRTOS+TCP/plus_tcp_hooks_winsim.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151

5252
/*-----------------------------------------------------------*/
5353

54+
extern UBaseType_t uxRand();
55+
56+
/*-----------------------------------------------------------*/
57+
5458
#if ( ipconfigUSE_LLMNR != 0 ) || ( ipconfigUSE_NBNS != 0 ) || ( ipconfigDHCP_REGISTER_HOSTNAME == 1 )
5559

5660
const char * pcApplicationHostnameHook( void )
@@ -209,6 +213,8 @@ void vPlatformInitIpStack( void )
209213
NetworkInterface_t * pxInterface );
210214
pxLibslirp_FillInterfaceDescriptor( 0, &( xInterfaces[ 0 ] ) );
211215
#else
216+
extern NetworkInterface_t * pxWinPcap_FillInterfaceDescriptor( BaseType_t xEMACIndex,
217+
NetworkInterface_t * pxInterface );
212218
pxWinPcap_FillInterfaceDescriptor( 0, &( xInterfaces[ 0 ] ) );
213219
#endif
214220

manifest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -145,28 +145,28 @@ dependencies:
145145
path: "FreeRTOS/Demo/ThirdParty/Partner-Supported-Demos"
146146

147147
- name: "FreeRTOS-Cellular-Interface"
148-
version: "e5862bd"
148+
version: "4675955"
149149
repository:
150150
type: "git"
151151
url: "https://github.com/FreeRTOS/FreeRTOS-Cellular-Interface.git"
152152
path: "FreeRTOS-Plus/Source/FreeRTOS-Cellular-Interface"
153153

154154
- name: "Lab-FreeRTOS-Cellular-Interface-Reference-Quectel-BG96"
155-
version: "c33a362"
155+
version: "6761849"
156156
repository:
157157
type: "git"
158158
url: "https://github.com/FreeRTOS/Lab-FreeRTOS-Cellular-Interface-Reference-Quectel-BG96.git"
159159
path: "FreeRTOS-Plus/Source/FreeRTOS-Cellular-Modules/bg96"
160160

161161
- name: "Lab-FreeRTOS-Cellular-Interface-Reference-Sierra-Wireless-HL7802"
162-
version: "6893670"
162+
version: "7d6393a"
163163
repository:
164164
type: "git"
165165
url: "https://github.com/FreeRTOS/Lab-FreeRTOS-Cellular-Interface-Reference-Sierra-Wireless-HL7802.git"
166166
path: "FreeRTOS-Plus/Source/FreeRTOS-Cellular-Modules/hl7802"
167167

168168
- name: "Lab-FreeRTOS-Cellular-Interface-Reference-ublox-SARA-R4"
169-
version: "a2d84ff"
169+
version: "f536afe"
170170
repository:
171171
type: "git"
172172
url: "https://github.com/FreeRTOS/Lab-FreeRTOS-Cellular-Interface-Reference-ublox-SARA-R4.git"

0 commit comments

Comments
 (0)