Facility Control

 View Only
  • 1.  DashBoard UDP termination string

    Posted 09-24-2019 19:13

    Testing something out using DashBoard to send UDP to another device. The packets are sent, but there does not appear to be any sort of terminators on it like <CR><LF>. Any advice?

    If I use Send UDP as Bytes and append 0d 0a to the end it works, but I want to avoid having to rely on hexadecimal encoding

     



  • 2.  RE: DashBoard UDP termination string

    Posted 10-29-2019 18:36

    Hi Rob.

    Sorry for the delayed response.

    When sending a string, you can use "\r\n" to do carriage return and linefeed.

     

    James


    #DashBoard


  • 3.  RE: DashBoard UDP termination string

    Posted 10-29-2019 20:50

    Ah, thanks much James, those worked. So according to WireShark packet diagnostics, the CRLF characters were not being automatically appended, but your suggestion resolved that problem.


    #DashBoard