Skip to main content
Home
for DLMS smart meters
Open source solutions for DLMS smart metering

Main navigation

  • Home
  • Products
  • About us
  • Open Source
  • Community
  • Forum
  • Downloads
User account menu
  • Log in

Breadcrumb

  1. Home
  2. How To Determine The Transmission Direction In The GXSerial.OnTrace() Method

How to determine the transmission direction in the GXSerial.OnTrace() method

By vtulyakov84 , 16 July, 2024
Forums
Gurux.Serial

Hi guys!
Please tell me how I can determine the transmission direction in the GXSerial.OnTrace() method. Is the data being received or sent? To display the correct color in a multiline text field.

Best Regards,
vtulyakov84

vtulyakov84

1 year 12 months ago

I SOLVED! 1. Add new…

I SOLVED!
1. Add new constructor for Gurux.DLMS.Reader.GXDLMSReader:
public GXDLMSReader(GXDLMSClient client, IGXMedia media, ILogger logger, TraceLevel trace = TraceLevel.Verbose)
{
Trace = trace;
Media = media;
Client = client;
this.logger = logger; // !!!!
}

2. Modify method `ReadDLMSPacket`:
public void ReadDLMSPacket(byte[] data, GXReplyData reply)
{
if (data == null)
{
return;
}
this.logger.log_tx(data); // !!!

...

this.logger.log_rx(p.Reply); // !!!
}

BR,
vtulyakov84

Profile picture for user Kurumi

Kurumi

1 year 12 months ago

Hi, You can get the…

Hi,

You can get the direction from the trace type like this:

Net1.Trace = TraceLevel.Verbose;
Net1.OnTrace += new TraceEventHandler(Net1_OnTrace);

void Net1_OnTrace(object sender, TraceEventArgs e)
{
if ((e.Type & TraceTypes.Sent) != 0)
{
System.Diagnostics.Debug.WriteLine("<- " + e.ToString());
}
else if ((e.Type & TraceTypes.Received) != 0)
{
System.Diagnostics.Debug.WriteLine("-> " + e.ToString());
}
}

BR,
Mikko

  • Create new account
  • Reset your password

Hire Us!

Latest Releases

  • Thu, 07/09/2026 - 14:34
    Gurux.DLMS.Python 1.0.201
  • Fri, 06/26/2026 - 16:32
    Gurux.Service 3.0.2606.2601
  • Wed, 06/24/2026 - 08:36
    Gurux.DLMS.Python 1.0.200
  • Mon, 06/15/2026 - 08:52
    gurux.dlms.c 9.0.2606.1501
  • Tue, 06/09/2026 - 11:16
    gurux.dlms.java 4.0.95

New forum topics

  • Reading block profile with Compact array
  • DLMS server - serving multiple similar datasets gathered from multiple meters across distinct logical addresses
  • CGXDLMSProfileGeneric::SetValue for attribute 3. Possible memory leak
  • Clou
  • DLMS Server how to set server logical address, and attach object to different association
More
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin