Xojo 2024 r4. Serial issue

I’ve tried this on Mac OS 15.0.1 and Windows 11. I used code in the demo linked below in the past to talk to Arduinos as controllers. The issue is I can now run through this in about 4 minutes. At design time it works as long as I’m in the same design session. Once saved and closed, reloading it will not give any serail data. I can remove all of the entries and redesign it and again it will work until the session is closed. Rinse,Repeat. I can’t be the only person to see this?

https://documentation.xojo.com/getting_started/tutorials/connecting_to_a_serial_device.html

Any help is appreciated

Thank you

Can you attach your project or a sample project demonstrating the issue (you will need to zip it first) so that we can take a look at it?

I’d love too. I have been on for a long time and the account shows an anniversary, but it tells me new users can’t upload.

not sure what to do?

Put the sample in a Google Drive, iCloud, OneDrive, DropBox or some other service like this:

https://www.transfernow.net

able to share a zip file online and pass the link here.

Rick,

Good idea!

https://share.evernote.com/note/85a6a558-8325-3ada-a989-04c55475b925

done.

1 Like

the qrc14 file is from the mac, the other one is from windows

This thread may help you.

Serial Arduino

We connect to Arduinos through Xojo apps daily - our production team uses them as test fixtures for hardware testing.

1 Like

I don’t quite understand your description of the issue but it sounds like it sometimes works and then it doesn’t?

I’m not sure about that but I do see one issue. In DataReceived you have:

Var data As String
data = Me.ReadAll(Encodings.ASCII)
If data.IndexOf(EndOfLine.Windows) >0 Then
  TextArea1.Text = TextArea1.Text + Me.ReadAll(Encodings.ASCII)
End If

The first ‘ReadAll’ is getting all of the available serial data and clearing the buffer. The second ‘ReadAll’ is then getting nothing.

If you look at DataReceived in the Bar Code example:

Var data As String
data = Me.LookAhead(Encodings.ASCII)
If data.IndexOf(EndOfLine.Windows) > -1 Then
  TextArea1.Text = TextArea1.Text + Me.ReadAll(Encodings.ASCII)
End If

It is using ‘LookAhead’ which reads the serial data but doesn’t clear the buffer, it will keep doing this as data is received and then when the check below sees a linefeed in the data, the ‘ReadAll’ will proceed to grab all of the data from the buffer.

Hope that helps.

Yep. The DataReceived code form the Bar Code example should work better. As Indy G pointed out LookAhead should be used to check if an EndOfLine has been received so that the received data remains in the receive buffer until it contains an EndOfLine.

Once an EndOfLine is in the receive buffer, I would also recommend only reading the received data up to (and including) the EndOfLine and leaving anything after the EndOfLine in the buffer until the next time DataReceived fires and you’re checking for a new EndOfLine.

1 Like

Here’s a blog post covering receiving serial communications with termination:

Guest Post: Serial Communications with Xojo (Wayne Golding)

Here’s an updated version of the code from that blog:

var PacketSize as integer
var Terminator as string = EndOfLine.Windows   // this is the data terminator


// check the buffer for at least one full packet. IndexOfBytes is zero relative,
// so it effectively returns the packet size
PacketSize = me.LookAhead(Encodings.ASCII).IndexOfBytes(0, Terminator)

// wait for at least one full packet
if PacketSize < 0 then
  return
end

do
  // read the data packet without the terminator
  var DataPacket as string = me.Read(PacketSize, Encodings.ASCII)
  
  // remove the terminator from the buffer
  call me.Read(Terminator.Bytes, Encodings.ASCII)
  
  // >>>>>>>>>> deal with the data here (DataPacket)
  
  // recheck the buffer for a full packet
  PacketSize = me.LookAhead(Encodings.ASCII).IndexOfBytes(0, Terminator)
  
loop until PacketSize < 0

I appreciate all the help!

SerialConnection1.DataTerminalReady = True

fixed it.

Coolterm is my go to terminal program because I use Windows, Mac & Linux.

Here are 2 questions

First why is it the slider in the serial control seemingly not working?

Second why was none of this an issue back in 2022 when I did this last?

I’m trying find that pc to check it, however problem solved.

Thanks again

What slider? Not sure what you are referring to.

Are you using a different microcontroller board this time around? Some (such as ESP32, etc) may use the DTR or RTS lines to reset the controller and/or invoke programming mode. I.e. a deasserted DTR signal may hold the controller in reset when the port opens.

Glad to hear it! :slight_smile:

CoolTerm lets you toggle the DTR and RTS signals manually. You can use that to see if toggling any of these signals reset your microcontroller.

I’m speaking to a Arduino Uno - ATmega328P pretty generic.

It’s the slider in the xojo serial inspector.

Roger I appreciate your work.

Thank you

Ah, I see.

The DTR slider in IDE actually corresponds to SerialConnection1.DTR, not SerialConnection1.DataTerminalReady. The DTR propertry enables or disables DTR/DSR control flow. It has no bearing on the state of the DTR line when the port opens. It is SerialConnection1.DataTerminalReady that sets the state of the DTR line.

The Arduino UNO includes circuitry that resets the microcontroller when DTR toggles from high to low. I believe this also how the Arduino IDE resets the board to upload new code.

1 Like

Thank you for taking the time to explain that fro me.