Merge pull request #1878 from openmv/stm32_cyw43_bthci

ports/stm32: Link CYW43 BTHCI.
This commit is contained in:
Ibrahim Abdelkader 2023-06-27 22:51:43 +03:00 committed by GitHub
commit 5e8ba825ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -129,13 +129,13 @@
#endif #endif
// Enable FAST (20+ KBs). // Enable FAST (20+ KBs).
#define IMLIB_ENABLE_FAST //#define IMLIB_ENABLE_FAST
// Enable find_template() // Enable find_template()
#define IMLIB_FIND_TEMPLATE #define IMLIB_FIND_TEMPLATE
// Enable find_lbp() // Enable find_lbp()
#define IMLIB_ENABLE_FIND_LBP //#define IMLIB_ENABLE_FIND_LBP
// Enable find_keypoints() // Enable find_keypoints()
#define IMLIB_ENABLE_FIND_KEYPOINTS #define IMLIB_ENABLE_FIND_KEYPOINTS

View File

@ -473,6 +473,9 @@ FIRM_OBJ += $(addprefix $(BUILD)/$(MICROPY_DIR)/,\
extmod/network_cyw43.o \ extmod/network_cyw43.o \
extmod/network_lwip.o \ extmod/network_lwip.o \
) )
FIRM_OBJ += $(addprefix $(BUILD)/$(MICROPY_DIR)/drivers/,\
cyw43/cywbt.o \
)
endif endif
ifeq ($(MICROPY_BLUETOOTH_NIMBLE),1) ifeq ($(MICROPY_BLUETOOTH_NIMBLE),1)