All Questions
3 questions
1
vote
1
answer
316
views
Why there are difference while coding CBOR in Python libraries and RIOT OS C library?
So I have this thing
{'apn': 'censored', 'support_data_mode': False, 'data_usr_name': 'censored', 'data_password': 'censored'}
When read this data from system that uses NanoCBOR i get something like ...
1
vote
2
answers
3k
views
Encoding and decoding uint8_t using TinyCbor C Library
I am implementing C++ 11 based application and I am using TinyCbor C library for Encoding and Decoding application specific data as below:
#include "cbor.h"
#include <iostream>
using ...
2
votes
1
answer
828
views
cjson - symbol(s) not found for architecture x86_64
I'm testing the library libcbor-0.5.0 for parsing and generating CBOR, https://libcbor.readthedocs.io/en/v0.5.0/index.html. All the examples run correctly, except cjson2cbor.c.
It requires cJSON.h, ...