Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit db46c99

Browse files
committed
giga: enable bluetooth
Not working yet
1 parent ac9a666 commit db46c99

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

boards.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ giga.menu.debug.true.postbuild_debug=-debug
1414

1515
giga.build.zephyr_target=arduino_giga_r1//m7
1616
giga.build.zephyr_args=--shield arduino_giga_display_shield
17-
giga.build.zephyr_hals=hal_stm32
17+
giga.build.zephyr_hals=hal_stm32 hal_infineon
1818
giga.build.variant=arduino_giga_r1_stm32h747xx_m7
1919
giga.build.mcu=cortex-m7
2020
giga.build.fpu=-mfpu=fpv5-d16

loader/llext_exports.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,9 @@ FORCE_EXPORT_SYM(net_buf_simple_pull);
118118
FORCE_EXPORT_SYM(net_buf_simple_add_mem);
119119
FORCE_EXPORT_SYM(net_buf_simple_pull_mem);
120120
FORCE_EXPORT_SYM(net_buf_unref);
121+
#if defined(CONFIG_BT_HCI_SETUP)
122+
FORCE_EXPORT_SYM(bt_h4_vnd_setup);
123+
#endif
121124
#endif
122125

123126
#if defined(CONFIG_STACK_CANARIES)

variants/arduino_giga_r1_stm32h747xx_m7/arduino_giga_r1_stm32h747xx_m7.conf

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,20 @@ CONFIG_DISPLAY=y
4848
CONFIG_INPUT=y
4949
CONFIG_STM32_LTDC_FB_USE_SHARED_MULTI_HEAP=y
5050
CONFIG_STM32_LTDC_FB_SMH_ATTRIBUTE=2
51+
52+
CONFIG_BT=y
53+
CONFIG_BT_HCI_RAW=y
54+
CONFIG_BT_HCI_RAW_H4=y
55+
CONFIG_BT_HCI_RAW_H4_ENABLE=y
56+
CONFIG_BT_BUF_ACL_RX_SIZE=255
57+
CONFIG_BT_BUF_CMD_TX_SIZE=255
58+
CONFIG_BT_BUF_EVT_DISCARDABLE_SIZE=255
59+
CONFIG_BT_MAX_CONN=4
60+
CONFIG_BT_CTLR_ADV_EXT=y
61+
CONFIG_BT_CTLR_ADV_PERIODIC=y
62+
CONFIG_BT_CTLR_DTM_HCI=y
63+
CONFIG_CYW4343W_MURATA_1DX=y
64+
CONFIG_BT_HCI_DRIVER_LOG_LEVEL_DBG=y
65+
CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE=2048
66+
CONFIG_BT_RX_STACK_SIZE=4096
67+
CONFIG_BT_HCI_TX_STACK_SIZE=4096

0 commit comments

Comments
 (0)