Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
File / port cconventions and use
#11
(03-30-2025, 03:25 AM)tantalus Wrote: Just a thought, may it be a handshake problem?

I see you're enabling both software and hardware handshaking "-ixon -ixoff -crtscts".
Have you tried disabling the hardware as I believe (correct me if I'm wrong), the hardware enabling will take precedence over software.


I'll have to think about this in morning. I've definately used com ports on linux before, for eg on another computer a program is communicating with rs485 devices so i'm doing input and output on that.

Maybe the 'stty' command is wrong, i have played with it a lot.
Reply
#12
Okay, so you are saying if that after it counted '31' characters received, in the example, telling it to exit to loop would make no difference because when it cycled back, to monitor for the next message, it would forever hang until that message was sent, and if never sent, hang indefinitely.

Hopefully the handshake suggestion by tantalus makes a difference. If not, and you can get a C solution for that part going, as DSMan mentioned, and he does have a Linux system, you might still be able get it working, without any chewing gum and bailing wire.

Pete
Reply
#13
(03-30-2025, 02:31 AM)Parkland Wrote: the stty shell command works, it is persistent.
everything works so far except way to see if more data is in buffer.
LOC(1) seems to just count up every time a character is read.
That's good news if that's the case with stty, that would save you the more complicated part.

The issue of seeing the number of characters pending to read and not blocking on the GET is unfixable though. To not block on the read you have to set the opened file to "non-blocking" mode, but you can't do that with QB64 (and QB64 can't do it with the regular std::fstream it normally uses to read files).

For getting the number of bytes ready to read, there's not exactly a standard way to do that but it can be done using the `FIONREAD` `ioctl()` call on the underlying file-descriptor. QB64 doesn't expose that to you though (and QB64 doesn't have it, it's buried in the std::fstream) so this isn't possible to do. `FIONREAD` isn't really the way to go anyway, it still doesn't _really_ guarantee you won't hang. Opening the file in non-blocking mode is the best way, then you don't need to know how many bytes are ready since all calls to `read()` will not hang and will tell you if there was nothing available.
Reply




Users browsing this thread: 1 Guest(s)