Kconfig 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. if (BF533 || BF532 || BF531)
  2. menu "BF533/2/1 Specific Configuration"
  3. comment "Interrupt Priority Assignment"
  4. menu "Priority"
  5. config UART_ERROR
  6. int "UART ERROR"
  7. default 7
  8. config SPORT0_ERROR
  9. int "SPORT0 ERROR"
  10. default 7
  11. config SPI_ERROR
  12. int "SPI ERROR"
  13. default 7
  14. config SPORT1_ERROR
  15. int "SPORT1 ERROR"
  16. default 7
  17. config PPI_ERROR
  18. int "PPI ERROR"
  19. default 7
  20. config DMA_ERROR
  21. int "DMA ERROR"
  22. default 7
  23. config PLLWAKE_ERROR
  24. int "PLL WAKEUP ERROR"
  25. default 7
  26. config RTC_ERROR
  27. int "RTC ERROR"
  28. default 8
  29. config DMA0_PPI
  30. int "DMA0 PPI"
  31. default 8
  32. config DMA1_SPORT0RX
  33. int "DMA1 (SPORT0 RX)"
  34. default 9
  35. config DMA2_SPORT0TX
  36. int "DMA2 (SPORT0 TX)"
  37. default 9
  38. config DMA3_SPORT1RX
  39. int "DMA3 (SPORT1 RX)"
  40. default 9
  41. config DMA4_SPORT1TX
  42. int "DMA4 (SPORT1 TX)"
  43. default 9
  44. config DMA5_SPI
  45. int "DMA5 (SPI)"
  46. default 10
  47. config DMA6_UARTRX
  48. int "DMA6 (UART0 RX)"
  49. default 10
  50. config DMA7_UARTTX
  51. int "DMA7 (UART0 TX)"
  52. default 10
  53. config TIMER0
  54. int "TIMER0"
  55. default 11
  56. config TIMER1
  57. int "TIMER1"
  58. default 11
  59. config TIMER2
  60. int "TIMER2"
  61. default 11
  62. config PFA
  63. int "PF Interrupt A"
  64. default 12
  65. config PFB
  66. int "PF Interrupt B"
  67. default 12
  68. config MEMDMA0
  69. int "MEMORY DMA0"
  70. default 13
  71. config MEMDMA1
  72. int "MEMORY DMA1"
  73. default 13
  74. config WDTIMER
  75. int "WATCH DOG TIMER"
  76. default 13
  77. help
  78. Enter the priority numbers between 7-13 ONLY. Others are Reserved.
  79. This applies to all the above. It is not recommended to assign the
  80. highest priority number 7 to UART or any other device.
  81. endmenu
  82. endmenu
  83. endif