I am looking for an open source cross-platform library for working with the serial port in C, something along the lines of the awesome pyserial library (Unfortunately I have to use C for this application)

I have only found this one: http://www.teuniz.net/RS-232/ and that doesn't seem to have mention OSX compatibility.

Any recommendations/comments would be greatly appreciated.

Thanks.

link|improve this question

feedback

3 Answers

I realize that you said C and not C++, but perhaps you could use Boost Asio's serial ports and compile that into a library to be linked with your C application. It claims to be POSIX compatible, and OSX is POSIX.

link|improve this answer
Thanks for the suggestion. – Hamza Jun 4 '10 at 16:38
feedback

Get some additional OSX-specific ObjC code along the lines of AMSerialPort, goSerial, serialconnect, PolKit, ... and implement a conditional compilation of your C source file.

http://osx.hyperjeff.net/Apps/apps?f=serial

link|improve this answer
Thanks for the suggestion, but I'd like to keep it C only. – Hamza Jun 4 '10 at 16:38
feedback

OS X supports the standard POSIX serial API, from <termios.h> and <unistd.h>. Look up the functions tcsetattr(), cfsetspeed() and so on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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