|
| 1 | +menu "Wi-Fi Remote over AT" |
| 2 | + |
| 3 | + menu "UART Configuration" |
| 4 | + |
| 5 | + choice WIFI_RMT_AT_FLOW_CONTROL |
| 6 | + bool "Set preferred modem control flow" |
| 7 | + default WIFI_RMT_AT_FLOW_CONTROL_NONE |
| 8 | + help |
| 9 | + Set the preferred control flow |
| 10 | + |
| 11 | + config WIFI_RMT_AT_FLOW_CONTROL_NONE |
| 12 | + bool "No control flow" |
| 13 | + config WIFI_RMT_AT_FLOW_CONTROL_SW |
| 14 | + bool "SW control flow" |
| 15 | + config WIFI_RMT_AT_FLOW_CONTROL_HW |
| 16 | + bool "HW control flow" |
| 17 | + endchoice |
| 18 | + |
| 19 | + config WIFI_RMT_AT_UART_TX_PIN |
| 20 | + int "TXD Pin Number" |
| 21 | + default 25 |
| 22 | + range 0 56 |
| 23 | + help |
| 24 | + Pin number of UART TX. |
| 25 | + |
| 26 | + config WIFI_RMT_AT_UART_RX_PIN |
| 27 | + int "RXD Pin Number" |
| 28 | + default 26 |
| 29 | + range 0 56 |
| 30 | + help |
| 31 | + Pin number of UART RX. |
| 32 | + |
| 33 | + config WIFI_RMT_AT_UART_RTS_PIN |
| 34 | + int "RTS Pin Number" |
| 35 | + default 27 |
| 36 | + range 0 56 |
| 37 | + help |
| 38 | + Pin number of UART RTS. |
| 39 | + |
| 40 | + config WIFI_RMT_AT_UART_CTS_PIN |
| 41 | + int "CTS Pin Number" |
| 42 | + default 23 |
| 43 | + range 0 56 |
| 44 | + help |
| 45 | + Pin number of UART CTS. |
| 46 | + |
| 47 | + config WIFI_RMT_AT_UART_EVENT_TASK_STACK_SIZE |
| 48 | + int "UART Event Task Stack Size" |
| 49 | + range 2000 6000 |
| 50 | + default 4096 |
| 51 | + help |
| 52 | + Stack size of UART event task. |
| 53 | + |
| 54 | + config WIFI_RMT_AT_UART_EVENT_TASK_PRIORITY |
| 55 | + int "UART Event Task Priority" |
| 56 | + range 3 22 |
| 57 | + default 5 |
| 58 | + help |
| 59 | + Priority of UART event task. |
| 60 | + |
| 61 | + config WIFI_RMT_AT_UART_EVENT_QUEUE_SIZE |
| 62 | + int "UART Event Queue Size" |
| 63 | + range 10 40 |
| 64 | + default 30 |
| 65 | + help |
| 66 | + Length of UART event queue. |
| 67 | + |
| 68 | + config WIFI_RMT_AT_UART_PATTERN_QUEUE_SIZE |
| 69 | + int "UART Pattern Queue Size" |
| 70 | + range 10 40 |
| 71 | + default 20 |
| 72 | + help |
| 73 | + Length of UART pattern queue. |
| 74 | + |
| 75 | + config WIFI_RMT_AT_UART_TX_BUFFER_SIZE |
| 76 | + int "UART TX Buffer Size" |
| 77 | + range 256 2048 |
| 78 | + default 512 |
| 79 | + help |
| 80 | + Buffer size of UART TX buffer. |
| 81 | + |
| 82 | + config WIFI_RMT_AT_UART_RX_BUFFER_SIZE |
| 83 | + int "UART RX Buffer Size" |
| 84 | + range 256 2048 |
| 85 | + default 1024 |
| 86 | + help |
| 87 | + Buffer size of UART RX buffer. |
| 88 | + endmenu |
| 89 | + |
| 90 | + |
| 91 | +endmenu # Wi-Fi Remote over EPPP |
0 commit comments