Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need some hints to write a "daemon like" program (maybe written in C/C++ and placed on a unix server) that comunicates with a terminal placed on the other side of a rs-485 cable.

I know C/C++ language but I'm absolutely new to this kind of work.

In other words I need to send and receive from/to the terminal packets in bit format to interpretate them and then answer with the right response

What I need to do the work ? Any ideas?

share|improve this question
2  
'C/C++' is not a language. And this question is way too vague to be answerable. – Wooble Jan 28 at 17:41
I mean what c/c++ library do I need and some info or technic to do the work. OR if it's better to use another language instead of C/c++ – Alga85 Jan 28 at 17:42
2  
@Alga85: Again, "C/C++" is not the name of a language. C is a language. C++ is a different language. – Keith Thompson Jan 28 at 18:56
Really thanx for the very usefull explanation ... anything really usefull for my problem ? – Alga85 Jan 28 at 20:17

closed as not a real question by Wooble, NullUserException Jan 30 at 17:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Look into using the open system call to open the system device that corresponds to the RS485 device.

share|improve this answer
thx I'll look 4 this – Alga85 Jan 28 at 20:23

Not the answer you're looking for? Browse other questions tagged or ask your own question.