nuttx-apps/netutils/bare/Kconfig
Jiri Vlasak 72f57fc34e netutils: Add BARE
BARE is a simple binary representation for structured application data.

cbare, the BARE implementation ported by this commit, is an I/O agnostic
C implementation of the BARE message encoding.

Signed-off-by: Jiri Vlasak <jvlasak@elektroline.cz>
2026-01-23 11:05:48 -03:00

22 lines
510 B
Text

config NETUTILS_BARE
bool "Binary Application Record Encoding (BARE)"
default n
depends on ALLOW_MIT_COMPONENTS
---help---
BARE is a simple binary representation for structured
application data.
See https://baremessages.org/
cbare is an MIT-licensed I/O agnostic C implementation of the
BARE message encoding that is used when this option is enabled.
if NETUTILS_BARE
config NETUTILS_BARE_TEST
bool "Enable baretest"
default n
---help---
Enable baretest -- BARE test application.
endif