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 10 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 10 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

  • Tue, 06/09/2026 - 11:16
    gurux.dlms.java 4.0.95
  • Tue, 06/09/2026 - 10:03
    Gurux.DLMS.Python 1.0.199
  • Mon, 06/08/2026 - 13:39
    gurux.dlms.cpp 9.0.2606.0801
  • Mon, 06/01/2026 - 10:15
    gurux.dlms.cpp 9.0.2606.0101
  • Thu, 05/28/2026 - 16:06
    gurux.dlms.java 4.0.94

New forum topics

  • Error reading L&G Meter
  • Pass a TCP Client to GXNet
  • Australian EDMI Mk10D (Essential Energy area)
  • Strange mix of data notificiation vs get response
  • DLMS Connection
More
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin