I'm new using the D programming language and I was wondering if D can make use of the Serial port or usb port?
|
feedback
|
|
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. | |||
|
feedback
|
|
Creating bindings to C libraries is pretty straightforward in D, so you might try libusb for cross-system USB access. | |||
|
feedback
|