moddef-c
Loading...
Searching...
No Matches
moddef.h
Go to the documentation of this file.
1// SPDX-License-Identifier: Apache-2.0
2
3/* moddef-c — embedded C runtime for ModDef (spec v0.4).
4 *
5 * Parse binary `.moddef` documents in place (zero-copy views over flash or
6 * RAM), decode/encode points, and drive Modbus devices through a
7 * user-supplied transport. C99, no allocation, no dependencies. */
8#ifndef MODDEF_MODDEF_H
9#define MODDEF_MODDEF_H
10
11#include "moddef/codec.h"
12#include "moddef/desc.h"
13#include "moddef/device.h"
14#include "moddef/doc.h"
15#include "moddef/err.h"
16#include "moddef/str.h"
17#include "moddef/transport.h"
18#include "moddef/wire.h"
19
20#endif /* MODDEF_MODDEF_H */