@@ -22,6 +22,11 @@ menu "Driver Configurations"
22
22
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
23
23
you can enable this option.
24
24
25
+ config ADC_SKIP_LEGACY_CONFLICT_CHECK
26
+ bool "Skip legacy conflict check"
27
+ default n
28
+ help
29
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
25
30
menu "Legacy ADC Calibration Configuration"
26
31
27
32
config ADC_CAL_EFUSE_TP_ENABLE
@@ -72,6 +77,12 @@ menu "Driver Configurations"
72
77
Whether to suppress the deprecation warnings when using legacy dac driver (driver/dac.h).
73
78
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
74
79
you can enable this option.
80
+
81
+ config DAC_SKIP_LEGACY_CONFLICT_CHECK
82
+ bool "Skip legacy conflict check"
83
+ default n
84
+ help
85
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
75
86
endmenu # Legacy DAC Driver Configurations
76
87
77
88
menu "Legacy MCPWM Driver Configurations"
@@ -83,6 +94,12 @@ menu "Driver Configurations"
83
94
Whether to suppress the deprecation warnings when using legacy MCPWM driver (driver/mcpwm.h).
84
95
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
85
96
you can enable this option.
97
+
98
+ config MCPWM_SKIP_LEGACY_CONFLICT_CHECK
99
+ bool "Skip legacy conflict check"
100
+ default n
101
+ help
102
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
86
103
endmenu # Legacy MCPWM Driver Configurations
87
104
88
105
menu "Legacy Timer Group Driver Configurations"
@@ -95,6 +112,11 @@ menu "Driver Configurations"
95
112
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
96
113
you can enable this option.
97
114
115
+ config GPTIMER_SKIP_LEGACY_CONFLICT_CHECK
116
+ bool "Skip legacy conflict check"
117
+ default n
118
+ help
119
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
98
120
endmenu # Legacy Timer Group Driver Configurations
99
121
100
122
menu "Legacy RMT Driver Configurations"
@@ -106,6 +128,12 @@ menu "Driver Configurations"
106
128
Whether to suppress the deprecation warnings when using legacy rmt driver (driver/rmt.h).
107
129
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
108
130
you can enable this option.
131
+
132
+ config RMT_SKIP_LEGACY_CONFLICT_CHECK
133
+ bool "Skip legacy conflict check"
134
+ default n
135
+ help
136
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
109
137
endmenu # Legacy RMT Driver Configurations
110
138
111
139
menu "Legacy I2S Driver Configurations"
@@ -117,6 +145,12 @@ menu "Driver Configurations"
117
145
Whether to suppress the deprecation warnings when using legacy i2s driver (driver/i2s.h).
118
146
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
119
147
you can enable this option.
148
+
149
+ config I2S_SKIP_LEGACY_CONFLICT_CHECK
150
+ bool "Skip legacy conflict check"
151
+ default n
152
+ help
153
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
120
154
endmenu # Legacy I2S Driver Configurationss
121
155
122
156
menu "Legacy PCNT Driver Configurations"
@@ -128,6 +162,12 @@ menu "Driver Configurations"
128
162
whether to suppress the deprecation warnings when using legacy PCNT driver (driver/pcnt.h).
129
163
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
130
164
you can enable this option.
165
+
166
+ config PCNT_SKIP_LEGACY_CONFLICT_CHECK
167
+ bool "Skip legacy conflict check"
168
+ default n
169
+ help
170
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
131
171
endmenu # Legacy PCNT Driver Configurationss
132
172
133
173
menu "Legacy SDM Driver Configurations"
@@ -139,6 +179,12 @@ menu "Driver Configurations"
139
179
whether to suppress the deprecation warnings when using legacy SDM driver (driver/sigmadelta.h).
140
180
If you want to continue using the legacy driver, and don't want to see related deprecation warnings,
141
181
you can enable this option.
182
+
183
+ config SDM_SKIP_LEGACY_CONFLICT_CHECK
184
+ bool "Skip legacy conflict check"
185
+ default n
186
+ help
187
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
142
188
endmenu # Legacy SDM Driver Configurationss
143
189
144
190
menu "Legacy Temperature Sensor Driver Configurations"
@@ -150,6 +196,12 @@ menu "Driver Configurations"
150
196
whether to suppress the deprecation warnings when using legacy temperature sensor driver
151
197
(driver/temp_sensor.h). If you want to continue using the legacy driver,
152
198
and don't want to see related deprecation warnings, you can enable this option.
199
+
200
+ config TEMP_SENSOR_SKIP_LEGACY_CONFLICT_CHECK
201
+ bool "Skip legacy conflict check"
202
+ default n
203
+ help
204
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
153
205
endmenu # Legacy Temperature Sensor Driver Configurationss
154
206
155
207
menu "Legacy Touch Sensor Driver Configurations"
@@ -161,6 +213,11 @@ menu "Driver Configurations"
161
213
whether to suppress the deprecation warnings when using legacy touch sensor driver
162
214
(driver/touch_sensor.h). If you want to continue using the legacy driver,
163
215
and don't want to see related deprecation warnings, you can enable this option.
164
- endmenu # Legacy Touch Sensor Driver Configurationss
165
216
217
+ config TOUCH_SKIP_LEGACY_CONFLICT_CHECK
218
+ bool "Skip legacy conflict check"
219
+ default n
220
+ help
221
+ This configuration option allows the user to bypass the conflict check mechanism with legacy code.
222
+ endmenu # Legacy Touch Sensor Driver Configurationss
166
223
endmenu # Driver configurations
0 commit comments