forked from machinekoder/mbus-windows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mbus.h
46 lines (40 loc) · 1.04 KB
/
mbus.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
//------------------------------------------------------------------------------
// Copyright (C) 2010, Raditex AB
// All rights reserved.
//
// FreeSCADA
// http://www.FreeSCADA.com
//
//------------------------------------------------------------------------------
/**
* @file mbus.h
*
* @brief Main include file for the Freescada libmbus library.
*
* Include this file to access the libmbus API:
\verbatim
#include <mbus/mbus.h>
\endverbatim
*
*/
/*! \mainpage libmbus
*
* These pages contain automatically generated documentation for the libmbus
* API. For examples on how to use the libmbus library, see the applications
* in the bin directory in the source code distribution.
*
* For more information, see http://www.freescada.com/libmbus
*
*/
#ifndef _MBUS_H_
#define _MBUS_H_
#include <mbus/mbus-protocol.h>
#include <mbus/mbus-protocol-aux.h>
//#include <mbus/mbus-tcp.h>
#include <mbus/mbus-serial-windows.h>
//
//
//
int mbus_init();
#endif /* _MBUS_H_ */