From 8a28d1ff7d98937a38f67881d70f08fe0fbd62ce Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Sun, 9 Jun 2019 18:10:39 +0200 Subject: [PATCH] lwip: add pan_lwip_http_server example to stm32-f4discovery-cc256x --- port/stm32-f4discovery-cc256x/Makefile | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/port/stm32-f4discovery-cc256x/Makefile b/port/stm32-f4discovery-cc256x/Makefile index b146f0d61..304bf8d32 100644 --- a/port/stm32-f4discovery-cc256x/Makefile +++ b/port/stm32-f4discovery-cc256x/Makefile @@ -89,6 +89,7 @@ ${BTSTACK_ROOT}/src/classic/avrcp_browsing_controller.c \ ${BTSTACK_ROOT}/src/classic/avrcp_controller.c \ ${BTSTACK_ROOT}/src/classic/avrcp_media_item_iterator.c \ ${BTSTACK_ROOT}/src/classic/avrcp_target.c \ +${BTSTACK_ROOT}/src/classic/bnep.c \ ${BTSTACK_ROOT}/src/classic/btstack_cvsd_plc.c \ ${BTSTACK_ROOT}/src/classic/btstack_link_key_db_tlv.c \ ${BTSTACK_ROOT}/src/classic/btstack_sbc_decoder_bluedroid.c \ @@ -106,6 +107,7 @@ ${BTSTACK_ROOT}/src/classic/hsp_ag.c \ ${BTSTACK_ROOT}/src/classic/hsp_hs.c \ ${BTSTACK_ROOT}/src/classic/obex_iterator.c \ ${BTSTACK_ROOT}/src/classic/obex_message_builder.c \ +${BTSTACK_ROOT}/src/classic/pan.c \ ${BTSTACK_ROOT}/src/classic/pbap_client.c \ ${BTSTACK_ROOT}/src/classic/rfcomm.c \ ${BTSTACK_ROOT}/src/classic/sdp_client.c \ @@ -119,6 +121,33 @@ ${BTSTACK_ROOT}/src/hci_dump.c \ ${BTSTACK_ROOT}/src/hci_transport_h4.c \ ${BTSTACK_ROOT}/src/l2cap.c \ ${BTSTACK_ROOT}/src/l2cap_signaling.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/def.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/inet_chksum.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/init.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ip.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/mem.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/memp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/netif.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/pbuf.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp_in.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/tcp_out.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/timeouts.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/udp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/acd.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/dhcp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/etharp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/icmp.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/ip4.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/ip4_addr.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/core/ipv4/ip4_frag.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/netif/ethernet.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/apps/http/altcp_proxyconnect.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/apps/http/fs.c \ +${BTSTACK_ROOT}/3rd-party/lwip/core/src/apps/http/httpd.c \ +${BTSTACK_ROOT}/3rd-party/lwip/dhcp-server/dhserver.c \ +${BTSTACK_ROOT}/platform/lwip/sys_arch.c \ +${BTSTACK_ROOT}/platform/lwip/bnep_lwip.c \ bluetooth_init_cc2564B_1.6_BT_Spec_4.1.c \ bsp/audio.c \ bsp/cs43l22.c \ @@ -228,10 +257,13 @@ C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/bluedroid/decoder/include C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/bluedroid/encoder/include C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/hxcmod-player C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/hxcmod-player/mods +C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/lwip/core/src/include +C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/lwip/dhcp-server C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/md5 C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/yxml C_INCLUDES += -I${BTSTACK_ROOT}/3rd-party/segger-rtt C_INCLUDES += -I${BTSTACK_ROOT}/platform/embedded +C_INCLUDES += -I${BTSTACK_ROOT}/platform/lwip C_INCLUDES += -I${BTSTACK_ROOT}/chipset/cc256x C_INCLUDES += -I Drivers/STM32F4xx_HAL_Driver/Inc C_INCLUDES += -I bsp @@ -289,6 +321,7 @@ EXAMPLES = \ le_counter \ le_streamer \ le_streamer_client \ + pan_lwip_http_server \ pbap_client_demo \ sdp_bnep_query \ sdp_general_query \