2015-08-22 07:16:58 +08:00
|
|
|
#
|
2016-05-15 11:10:51 +08:00
|
|
|
# Copyright (c) 2016 Intel Corporation
|
2015-08-22 07:16:58 +08:00
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-08-22 07:16:58 +08:00
|
|
|
#
|
|
|
|
|
2016-12-16 00:16:55 +08:00
|
|
|
source "lib/libc/Kconfig"
|
2017-02-17 07:51:31 +08:00
|
|
|
|
2018-02-26 10:54:04 +08:00
|
|
|
menu "Additional libraries"
|
|
|
|
|
|
|
|
config JSON_LIBRARY
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "Build JSON library"
|
2018-02-26 10:54:04 +08:00
|
|
|
help
|
|
|
|
Build a minimal JSON parsing/encoding library. Used by sample
|
|
|
|
applications such as the NATS client.
|
|
|
|
|
|
|
|
config RING_BUFFER
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "Enable ring buffers"
|
2018-02-26 10:54:04 +08:00
|
|
|
help
|
|
|
|
Enable usage of ring buffers. This is similar to kernel FIFOs but ring
|
|
|
|
buffers manage their own buffer memory and can store arbitrary data.
|
|
|
|
For optimal performance, use buffer sizes that are a power of 2.
|
2018-03-23 03:05:26 +08:00
|
|
|
|
|
|
|
config BASE64
|
2018-08-14 22:19:20 +08:00
|
|
|
bool "Enable base64 encoding and decoding"
|
2018-03-23 03:05:26 +08:00
|
|
|
help
|
|
|
|
Enable base64 encoding and decoding functionality
|
2018-04-06 01:11:15 +08:00
|
|
|
|
|
|
|
source "lib/posix/Kconfig"
|
|
|
|
|
2018-06-05 11:33:12 +08:00
|
|
|
source "lib/cmsis_rtos_v1/Kconfig"
|
2018-02-26 10:54:04 +08:00
|
|
|
endmenu
|