Re: Parameter passing & Choking M$ found new hardware Msg

2011-12-22 Thread Alan Bain
I agree with Kent. Here is my code: *set up comport lncomport = (defaali.mcomport) lnbaud = (defaali.mbaud) lnbits = (defaali.mbits) lnparity = (defaali.mparity) lnstopbits = (defaali.mstopbits) ret = w8250_init(nPortID, lncomport, lnbaud, lnbits, lnparity, lnstopbits, 2048, 128) If ret < 0

RE: Parameter passing & Choking M$ found new hardware Msg

2011-12-22 Thread Kent Belan
9:01 AM To: profox@leafe.com Subject: Re: Parameter passing & Choking M$ found new hardware Msg Thanks Pieter: The CFHDR.H IS INCLUDED AS YOU SUGGEST AND COM9 AND COM ANY VALUE WORK AS SPECIFIED IN THE LINE: nopen1= w8250_init(nPortID,com9,9600,7,parity_even,1,1024,128) as suggested by Commt

Re: Parameter passing & Choking M$ found new hardware Msg

2011-12-22 Thread william tormey
Thanks Pieter: The CFHDR.H IS INCLUDED AS YOU SUGGEST AND COM9 AND COM ANY VALUE WORK AS SPECIFIED IN THE LINE: nopen1= w8250_init(nPortID,com9,9600,7,parity_even,1,1024,128) as suggested by Commtools. I want to parameterize the com9 entry in that line so that I can pass whatever com number th

Parameter passing & Choking M$ found new hardware Msg

2011-12-20 Thread william tormey
HI All: MY FOUR YEAR PORTING PROJECT IS FINALLY COMING TO LIFE. SOME ENDUSER STUFF NEEDS LOOKING AFTER !. The CommTools for VFP init 8250 begins: nOpen1 = w8250_init(nPortId,COM9,9600, etc COMX COMES FROM FTDI USB TO RS232 DRIVER'S ALLOCATION OF PORTS, BUT OF COURSE IT CAN BE ANY COM NO. I WANT