File tree Expand file tree Collapse file tree 2 files changed +0
-35
lines changed Expand file tree Collapse file tree 2 files changed +0
-35
lines changed Original file line number Diff line number Diff line change @@ -89,14 +89,6 @@ INC += -I$(TOP)/lib/tinyusb/src
89
89
INC += -I.
90
90
INC += -Ihal
91
91
92
- ifeq ($(MICROPY_PY_BLUETOOTH ) ,1)
93
- INC += \
94
- -I$(TOP ) /extmod/nimble \
95
- -I$(TOP ) /lib/mynewt-nimble/nimble/host/include \
96
- -I$(TOP ) /lib/mynewt-nimble/nimble/include \
97
- -I$(TOP ) /lib/mynewt-nimble/porting/nimble/include
98
- endif
99
-
100
92
# All settings for Ethernet support are controller by the value of MICROPY_PY_LWIP
101
93
ifeq ($(MICROPY_PY_LWIP ) ,1)
102
94
INC += -Ilwip_inc
@@ -247,13 +239,6 @@ SRC_C += \
247
239
ticks.c \
248
240
tusb_port.c \
249
241
250
- ifeq ($(MICROPY_PY_BLUETOOTH ) ,1)
251
- SRC_C += \
252
- drivers/ninaw10/nina_bt_hci.c \
253
- mpbthciport.c \
254
- mpnimbleport.c
255
- endif
256
-
257
242
SHARED_SRC_C += \
258
243
shared/libc/printf.c \
259
244
shared/libc/string0.c \
@@ -305,14 +290,6 @@ else
305
290
SRC_HAL_C += hal/$(FLEXSPI_FLASH_TYPE ) _config.c
306
291
endif
307
292
308
- ifeq ($(MICROPY_PY_BLUETOOTH ) ,1)
309
- SRC_C += mpbthciport.c
310
- endif # MICROPY_PY_BLUETOOTH
311
-
312
- ifeq ($(MICROPY_BLUETOOTH_NIMBLE ) ,1)
313
- SRC_C += mpnimbleport.c
314
- endif
315
-
316
293
# Math library source files
317
294
ifeq ($(MICROPY_FLOAT_IMPL ) ,double)
318
295
LIBM_SRC_C += $(addprefix lib/libm_dbl/,\
Original file line number Diff line number Diff line change 55
55
56
56
#include "systick.h"
57
57
#include "extmod/modnetwork.h"
58
- #if MICROPY_PY_BLUETOOTH
59
- #include "extmod/modbluetooth.h"
60
- #include "mpbthciport.h"
61
- #endif
62
58
63
59
extern uint8_t _sstack , _estack , _gc_heap_start , _gc_heap_end ;
64
60
@@ -70,10 +66,6 @@ int main(void) {
70
66
tusb_init ();
71
67
pendsv_init ();
72
68
73
- #if MICROPY_PY_BLUETOOTH
74
- mp_bluetooth_hci_init ();
75
- #endif
76
-
77
69
#if MICROPY_PY_LWIP
78
70
// lwIP doesn't allow to reinitialise itself by subsequent calls to this function
79
71
// because the system timeout list (next_timeout) is only ever reset by BSS clearing.
@@ -84,10 +76,6 @@ int main(void) {
84
76
#endif
85
77
#endif
86
78
87
- #if MICROPY_PY_BLUETOOTH
88
- mp_bluetooth_hci_init ();
89
- #endif
90
-
91
79
#if MICROPY_PY_NETWORK_CYW43
92
80
{
93
81
cyw43_init (& cyw43_state );
You can’t perform that action at this time.
0 commit comments