Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. menu "Camera configuration"
  2. config OV7670_SUPPORT
  3. bool "Support OV7670 VGA"
  4. default y
  5. help
  6. Enable this option if you want to use the OV7670.
  7. Disable this option to safe memory.
  8. config OV7725_SUPPORT
  9. bool "Support OV7725 SVGA"
  10. default n
  11. help
  12. Enable this option if you want to use the OV7725.
  13. Disable this option to save memory.
  14. config NT99141_SUPPORT
  15. bool "Support NT99141 HD"
  16. default y
  17. help
  18. Enable this option if you want to use the NT99141.
  19. Disable this option to save memory.
  20. config OV2640_SUPPORT
  21. bool "Support OV2640 2MP"
  22. default y
  23. help
  24. Enable this option if you want to use the OV2640.
  25. Disable this option to save memory.
  26. config OV3660_SUPPORT
  27. bool "Support OV3660 3MP"
  28. default y
  29. help
  30. Enable this option if you want to use the OV3360.
  31. Disable this option to save memory.
  32. config OV5640_SUPPORT
  33. bool "Support OV5640 5MP"
  34. default y
  35. help
  36. Enable this option if you want to use the OV5640.
  37. Disable this option to save memory.
  38. choice SCCB_HARDWARE_I2C_PORT
  39. bool "I2C peripheral to use for SCCB"
  40. default SCCB_HARDWARE_I2C_PORT1
  41. config SCCB_HARDWARE_I2C_PORT0
  42. bool "I2C0"
  43. config SCCB_HARDWARE_I2C_PORT1
  44. bool "I2C1"
  45. endchoice
  46. choice CAMERA_TASK_PINNED_TO_CORE
  47. bool "Camera task pinned to core"
  48. default CAMERA_CORE0
  49. help
  50. Pin the camera handle task to a certain core(0/1). It can also be done automatically choosing NO_AFFINITY.
  51. config CAMERA_CORE0
  52. bool "CORE0"
  53. config CAMERA_CORE1
  54. bool "CORE1"
  55. config CAMERA_NO_AFFINITY
  56. bool "NO_AFFINITY"
  57. endchoice
  58. endmenu