1menu "IRQ Modules Configuration" 2 3config OS_OPTION_HWI_COMBINE 4 bool "Whether support hw interrupt combination feature or not" 5 default y if OS_OPTION_HWI_ATTRIBUTE 6 default n if !OS_OPTION_HWI_ATTRIBUTE 7 8config OS_OPTION_HWI_PRIORITY 9 bool "Whether support hwi priority set or not" 10 default y 11 12config OS_OPTION_HWI_ATTRIBUTE 13 bool "Whether support hwi attribute and Param set or not" 14 default y 15 16config OS_OPTION_HWI_MAX_NUM_CONFIG 17 bool "Whether support interrupt max number config or not" 18 default n 19 help 20 If the number of interrupts needs to be configured, select Y. Otherwise, select N. 21 Select Y for the current M4 platform and N for other platforms. 22 23endmenu 24