vote up 5 vote down star
4

We are starting a new project based a microchip PIC18F252. What is the best 'c' compiler to use?

flag

I would suggest going to the manufacturer's forum for each compiler and comparing the users' questions and complaints. – Jeanne Pindar Oct 26 at 19:16

12 Answers

vote up 4 vote down check

Hi-tech PICC has always been reliable for me and it has had many years of development.

link|flag
vote up 2 vote down

I have been using CCS for many years. I have found a few bugs but there support is great and I can develop quicker and easier with CCS than with C18 or HiTec

link|flag
vote up 2 vote down

I did extensive research on the Hitech PICC18 compiler and the Microchip C18 compiler a few years ago.

I think most people that decide to go with Microchip C18 compiler only because they see it when they go to the microchip website and are already familiar with MpLab from doing assembly (which is a terrible IDE IMHO).

HiTech's solution is much closer to ANSI C (hence code is much more portable). With C18 you have add all kinds of compiler specific keywords and your forced to manage memory much more.

  1. You have to specify which ram bank to allocate variables to.
  2. In order to have const string be allocated to Program space (instead of ram) you have to use the rom keyword.
  3. You cannot allocate variables which are larger then 256 bytes without editing a linker script.

An excellent comparison which goes way more in depth can be found here: http://www.xargs.com/pic/picc18-vs-c18.html

Besides from the compiler you also need to take into consideration the IDE. I am an avid eclipse fan and so I really liked HiTech's HiTide for this reason. However, since Microchip has purchased HiTech... it seems that they are no longer supporting HiTide. I don't think this is official... but from my experience with HiTech support... they aren't fixing bugs anymore which is a real shame.


I've also tried their pro compilers. I really like the idea. But, my project exceeded the auto param block requirements and was unable to use it. It also seemed to take a verrrryyy long to compile but it could have been b/c of the program complexity.

link|flag
vote up 0 vote down

IAR System has a PIC18 compiler/IDE: IAR Embedded Workbench for PIC18.

link|flag
vote up 1 vote down

use sdcc:

http://sdcc.sourceforge.net/

HTH

link|flag
vote up 0 vote down

I currently use CCS and hate it. It is so non-standard and so much of a subset of C, that it just sucks. I'm considering switching shortly. I'm going to try Microchip C18 compiler first and then I'll swallow hard and get HighTech which seems pretty solid from reviewing the trial version and samples.

link|flag
vote up 0 vote down

I would insist that you use the C18 compiler. It is extremely robust and very easy to use. It's a must have for professional development. It really depends on the size of the project you are working on.

Start with the free/student edition and you'll get a good feel for using it. If your project is small, that may be all you need. I just finished a large-ish size dev project on a PIC 18F and I was extremely satisfied with the C18 compiler.

link|flag
vote up 0 vote down

Does anyone have any experience with latest version of the HI-TECH PICC-18 PRO v9.61 compiler?

link|flag
See my edited answer. I usually used HI-TECH for non-PIC18 compilations where Microchip had nothing to offer. – Veynom Sep 18 '08 at 16:33
vote up 4 vote down
  1. Microchip C18 compiler: really the best and easiest to use. Perfect for professional use.
  2. HI-TECH: Used when Microchip does not work (it was for a PIC16).
  3. CCS
  4. SourceBoost

PS: I myself worked on the PIC18F25XX and PIC18F45xx family, so I know a tiny bit about this. ;)

PS2: In case of compiler bug (it happened to us), the Microchip team is quite reactive and new versions are released quite quickly. Try to find a local reseller who has contact with Microchip, then participate to a event with them and get direct contacts. Invaluable.

link|flag
vote up 2 vote down

I didn't like CCS, it was too quirky.

SourceBoost is not bad and pretty cheap, about £40.

The Microchip C18 compiler is the best IMO, but very expensive. There is a free demo / student edition, though.

link|flag
vote up 0 vote down

If you can get away with it (my preference would be to) use the PIC18 Assembler with MPLAB. It has the advantage of being free and relativly well documented alongside the fact that it has decent hardwars / debugger support. Its small instruction set and simplicity led itself to easy and quick coding.

If you're set on c though:

CCS is a good compiler to use, a bit buggy and quite expensive but also has good debugging capabilities.

Microsoft Embedded Studio (or something like that) is excellent if you're already used to the Visual Studio 6 methodology of writing c code. Again good hardware support and excellent debugger.

I believe that if youre looking for a free solution you can indeed get c compilers for MPLAB, although Ive personally never used any so I can't pass judgement.

link|flag
vote up 1 vote down

We use CCS and it's pretty good. Very slow, but it works well. Anyway, I don't have any comparison with other compilers, so there might be better choices.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.