ThingSet / thingset-device-library

ThingSet library for resource-constrained devices written in C/C++
https://thingset.io/thingset-device-library/
Apache License 2.0
13 stars 6 forks source link

Support for arrays as record items #44

Open martinjaeger opened 1 year ago

martinjaeger commented 1 year ago

It's currently not possible to store arrays as record items because for arrays we store a pointer to a struct ts_array with metadata instead of a pointer to the actual array.

For record items, we would need to determine the pointer to the actual data in some way.