2012-04-11 10:46:09 +09:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010, Raditex AB
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// rSCADA
|
|
|
|
// http://www.rSCADA.se
|
|
|
|
// info@rscada.se
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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.rscada.se/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.h>
|
|
|
|
|
2012-12-05 21:24:58 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2012-04-11 10:46:09 +09:00
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
int mbus_init();
|
2013-04-05 15:13:18 +02:00
|
|
|
char* get_current_version();
|
2012-04-11 10:46:09 +09:00
|
|
|
|
2012-12-05 21:24:58 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-04-11 10:46:09 +09:00
|
|
|
#endif /* _MBUS_H_ */
|