using C++ in machine control software
using C++ in machine control software
(OP)
I need any artical or paper about using C++ programming language as machine control software.
And any use for C++ prog. Lang. as an industrial control software.
And any use for C++ prog. Lang. as an industrial control software.





RE: using C++ in machine control software
With C++, there're some concerns being raised with respect to industrial/real time applications. Almost all these can be effectively tackled if specific design/development strategies are followed.- a simple example is freeing (deleting) an object when it's not needed anymore.
Narayanan UM
umn@ieee.org
RE: using C++ in machine control software
RE: using C++ in machine control software
RE: using C++ in machine control software
If you just want to read in bytes from serial port (UART) then just use the function intb(), like stated by samsara. But in case of real time problem, you should capture the bytes using interrupt, so write your interrupt routine and placed it in the right adress, but you must firt save the "something" accidently in this address and put it back after your task done.
cheers