2019-04-28 14:34:20 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
config NETUTILS_CJSON
|
|
|
|
bool "cJSON library (current version)"
|
|
|
|
default n
|
2019-07-07 19:31:46 +02:00
|
|
|
select LIBC_FLOATINGPOINT
|
2019-04-28 14:34:20 +02:00
|
|
|
---help---
|
|
|
|
Enables the cJSON library.
|
|
|
|
|
|
|
|
if NETUTILS_CJSON
|
|
|
|
|
|
|
|
config NETUTILS_CJSON_URL
|
|
|
|
string "URL where cJSON library can be downloaded"
|
|
|
|
default "https://github.com/DaveGamble/cJSON/archive"
|
|
|
|
|
|
|
|
config NETUTILS_CJSON_VERSION
|
|
|
|
string "Version number"
|
2019-10-06 13:55:23 +02:00
|
|
|
default "1.7.12"
|
2019-04-28 14:34:20 +02:00
|
|
|
|
2022-12-29 08:29:55 +01:00
|
|
|
config NETUTILS_CJSON_TEST
|
|
|
|
bool "Enable cJSON test"
|
|
|
|
default n
|
|
|
|
|
|
|
|
if NETUTILS_CJSON_TEST
|
|
|
|
|
|
|
|
config CJSON_UNITY_TEST_DIR
|
|
|
|
string "cJSON test directory"
|
|
|
|
default "/data"
|
|
|
|
|
2023-08-03 04:29:00 +02:00
|
|
|
config CJSON_TEST_PRIORITY
|
2023-08-31 15:17:11 +02:00
|
|
|
int "task priority"
|
|
|
|
default 100
|
2023-08-03 04:29:00 +02:00
|
|
|
|
|
|
|
config CJSON_TEST_STACKSIZE
|
2023-08-31 15:17:11 +02:00
|
|
|
int "stack size"
|
|
|
|
default 102400
|
2023-08-03 04:29:00 +02:00
|
|
|
|
2023-08-31 15:17:11 +02:00
|
|
|
endif # NETUTILS_CJSON_TEST
|
2022-12-29 08:29:55 +01:00
|
|
|
|
2023-08-31 15:17:11 +02:00
|
|
|
endif # NETUTILS_CJSON
|