Constanza Heath | 7d0e1d9 | 2015-08-21 16:16:58 -0700 | [diff] [blame] | 1 | # |
Anas Nashif | 0b2c44a | 2016-05-14 23:10:51 -0400 | [diff] [blame] | 2 | # Copyright (c) 2016 Intel Corporation |
Constanza Heath | 7d0e1d9 | 2015-08-21 16:16:58 -0700 | [diff] [blame] | 3 | # |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 4 | # SPDX-License-Identifier: Apache-2.0 |
Constanza Heath | 7d0e1d9 | 2015-08-21 16:16:58 -0700 | [diff] [blame] | 5 | # |
| 6 | |
Anas Nashif | fe958df | 2016-12-15 11:16:55 -0500 | [diff] [blame] | 7 | source "lib/libc/Kconfig" |
Leandro Pereira | fb192c5 | 2017-02-16 15:51:31 -0800 | [diff] [blame] | 8 | |
Anas Nashif | bb64ec2 | 2018-02-25 21:54:04 -0500 | [diff] [blame] | 9 | menu "Additional libraries" |
| 10 | |
| 11 | config JSON_LIBRARY |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 12 | bool "Build JSON library" |
Anas Nashif | bb64ec2 | 2018-02-25 21:54:04 -0500 | [diff] [blame] | 13 | help |
| 14 | Build a minimal JSON parsing/encoding library. Used by sample |
| 15 | applications such as the NATS client. |
| 16 | |
| 17 | config RING_BUFFER |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 18 | bool "Enable ring buffers" |
Anas Nashif | bb64ec2 | 2018-02-25 21:54:04 -0500 | [diff] [blame] | 19 | help |
| 20 | Enable usage of ring buffers. This is similar to kernel FIFOs but ring |
| 21 | buffers manage their own buffer memory and can store arbitrary data. |
| 22 | For optimal performance, use buffer sizes that are a power of 2. |
Carles Cufi | fb50e81 | 2018-03-22 20:05:26 +0100 | [diff] [blame] | 23 | |
| 24 | config BASE64 |
Ulf Magnusson | 8cf8db3 | 2018-08-14 16:19:20 +0200 | [diff] [blame] | 25 | bool "Enable base64 encoding and decoding" |
Carles Cufi | fb50e81 | 2018-03-22 20:05:26 +0100 | [diff] [blame] | 26 | help |
| 27 | Enable base64 encoding and decoding functionality |
Ramakrishna Pallala | f603e60 | 2018-04-05 22:41:15 +0530 | [diff] [blame] | 28 | |
| 29 | source "lib/posix/Kconfig" |
| 30 | |
Rajavardhan Gundi | ccd1c21 | 2018-06-05 09:03:12 +0530 | [diff] [blame] | 31 | source "lib/cmsis_rtos_v1/Kconfig" |
Anas Nashif | bb64ec2 | 2018-02-25 21:54:04 -0500 | [diff] [blame] | 32 | endmenu |