mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 20:59:05 +00:00
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>
22 lines
510 B
Text
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
|