-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
freertos-plus-tcp: Update to latest commit on main branch
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 <[email protected]>
- Loading branch information
1 parent
be29b1b
commit f49c3d9
Showing
4 changed files
with
7 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
* <[email protected]> | ||
* SPDX-License-Identifier: MIT | ||
*/ | ||
|
@@ -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 ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |