Bug: 69040695

Clone this repo:
  1. 1c3a44b Upstream assumes gnu99 (and has been dead for years). am: d4084d1400 by Elliott Hughes · 9 weeks ago main master
  2. d4084d1 Upstream assumes gnu99 (and has been dead for years). by Elliott Hughes · 9 weeks ago
  3. de0afc0 Make bpfmt happy. am: 5624032cc0 by Elliott Hughes · 9 weeks ago
  4. 5624032 Make bpfmt happy. by Elliott Hughes · 9 weeks ago
  5. 3ddfaa2 Remove VNDK definition(s) am: 86e257ce04 am: b15a54d93f by Kiyoung Kim · 10 months ago android15-automotiveos-dev android15-qpr1-release android15-qpr1-s3-release android15-qpr1-s4-release android15-qpr1-s5-release android15-tests-dev aml_ads_350923060 aml_ads_351017080 aml_ads_351121120 aml_ase_351010000 aml_ase_351112060 aml_ase_351114000 aml_cfg_351010000 aml_hef_350921160 aml_hef_351016140 aml_hef_351120040 aml_odp_350923040 aml_odp_351020000 aml_odp_351121040 aml_rkp_350910000 aml_rkp_351011000 aml_tz6_351010000 aml_uwb_350911040 aml_uwb_351011040 android-15.0.0_r10 android-15.0.0_r11 android-15.0.0_r12 android-15.0.0_r13 android-15.0.0_r6 android-15.0.0_r7 android-15.0.0_r8 android-15.0.0_r9

Build Status

cn-cbor: A constrained node implementation of CBOR in C

Below is the original README for cn-cbor, a Proof of Concept implementation of CBOR that I wrote in 2013. People have been sending me fixes and updates to make this implementation more useful for actual use, and for a while I have occasionally integrated them. Jim Schaad now is so far ahead of this repo that you are most likely better off using his repo as your upstream.

If you are here looking for experimental CBOR implementations for constrained nodes, there are many, some of which are listed at cbor.io. One more: I have recently extracted the implementation from ARM-mbed's SUIT manifest generator (Apache 2.0). SUIT implementers report (CBOR-specific) code sizes in the low hundreds of bytes. Thank you, ARM.

cn-cbor: A constrained node implementation of CBOR in C

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.

Building

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:

./build.sh

Building including testing:

./build.sh all test

Generating a test coverage report (requires lcov[^1]; result in build/lcov/index.html):

./build.sh all coveralls coverage_report

License: MIT

[^1]: Installation with homebrew: brew install lcov