I have some I/O boards (8 inputs & 8 outputs) that are controlled via a RS232 or RS485.
They work in a polled mode and they expect a PC to continually talk to them to keep the outputs set accordingly. Approximately every 500mS
It's a 10 byte data stream that roughly looks like "STX, LEN, Address, Type, Data, Checksum, ETX" all a combination of HEX and ASCII.
In the data section is a byte with the bit information for the outputs and a byte with the bit information of the inputs.
If the PC stops talking to the device, it times out and turns all of the outputs OFF.
Basically a software watchdog. Don't want to leave the sprinklers ON if the PC crashes

So, can the Generic Serial Plugin be setup to handle this style of communications??? Continuous polling?
I realize it won't straight of the bat, it's more can a driver/plugin be created that will do this?
If so, what do I need to do?
Neil.
P.S.
My normal programming language is Pascal but I do have a basic understanding of basic & C.