Is it possible to interface directly to the parallel or serial ports of a computer with pure java? Or do i need to switch over to C/C++ for this?
I need fairly fine control, not just sending packets of information, but flipping on/off the voltages of the pins individually (trying to communicate to a GBA in UART mode ;D )
A quick glance over the API shows that you can write individual bytes, so I assume you can affect all the bits by constructing the bytes to send appropriatly (although my knowledge of these ports in general is very lacking, i need to hunt around for more info).