-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathKconfig
More file actions
executable file
·45 lines (38 loc) · 971 Bytes
/
Kconfig
File metadata and controls
executable file
·45 lines (38 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SERVICES_ATCMD
bool "Services ATCMD"
default n
select NETUTILS_PING if NET_ICMP_SOCKET
select NETUTILS_PING6 if NET_ICMPv6_SOCKET
---help---
Enable the ATCMD services
if SERVICES_ATCMD
config SERVICES_ATCMD_PRIORITY
int "atcmd task priority"
default 80
---help---
The priority for atcmd task.
config SERVICES_ATCMD_STACKSIZE
int "atcmd task stack size"
default 4096
---help---
The stack size allocated for the atcmd task.
config SERVICES_ATCMD_APP_PREFIX
string "atcmd app at command prefix"
default "+MIPL"
---help---
The at commands with the prefix should route to app uart
config SERVICES_ATCMD_CHIP_TEST
bool "ATCMD Chip Test"
default n
select MTD
select MTD_BYTE_WRITE
select MTD_GD25
select FS_LITTLEFS
select I2C_TCA6424A
---help---
Enable chip test AT command.
endif # SERVICES_ATCMD