
# define MSGPACK_MAX_ARRAY_SIZE 8 // max size of MsgPack::map_t

# define MSGPACK_MAX_PACKET_BYTE_SIZE 128 // max size of MsgPack::arr_t MsgPack::object::ext holds binary data of Ext type. This object is just a dummy and do nothing. MsgPack::object::nil_t is used to pack and unpack Nil type. Type Aliases for Str / Bin / Array / Mapįor general C++ apps (not Arduino), str_t is defined as: There are some additional types are defined to express msgpack formats easily.


These are the lists of types which can be serialize and deserialize. load current config MsgPack::eeprom::load(config) To pack / unpack values as such collections in a simple way, please use these functions. In msgpack, there are two collection types: Array and Map.Ĭ++ containers will be converted to one of them but you can do that from individual parameters. MsgPack:: arr_t v Encode / Decode to Collections without Container MsgPack:: str_t s = "str " // std::string or String # include // input to msgpack int i = 123
