Kconfig 764 B

12345678910111213141516171819202122232425262728293031323334353637
  1. # N21 AT device configuration
  2. menuconfig AT_DEVICE_USING_N21
  3. bool "neoway N21"
  4. default n
  5. if AT_DEVICE_USING_N21
  6. config AT_DEVICE_N21_INIT_ASYN
  7. bool "Enable initialize by thread"
  8. default n
  9. config AT_DEVICE_N21_SAMPLE
  10. bool "Enable sample"
  11. default y
  12. if AT_DEVICE_N21_SAMPLE
  13. config N21_SAMPLE_POWER_PIN
  14. int "Power pin"
  15. default -1
  16. config N21_SAMPLE_STATUS_PIN
  17. int "Power status pin"
  18. default -1
  19. config N21_SAMPLE_CLIENT_NAME
  20. string "AT client device name"
  21. default "uart3"
  22. config N21_SAMPLE_RECV_BUFF_LEN
  23. int "The maximum length of receive line buffer"
  24. default 512
  25. endif
  26. endif