2015-08-21 16:16:58 -07:00
|
|
|
#
|
2016-05-14 23:10:51 -04:00
|
|
|
# Copyright (c) 2016 Intel Corporation
|
2015-08-21 16:16:58 -07:00
|
|
|
#
|
2017-01-18 17:01:01 -08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-08-21 16:16:58 -07:00
|
|
|
#
|
|
|
|
|
2016-12-15 11:16:55 -05:00
|
|
|
source "lib/libc/Kconfig"
|
2017-02-16 15:51:31 -08:00
|
|
|
|
2018-02-25 21:54:04 -05:00
|
|
|
menu "Additional libraries"
|
|
|
|
|
|
|
|
config JSON_LIBRARY
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Build JSON library"
|
2018-02-25 21:54:04 -05:00
|
|
|
help
|
|
|
|
Build a minimal JSON parsing/encoding library. Used by sample
|
|
|
|
applications such as the NATS client.
|
|
|
|
|
|
|
|
config RING_BUFFER
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Enable ring buffers"
|
2018-02-25 21:54:04 -05: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-22 20:05:26 +01:00
|
|
|
|
|
|
|
config BASE64
|
2018-08-14 16:19:20 +02:00
|
|
|
bool "Enable base64 encoding and decoding"
|
2018-03-22 20:05:26 +01:00
|
|
|
help
|
|
|
|
Enable base64 encoding and decoding functionality
|
2018-04-05 22:41:15 +05:30
|
|
|
|
|
|
|
source "lib/posix/Kconfig"
|
|
|
|
|
2018-06-05 09:03:12 +05:30
|
|
|
source "lib/cmsis_rtos_v1/Kconfig"
|
2018-10-30 12:19:03 +05:30
|
|
|
source "lib/cmsis_rtos_v2/Kconfig"
|
2018-03-25 01:27:48 +01:00
|
|
|
|
|
|
|
source "lib/gui/Kconfig"
|
|
|
|
|
2018-02-25 21:54:04 -05:00
|
|
|
endmenu
|