Modbus Vault v1.0
Loading...
Searching...
No Matches
serializer.h
Go to the documentation of this file.
1
14#ifndef SERIALIZER_H
15#define SERIALIZER_H
16
17#include "esp_err.h"
18#include "slab_pool.h"
19
20#include <stdint.h>
21
34esp_err_t serializer_pack (const slab_pool_t *src_ptr, int64_t timestamp_us, slab_pool_t *dst_ptr);
35
36#endif
esp_err_t serializer_pack(const slab_pool_t *src_ptr, int64_t timestamp_us, slab_pool_t *dst_ptr)
Serialize raw data.
Definition serializer.c:13
Memory slab provide abstraction layer for memory chunks.
Slab pool type structure.
Definition slab_pool.h:30