BT Com Ports (>9)
Brought to you by:
cbuguet,
gvillemure
I have a BlueTooth GPS which configures to COM28
(Serial Port 28). tcp2com appears to only allow you to
set the COM port to COM1 through COM4.
I'd really like (need) the ability to use COM28
(example) for sharing.
-- Scott <scott713@gmail.com>
Logged In: YES
user_id=149869
There's an easy fix for that problem if you're willing to
modify the source code and compile it yourself - there are 2
placed where tcp2com checks that the port number is in range
1..4:
if ((iPort < 1) || (iPort > 4)) {
One is in function SetComPort (file com.c) and the other is
in functio WriteRegistryData (file registry.c).
Change that 4 to something more suitable. or remove these lines.