does DLMS blue book use asn.1 to describe var like
```
capture_object_definition ::= structure
{
class_id: long-unsigned,
logical_name: octet-string,
attribute_index: integer,
data_index: long-unsigned
}
```
can we have any tool to auto make it to code ?
like
struct capture_object_definition
{
u16 class_id
string logical_name;
int attribute_index;
long data_index
}
Hi,
Hi,
No, you need to do it by yourself.
BR,
Mikko
I think it is not asn.1
I think it is not asn.1 because if I pass it to asn.1 tool ,it tells me error?
I want to know what the stand about it ? or no stand
Hi,
Hi,
ASN.1 is used only when the connection is established and with certificate keys (public/private).
After the connection is used DLMS standard is used.
You will save a lot of time using Gurux open-source libraries. DLMS is not an easy protocol.
I hope those will help you:
http://www.gurux.fi/DLMSInNutshell
http://www.gurux.fi/DLMSCOSEMFAQ
BR,
Mikko
ok ,get it
ok ,get it