Skip to content

Commit dffe267

Browse files
author
Holden
committed
update to 4.0.0 compatibility
1 parent 520831c commit dffe267

File tree

3 files changed

+594
-423
lines changed

3 files changed

+594
-423
lines changed

source/portable/NetworkInterface/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ add_subdirectory(mw300_rd)
4545
add_subdirectory(pic32mzef)
4646
add_subdirectory(RX)
4747
add_subdirectory(SH2A)
48-
add_subdirectory(STM32Fxx)
49-
add_subdirectory(STM32Hxx)
48+
add_subdirectory(STM32)
5049
add_subdirectory(ThirdParty/MSP432)
5150
add_subdirectory(TM4C)
5251
add_subdirectory(WinPCap)
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
if (NOT ( (FREERTOS_PLUS_TCP_NETWORK_IF STREQUAL "STM32") ) )
2+
return()
3+
endif()
4+
5+
#------------------------------------------------------------------------------
6+
add_library( freertos_plus_tcp_network_if STATIC )
7+
8+
target_sources( freertos_plus_tcp_network_if
9+
PRIVATE
10+
NetworkInterface.c
11+
)
12+
13+
target_link_libraries( freertos_plus_tcp_network_if
14+
PUBLIC
15+
freertos_plus_tcp_port
16+
freertos_plus_tcp_network_if_common
17+
PRIVATE
18+
freertos_kernel
19+
freertos_plus_tcp
20+
)

0 commit comments

Comments
 (0)