Skip to main content
Home
for DLMS smart meters

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

  • Wed, 10/29/2025 - 08:51
    gurux.dlms.c 9.0.2510.2901
  • Thu, 10/16/2025 - 09:59
    gurux.dlms.java 4.0.83
  • Wed, 10/08/2025 - 10:21
    gurux.dlms.c 9.0.2510.0801
  • Fri, 09/26/2025 - 10:02
    gurux.dlms.cpp 9.0.2509.2601
  • Fri, 09/26/2025 - 09:45
    gurux.dlms.c 9.0.2509.2601

New forum topics

  • How to get/convert user readable format data from readRowsByRange
  • Insufficient memory to continue the execution of the program.
  • The client instance code failed to connect to the electricity meter for authentication
  • Unable to Release Request when closing connection with meter.
  • Failed to receive reply from the device in given time.
More
RSS feed
Privacy FAQ GXDN Issues Contact
Follow Gurux on Twitter Follow Gurux on Linkedin