mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
472 B
Plaintext
20 lines
472 B
Plaintext
/**
|
|
* @defgroup pkg_nanocbor NanoCBOR library
|
|
* @ingroup pkg
|
|
* @ingroup sys
|
|
* @brief CBOR encoder and decoder library for tiny devices
|
|
*
|
|
* This package contains the NanoCBOR library for a small CBOR encoder and
|
|
* decoder. Flash footprint for encoding and decoding should be below 1K each.
|
|
*
|
|
* ## Usage
|
|
*
|
|
* Just add it as a package in your application:
|
|
*
|
|
* ```makefile
|
|
* USEPKG += nanocbor
|
|
* ```
|
|
*
|
|
* @see https://github.com/bergzand/nanocbor
|
|
*/
|