File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
components/esp_hw_support/port/esp32 Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -49,11 +49,11 @@ typedef struct {
49
49
50
50
/**
51
51
* @brief Reserve the interrupts on the core where Bluetooth will run.
52
- * The macro CONFIG_BTDM_CTRL_PINNED_TO_CORE is only defined if Bluetooth controller is enabled.
52
+ * The macro CONFIG_ESP32_BT_CTLR_PINNED_TO_CORE is only defined if Bluetooth controller is enabled.
53
53
* It is set to the core where it will run.
54
54
*/
55
- #ifdef CONFIG_BTDM_CTRL_PINNED_TO_CORE
56
- #if CONFIG_BTDM_CTRL_PINNED_TO_CORE == 0
55
+ #ifdef CONFIG_ESP32_BT_CTLR_PINNED_TO_CORE
56
+ #if CONFIG_ESP32_BT_CTLR_PINNED_TO_CORE == 0
57
57
/* Interrupt 1 is used by Bluetooth UART HCI, check code above */
58
58
#define CORE_0_INTERRUPT_1 STATE_INTERRUPT_1
59
59
#define CORE_1_INTERRUPT_1 0
@@ -69,7 +69,7 @@ typedef struct {
69
69
/* Interrupt 25 may be used by Bluetooth BR/EDR and BLE controller */
70
70
#define CORE_0_INTERRUPT_25 STATE_INTERRUPT_25
71
71
#define CORE_1_INTERRUPT_25 0
72
- #elif CONFIG_BTDM_CTRL_PINNED_TO_CORE == 1
72
+ #elif CONFIG_ESP32_BT_CTLR_PINNED_TO_CORE == 1
73
73
/* Interrupt 1 is used by Bluetooth UART HCI, check code above */
74
74
#define CORE_0_INTERRUPT_1 0
75
75
#define CORE_1_INTERRUPT_1 STATE_INTERRUPT_1
You can’t perform that action at this time.
0 commit comments