Lowson Posted June 19, 2013 Posted June 19, 2013 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.
moth Posted June 19, 2013 Posted June 19, 2013 Does C++ builder allow you to compile programs for the PIC? I've always used MPLAB and a programmer like the USB programmer . Are you working on a breadboard? Just to be clear I'm not endorsing any retailer in the links, just giving examples of the equipment I've used.
Daedalus Posted June 20, 2013 Posted June 20, 2013 (edited) 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. I don't think Borland C++ Builder will compile a binary that is compatible with your PIC. You might be able to get Microchip's compiler / linker and create build rules that will invoke them upon build. However, like moth, I've always used MPLAB with a USB programmer. Check out Microchip's website as well as the links moth gave you. Of course, the correct compiler / linker and static libraries will depend on your PIC. Here is a link to Microchip's website regarding your PIC: http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en010242 . You should be able to find just about everything you'll need at their website. Also you'll need to confirm how you plan on communicating with the PIC if it is suppose to receive or send commands to a PC. I've had both RS232 serial port and USB capable PICs. If the PIC simply drives the device with no interaction with a PC, then you can decide to not use the serial port or USB. Also, this should've been posted in the Computer Help subforum located in the Computer Science forum. Edited June 20, 2013 by Daedalus
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now