17 lines
265 B
C
17 lines
265 B
C
#ifndef _MBUSPARSEREXT_H_
|
|
#define _MBUSPARSEREXT_H_
|
|
|
|
#include <mbus/mbus-protocol.h>
|
|
|
|
|
|
typedef struct {
|
|
char name[32];
|
|
char unit[16];
|
|
uint8_t exponent;
|
|
} parsedVIB_t;
|
|
|
|
parsedVIB_t parseVIB(mbus_value_information_block vib);
|
|
|
|
|
|
|
|
#endif //_MBUSPARSEREXT_H_
|