Skip to content

Commit

Permalink
freertos-plus-tcp: Update to latest commit on main branch (#76)
Browse files Browse the repository at this point in the history
pxLAN91C111_FillInterfaceDescriptor() function is implemented
in freertos-plus-tcp portable code and then used in
integration/src/network_startup.c source file without being
declared resulting in function implicit declaration error.
This was working before as FreeRTOS-Plus-TCP project previously
forced the usage of C90 standard but now the standard in not forced
thus the application's standard shall be used, in our case C99 standard
is used.

Signed-off-by: Ahmed Ismail <Ahmed.Ismail@arm.com>
  • Loading branch information
AhmedIsmail02 authored Jun 19, 2024
1 parent be29b1b commit 4af549a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright 2023 Arm Limited and/or its affiliates
/* Copyright 2023-2024 Arm Limited and/or its affiliates
* <open-source-office@arm.com>
* SPDX-License-Identifier: MIT
*/
Expand Down Expand Up @@ -76,6 +76,9 @@ const uint8_t ucMACAddress[ 6 ] =
/* It will have several end-points. */
static NetworkEndPoint_t xEndPoints[ 4 ];

extern NetworkInterface_t * pxLAN91C111_FillInterfaceDescriptor( BaseType_t xEMACIndex,
NetworkInterface_t * pxInterface );

#endif /* defined( ipconfigIPv4_BACKWARD_COMPATIBLE ) && ( ipconfigIPv4_BACKWARD_COMPATIBLE == 0 ) */

int32_t network_startup( void )
Expand Down
2 changes: 1 addition & 1 deletion components/connectivity/freertos_plus_tcp/library
Submodule library updated 132 files
2 changes: 1 addition & 1 deletion manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dependencies:
path: "components/tools/unity/library"
- name: "FreeRTOS-Plus-TCP"
license: "MIT"
version: "7b68a91f0870f9bcff444bb14e441d6a08658377"
version: "ba4e25c350020abcb787a3a319fdf991bef70538"
repository:
type: "git"
url: "https://github.com/FreeRTOS/FreeRTOS-Plus-TCP.git"
Expand Down
1 change: 1 addition & 0 deletions release_changes/202406141224.change
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
freertos-plus-tcp: Update to latest commit on FreeRTOS-Plus-TCP main branch.

0 comments on commit 4af549a

Please sign in to comment.