We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e26341 commit c8d034cCopy full SHA for c8d034c
soc/st/stm32/stm32wb0x/soc.c
@@ -41,6 +41,17 @@ uint32_t SystemCoreClock = 16000000U;
41
Z_GENERIC_SECTION("stm32wb0_RAM_VR")
42
__used RAM_VR_TypeDef RAM_VR;
43
44
+#if defined(CONFIG_BT)
45
+/**
46
+ * SRAM0 memory reserved for usage by the MR_BLE Radio hardware.
47
+ *
48
+ * N.B.: radio driver defines CFG_BLE_NUM_RADIO_TASKS.
49
+ */
50
+Z_GENERIC_SECTION("stm32wb0_BLUE_RAM")
51
+static uint8_t __used __blue_RAM[sizeof(GLOBALSTATMACH_TypeDef) +
52
+ CFG_BLE_NUM_RADIO_TASKS * sizeof(STATMACH_TypeDef)];
53
+#endif /* CONFIG_BT */
54
+
55
/** Power Controller node (shorthand for upcoming macros) */
56
#define PWRC DT_INST(0, st_stm32wb0_pwr)
57
0 commit comments