commit | 3be24cf0383a8f1a55cf53a7ffe7754b2c64d61e | [log] [tgz] |
---|---|---|
author | Carlos Gomes Martinho <carlos.gomes_martinho@siemens.com> | Wed Apr 15 15:15:06 2020 +0200 |
committer | Jim Schaad <ietf@augustcellars.com> | Thu Apr 16 13:32:52 2020 -0700 |
tree | b06f5c79e38d0333f8bc03713f807d377062f353 | |
parent | ac7da0997fe24a1b516c393ad6c7e8a9dd65e906 [diff] |
fix: typos
This is a constrained node implementation of CBOR in C that I threw together in 2013, before the publication of RFC 7049, to validate certain implementability considerations.
Its API model was inspired by nxjson. It turns out that this API model actually works even better with the advantages of the CBOR format.
This code has been used in a number of research implementations on constrained nodes, with resulting code sizes appreciably under 1 KiB on ARM platforms.
I always meant to improve the interface some more with certain API changes, in order to get even closer to 0.5 KiB, but I ran out of time. So here it is. If I do get around to making these changes, the API will indeed change a bit, so please be forewarned.
There is a Simple-Makefile
for playing around, as well as a complete cmake
-based build environment. (You can choose what fits your needs better.)
Building with cmake
:
mkdir build cd build cmake .. cmake --build . -- all
Generating a test coverage report (requires lcov[^1]; result in build/lcov/index.html
):
rm -rf build mkdir build cd build cmake .. -Dcoveralls_send=ON cmake --build . -- all coveralls coverage_report
find_package
find_package(cn-cbor) add_executable(myapp main.cpp) target_link_libraries(myapp cn-cbor::cn-cbor)
add_subdirectory
add_subdirectory(vendor/cn-cbor) add_executable(myapp main.cpp) target_link_libraries(myapp cn-cbor::cn-cbor)
This package is available in the conan center
add cn-cbor/1.0.0
to you conan file
License: MIT
[^1]: Installation with homebrew: brew install lcov