show/hide this revision's text 3 deleted 2 characters in body; added 36 characters in body

You need to set the com with a dos command like like:

$output = `mode COM1: BAUD=115200 PARITY=N data=8 stop=1 XON=off TO=on `;

The next command executes the dos command through php:

echo"$output";

Create the resource id:

$fp = fopen('COM1', 'r+');

if(!$fp){

echo"Port not accessible";

}else{

echo"Port COM1 opened successfully";

}

Write to port:

$writtenBytes = fputs($fp, "Hello");

echo"Bytes written to port: $writtenBytes";

Read from port:

$buffer = fgets($fp);

echo"Read from buffer: $buffer";

Maybe somebody help me with the fgets problem. It stacks there for exactly one minute if TO=on or stacks there forever if TO=off. It seems to be a "MODE COM" option so maybe a DOS expert can help.

show/hide this revision's text 2 added 3 characters in body; added 3 characters in body; added 7 characters in body

You need to set the com with a dos command like like:

$output = ` mode COM1: BAUD=115200 PARITY=N data=8 stop=1 XON=off TO=on ` ;

The next command executes the dos command through php:

echo"$output";

Create the resource id:

$fp = fopen('COM1', 'r+');

if(!$fp){

echo"Port not accessible";

}else{

echo"Port COM1 opened successfully";

}

Write to port:

$writtenBytes = fputs($fp, "Hello");

echo"Bytes written to port: $writtenBytes";

Read from port:

$buffer = fgets($fp);

Maybe somebody help me with the fgets problem. It stacks there for exactly one minute if TO=on or stacks there forever if TO=off. It seems to be a "MODE COM" option so maybe a DOS expert can help.

show/hide this revision's text 1

You need to set the com with a dos command like like:

$output = mode COM1: BAUD=115200 PARITY=N data=8 stop=1 XON=off TO=on;

The next command executes the dos command through php:

echo"$output";

Create the resource id:

$fp = fopen('COM1', 'r+');

if(!$fp){

echo"Port not accessible";

}else{

echo"Port COM1 opened successfully";

}

Write to port:

$writtenBytes = fputs($fp, "Hello");

echo"Bytes written to port: $writtenBytes";

Read from port:

$buffer = fgets($fp);

Maybe somebody help me with the fgets problem. It stacks there for exactly one minute if TO=on or stacks there forever if TO=off. It seems to be a "MODE COM" option so maybe a DOS expert can help.