From: Dan Henry on
On Mon, 31 May 2010 12:45:11 -0400, Neil <NeilKurzm(a)worldnet.att.net>
wrote:

>On 5/31/2010 11:36 AM, Chris H wrote:
>> Hi-Tech went bust and were bought by Microchip.

---snip---

>I did not know Hi-tech when Bust.

They didn't.

--
Dan Henry
From: Don McKenzie on
Dan Henry wrote:
> On Mon, 31 May 2010 12:45:11 -0400, Neil <NeilKurzm(a)worldnet.att.net>
> wrote:
>
>> On 5/31/2010 11:36 AM, Chris H wrote:
>>> Hi-Tech went bust and were bought by Microchip.
>
> ---snip---
>
>> I did not know Hi-tech when Bust.
>
> They didn't.

I thought they simply got an offer they couldn't refuse.

Cheers Don...




--
Don McKenzie

Site Map: http://www.dontronics.com/sitemap
E-Mail Contact Page: http://www.dontronics.com/email
Web Camera Page: http://www.dontronics.com/webcam
No More Damn Spam: http://www.dontronics.com/spam

These products will reduce in price by 5% every month:
http://www.dontronics-shop.com/minus-5-every-month.html
From: John Temples on
On 2010-05-31, Chris H <chris(a)phaedsys.org> wrote:
> In message <4c0398f8$0$22933$e4fe514c(a)news.xs4all.nl>, Meindert Sprang
><ms(a)NOJUNKcustomORSPAMware.nl> writes

>>I have been handed a PIC18 project including a CCS compiler. I have been
>>struggling for days now to try to work around something that seems to be a
>>compiler bug but CCS have not been very helpful to solve this project. To be
>>honest, this whole CCS thing seems to be targeted at embedded-challenged
>>people and many pre-cooked things and the almost impossibility to devide a
>>project in several C files are getting seriously in the way of an
>>experienced developer.....

> IAR are expensive but a very good compiler.

What do you mean by "very good"? The last time I evaluated IAR for
the PIC18, it generated code that was 50% larger than Hi-Tech (~36K vs
~24K). It was so large that I wasn't able to see if the code actually
worked, because it was too large for the 32K target processor.

--
John W. Temples, III
From: Leon on
On 1 June, 00:04, John Temples <use...(a)xargs-spam.com> wrote:
> On 2010-05-31, Chris H <ch...(a)phaedsys.org> wrote:
>
> > In message <4c0398f8$0$22933$e4fe5...(a)news.xs4all.nl>, Meindert Sprang
> ><m...(a)NOJUNKcustomORSPAMware.nl> writes
> >>I have been handed a PIC18 project including a CCS compiler. I have been
> >>struggling for days now to try to work around something that seems to be a
> >>compiler bug but CCS have not been very helpful to solve this project. To be
> >>honest, this whole CCS thing seems to be targeted at embedded-challenged
> >>people and many pre-cooked things and the almost impossibility to devide a
> >>project in several C files are getting seriously in the way of an
> >>experienced developer.....
> > IAR are expensive but a very good compiler.
>
> What do you mean by "very good"?  The last time I evaluated IAR for
> the PIC18, it generated code that was 50% larger than Hi-Tech (~36K vs
> ~24K).  It was so large that I wasn't able to see if the code actually
> worked, because it was too large for the 32K target processor.
>
> --
> John W. Temples, III

I use the Microchip C18 compiler for PIC18 and have had relatively few
problems.
From: Joe Chisolm on
On Mon, 31 May 2010 13:07:23 +0200, Meindert Sprang wrote:

> Hi Guru's,
>
> I have been handed a PIC18 project including a CCS compiler. I have been
> struggling for days now to try to work around something that seems to be
> a compiler bug but CCS have not been very helpful to solve this project.
> To be honest, this whole CCS thing seems to be targeted at
> embedded-challenged people and many pre-cooked things and the almost
> impossibility to devide a project in several C files are getting
> seriously in the way of an experienced developer.....
>
> I am now considering buying a decent C compiler and I'd like to have
> some opinions of you guys. I am opting between IAR, Hi-Tech and
> SourceBoost. Any comments and/or suggestions?
>
> Regards,
> Meindert

I have used the free Microchip compiler for several projects. So
far I have not come across any major warts except that out of the
box the libraries are compiled for large memory support (24 bit
pointers). First thing I did was recompile for small memory.

You have to remember it is a Harvard architecture and constants
stored in flash cannot be accessed as normal memory. The
compiler will take care of part of this. For the memcpy,
strcpy type library routines you have to remember what memory
the source and destination reside in, and use the proper
library routines.

--
Joe Chisolm
Marble Falls, Tx.