Menu

USB-Serial-parallel ports with Dev-C++

2008-09-30
2012-09-26
  • Oscar Bellon

    Oscar Bellon - 2008-09-30

    ¿Could anybody help me with this topic?

    Which library do i need to work with all of these ports in order to programming and interfacing using Dev-C++ IDE compiler.
    You know, to input and to output data from and to USB, parallel or serial ports.

     
    • cpns

      cpns - 2008-10-01

      USB: depends what you want to communicate with; there are multiple standard device classes, and then others that install their own drivers.

      Serial: http://msdn.microsoft.com/en-us/library/ms810467.aspx, or simply use stdio or fstream opened on COMn:.

      Parallel: Depends what you want to do with it. For driving a printer, use the printer driver, for general IO, use a port I/O device driver.

      None of this is Dev-C++ specific.

       

Log in to post a comment.