We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb7df4 commit ef1fd2cCopy full SHA for ef1fd2c
src/Kconfig
@@ -197,12 +197,21 @@ config RT_USING_CPU_USAGE_TRACER
197
default y if RT_USING_SMART
198
default n
199
200
-menu "kservice options"
201
- config RT_USING_TINY_FFS
202
- bool "Enable kservice to use tiny finding first bit set method"
203
- default n
204
-endmenu
+choice
+ prompt "Choose finding first bit set method"
+ default RT_USING_TINY_FFS
+
+config RT_USING_TINY_FFS
205
+ bool "Tiny: 37 bytes"
206
+ help
207
+ Select this if you want tiny method.
208
209
+config RT_USING_PUNY_FFS
210
+ bool "Puny: 0 bytes"
211
212
+ Select this if you want pyny method.
213
214
+endchoice
215
menuconfig RT_USING_DEBUG
216
bool "Enable debugging features"
217
default y
0 commit comments