1. #1

    C++ Builder and USB<->RS232

    I am trying to make an application with C++Builder which communicates with a PIC16F877A which has a RS232 interface. Unfortunately my computer only has USB ports so I have bought a USB to RS232 converter cable.

    Well I am a complete beginner to C++ Builder so really at this point I don't even know it will be possible to do this... Any help and advice would be really appreciated.

  2. #2
    The Insane Rivin's Avatar
    10+ Year Old Account
    Join Date
    Oct 2009
    Location
    Washington, USA
    Posts
    16,615
    Moving this to the Computer forum.

  3. #3
    I see no problem you have to face in your setup. The PC SW will know nothing about nature of RS232 port it will use. It can be a real RS232 or Virtual one via USB adapter unless you are using real time bit banging with pins of RS232 port. If you are just sending data bytes there should be no difference between UART based or Virtual COM port.

    I still do not get what is the task and what is the final goal of your project?

    Is it communicating with PIC from PC via RS232?
    In this case why should it be C++ Builder and why should you write any SoftWare at all? Here is the easier way:


    xdimax.com/sub20/sub20.html

    This board is USB to RS232 (and SPI,I2C,...) adapter.
    You connect it to the PC USB port and take it's RS232 output and connect it to PIC.
    SUB-20 software has a GUI utility to send and receive data via RS232

    BTW there is a chance you will not need PIC at all. Look over SUB-20 interfaces and perhaps it will totally suite your needs.
    All of the interfaces are controlled via GUI application.

  4. #4
    I made a null modem cable in basic back at uni, that wasn't difficult, in basic all you had to do was open the COM port, the same as you would for a text file.

    The way the cable is wired should handle most of the flow of data. The tricky bit is communicating directly with the PIC from what I can see, and why would you want to?

    I am interested because very few things use the RS232/com port now, but I do know of one or two, which is why I am interested
    Yesterday is history, today is a gift, tomorrow is mystery.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •