I have a little problem with PHP. I need to send some data to the serial port with PHP in Linux.
I m using this:
exec (" echo -ne 'hello' > /dev/ttymxc0 ");
it is OK but I can't see anything on my console. After I write:
echo -ne 'World ' > /dev/ttymxc0
The output is like:
Worldhellohello
Can you give me any advise or do you have suggestion about that? What should I have to do ?
Thanks...
Best Regards