I'm new using the D programming language and I was wondering if D can make use of the Serial port or usb port?

link|improve this question
feedback

2 Answers

That would presumably involve system calls of some kind, which would be in C, but you can call C functions from D, so unless there's a library that will wrap it for you (which I rather doubt), you'll have to figure out what the appropriate C calls are and use them.

link|improve this answer
feedback

Creating bindings to C libraries is pretty straightforward in D, so you might try libusb for cross-system USB access.

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.