Prev: flash memory write endurance
Next: cycles net
From: Don Bruder on 2 Dec 2009 15:35 In article <slrnhhdhgc.ndq.usenet(a)xargs-spam.com>, John Temples <usenet(a)xargs-spam.com> wrote: > On 2009-12-02, Don Bruder <dakidd(a)sonic.net> wrote: > > Failing that, can anyone point me to any tools, free/cheap preferred, > > targeting the PIC18 chip-family on the Mac? > > Hi-Tech's compilers support the PIC18 and run on the Mac. They have a > free "Lite" mode. That's "the one at the htsoft.com website" that I mentioned having no luck with - I've tried three downloads of it, and all three show the right number of bytes transferred, but all three barf with a "Verifying archive integrity...Error in checksums: <10-12 digit number> is different from <different 10-12 digit number" message, and nothing installed when I try to execute the install script. -- Email shown is deceased. If you would like to contact me by email, please post something that makes it obvious in this or another group you see me posting in with a "how to contact you" address, and I'll get back to you.
From: Don Bruder on 2 Dec 2009 15:37 In article <memo.20091202173129.372B(a)steve.bmc>, j80k-vpfc(a)dea.spamcon.org (Steve) wrote: > Is this the Velleman board? (Can't recall the number) Dunno - Sparkfun electronics sells it - I think it's actually an "OLIMEX", if the image they're using is accurate. -- Email shown is deceased. If you would like to contact me by email, please post something that makes it obvious in this or another group you see me posting in with a "how to contact you" address, and I'll get back to you.
From: Sherm Pendley on 2 Dec 2009 15:56 Don Bruder <dakidd(a)sonic.net> writes: > Seems to me like there ought to be something out there to take care of > this dilemma, considering we've already got gcc as the "guts" of XCode. > As I understand things, gcc is supposed to mix and match back ends to > produce code for whatever system/device somebody has coded a back end to > handle - Two prime examples being the production of both PPC code > (possibly in multiple flavors, if needed) and Intel code in a single > build session. I haven't created such a beast, but I do know that Xcode can be convinced to use toolchains other than those provided by Apple. Cocotron, for example, uses a MingW32-based toolchain to cross-compile Windows apps from within Xcode. You might try asking those folks how they did it. sherm--
From: IanM on 2 Dec 2009 17:44 Don Bruder wrote: > In article <slrnhhdhgc.ndq.usenet(a)xargs-spam.com>, > John Temples <usenet(a)xargs-spam.com> wrote: > >> On 2009-12-02, Don Bruder <dakidd(a)sonic.net> wrote: >>> Failing that, can anyone point me to any tools, free/cheap preferred, >>> targeting the PIC18 chip-family on the Mac? >> Hi-Tech's compilers support the PIC18 and run on the Mac. They have a >> free "Lite" mode. > > That's "the one at the htsoft.com website" that I mentioned having no > luck with - I've tried three downloads of it, and all three show the > right number of bytes transferred, but all three barf with a "Verifying > archive integrity...Error in checksums: <10-12 digit number> is > different from <different 10-12 digit number" message, and nothing > installed when I try to execute the install script. > If you can run Win32 Console applications OK via a DOS emulator or the like, look at SourceBoost BoostC. Sorry no Native MAC/Linux versions yet. The unregistered BoostC PIC18 is limited to 4Kb ROM, 2 banks RAM non-commercial use. Unlike the competition, the unregistered free mode does NOT have optimisation disabled. I know there are people running it on Linux so getting it going on a MAC shouldn't be too tough. Worst Case, you install on Windows and copy the command line tools. It runs on any windows from Win98 or Win2K upwards and isn't a resource hog (full install + optional library source licence <32Mb and will run under '98 on a PC with only 32Mb RAM - rather less than their minimum system requirements :-) ) so you don't need the latest windows emulator. The licence upgrade process can be done to each tool from the command line, so if you have the basic setup working and you run out of ROM or RAM, talk to Dave & Pavel (the SourceBoost team) who are VERY responsive about what it takes to register the tools on a non windows machine, then buy a licence. <http://www.sourceboost.com> You will find it generates a lot tighter code than the competition and also includes a full PIC16 compiler and a trial version of the NOVO cooperative RTOS for PIC16 and PIC18 targets. (Limited threads/semaphores and cant be reconfigured to reduce resources without tha licence for NOVO/Library source) My only interest is I am a happy BoostC user. -- Ian Malcolm. London, ENGLAND. (NEWSGROUP REPLY PREFERRED) ianm[at]the[dash]malcolms[dot]freeserve[dot]co[dot]uk [at]=@, [dash]=- & [dot]=. *Warning* HTML & >32K emails --> NUL:
From: Nobody on 3 Dec 2009 14:56
On Wed, 02 Dec 2009 22:44:18 +0000, IanM wrote: > If you can run Win32 Console applications OK via a DOS emulator or the > like, look at SourceBoost BoostC. Sorry no Native MAC/Linux versions yet. I had a look at that, but it didn't seem to understand some standard C syntax (e.g. "unsigned long int"; insisting that you use "unsigned long" instead), which meant that it couldn't compile e.g. Microchip's USB framework. |