123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- menu "AT commands"
- config RT_USING_AT
- bool "Enable AT commands"
- default n
- if RT_USING_AT
- config AT_DEBUG
- bool "Enable debug log output"
- default n
-
- config AT_USING_SERVER
- bool "Enable AT commands server"
- default n
-
- if AT_USING_SERVER
- config AT_SERVER_DEVICE
- string "Server device name"
- default "uart3"
- config AT_SERVER_RECV_BUFF_LEN
- int "The maximum length of server data accepted"
- default 256
- choice
- prompt "The commands new line sign"
- help
- This end mark can used for AT server determine the end of commands ,
- it can choose "\r", "\n" or "\r\n"
- default AT_CMD_END_MARK_CRLF
- config AT_CMD_END_MARK_CRLF
- bool "\\r\\n"
- config AT_CMD_END_MARK_CR
- bool "\\r"
- config AT_CMD_END_MARK_LF
- bool "\\n"
- endchoice
- endif
-
- config AT_USING_CLIENT
- bool "Enable AT commands client"
- default n
-
- if AT_USING_CLIENT
- config AT_CLIENT_DEVICE
- string "Client device name"
- default "uart2"
- config AT_CLIENT_RECV_BUFF_LEN
- int "The maximum length of client data accepted"
- default 512
-
- config AT_USING_SOCKET
- bool "Provide similar BSD Socket API by AT"
- default n
- endif
- config AT_USING_CLI
- bool "Enable command-line interface for AT commands"
- default y
- depends on FINSH_USING_MSH
- config AT_PRINT_RAW_CMD
- bool "Enable print RAW format AT command communication data"
- default n
-
- endif
- endmenu
|