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

Profile picture for user vtulyakov84
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

Profile picture for user vtulyakov84

vtulyakov84

2 years 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

2 years 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

  • Mon, 08/17/2026 - 09:47
    gurux.dlms.cpp 9.0.2608.1701
  • Mon, 08/17/2026 - 09:25
    gurux.dlms.c 9.0.2608.1701
  • Mon, 07/27/2026 - 12:37
    gurux.dlms.cpp 9.0.2607.2701
  • Thu, 07/23/2026 - 16:19
    gurux.dlms.java 4.0.96
  • Thu, 07/09/2026 - 14:34
    Gurux.DLMS.Python 1.0.201

New forum topics

  • negative indexing for custom method/attribute
  • System title
  • Elster a1800 clock reset to year 2000 with one tariff billing
  • Possible memory leak in file dlms.c, getCompactArrayItem(), getCompactArrayItem2()
  • Official Gurux.DLMS.Client.Example.Net fails during High GMAC secure association (Invalid PDU), while Gurux Director connects successfully
More
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin