Skip to content
Snippets Groups Projects
Unverified Commit be1c44e4 authored by Gaëtan Harter's avatar Gaëtan Harter Committed by GitHub
Browse files

Merge pull request #9968 from bergzand/pr/tinycbor/readme

tinycbor: add doc.txt file
parents 28c2a262 180917e1
No related branches found
No related tags found
No related merge requests found
/**
* @defgroup pkg_tinycbor TinyCBOR library
* @ingroup pkg
* @brief Provides the TinyCBOR (Concise Binary Object Representation)
* library
* @see https://github.com/intel/tinycbor/
*
* # TinyCBOR
*
* TinyCBOR is a CBOR encoder and decoder with a very small footprint, optimized
* for very fast operation.
*
* The main encoder and decoder functions don't use dynamic memory allocation.
*
* # Usage
*
* Just add it as a package in your application's Makefile:
*
* ```makefile
* USEPKG += tinycbor
* ```
*
* TinyCBOR has optional floating point support. In RIOT-OS this is enabled by
* adding the following line to your application's Makefile:
*
* ```makefile
* USEMODULE += tinycbor_float
* ```
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment