PIC16 C compiler

2019-02-14 05:31发布

I am looking for a good C compiler for the PIC 16 family, working on Windows.

  • A couple of colleagues use bknudc but some seem to dislike it. Apparently you cannot use the linker efficiently, and it turns out that the best is to set all code in include files.

  • SDCC seems nice, but looks like it is still in beta, and not easy to setup or to have to deal with.

  • There are quite some other options, all are the best available according to themselves. I found some forums discussing the topic and no one seem to agree with one another. MikroC, CCS (expensive), HiTech, BoostC.

I would like to have some real information on what's good and what's bad.

If I got it right, the PIC16 architecture is not really C-friendly? Is there a compiler that lets the programmer work in ANSI C anyway? And a way to setup a nice enough debugger?

8条回答
Summer. ? 凉城
2楼-- · 2019-02-14 05:52

You're right in your assessment that PIC16 is not really C-friendly. If you want to code in C you are much much better off doing it with PIC18.
Microchip gives out an excellent and free IDE and compiler called MPLAB for the PIC18. Its really easy to work work. Plus the PIC18 family is generally more powerful but has some chips with a not much larger footprint than that of the PIC16 family.
Starting to develop a new product with PIC16 is a not a good idea.

查看更多
迷人小祖宗
3楼-- · 2019-02-14 05:57

The BKND C compiler is indeed quirky, and doesn't really support the linker well. But then, most of the PIC16 chips are small enough that it's not really a big deal to just include all your source in one C file.

I did some comparison of the BKND and HiTECH C compiler, and the BKND seems to generate significantly better code. At least in my application, this was necessary for meeting the speed/space requirements of my application on such a small MCU.

Many of the quirks of the BKND compiler (extra data types, etc) are very helpful for tuning your code to run on a small MCU. The standard C you'd write on an ARM or x86 really isn't appropriate for a tiny CPU with only a couple hundred bytes of RAM anyway.

For the larger PIC chips (18, 24F, etc) the C compiler supplied by Microchip is great.

查看更多
太酷不给撩
4楼-- · 2019-02-14 06:08

I have found Hi-Tech to be very good. I'd have voted up Louis' answer if I had a better reputation. I also agree that the PIC18F is a very good alternative. Look for a k-series part as these are the newer, better, and cheaper parts. They also have very low current draw (if thats important to you).

查看更多
再贱就再见
5楼-- · 2019-02-14 06:09

HI-TECH has a C compiler for the PIC16 and they even offer a Freeware version.
HI-TECH C Compiler

查看更多
Animai°情兽
6楼-- · 2019-02-14 06:09

Sourceboost BoostC is very nice C compiler for PIC12/PIC16/PIC18 series. They also have BoostC++ and BoostBasic compiler. Comes with fine IDE, has basic simulation options. I much like it over CCS and Microchip C18 syntax. Feels cleaner and less cluttered. However, it is not free either but licenses are quite cheap. Free/Lite version allows 2kB of code. With this you can already do alot.

查看更多
干净又极端
7楼-- · 2019-02-14 06:12

Just for completion:

There is a really good compiler (xc8) from Microchip. The compiler comes in two version:

Free and Pro

The code from the Free version is up to 50% smaller larger than the Pro version.
The xc8 is fine for every 8 Bit PIC (PIC10, PIC12, PIC16, PIC18)

查看更多
登录 后发表回答