Mac AVR development

View: New views
8 Messages — Rating Filter:   Alert me  

Mac AVR development

by Halvor Platou-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello,

Anyone know a good editor with make/avrdude integration for mac?


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by peterloron :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

http://www.obdev.at/products/crosspack/index.html

Also, I know folks are using both XCode and Eclipse on the mac for AVR  
work.

Google is your friend.

-Pete

On Oct 21, 2009, at 12:44 PM, Halvor Platou wrote:

> Hello,
>
> Anyone know a good editor with make/avrdude integration for mac?
>
>
> _______________________________________________
> AVR-chat mailing list
> AVR-chat@...
> http://lists.nongnu.org/mailman/listinfo/avr-chat



_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by Matthew MacClary-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Emacs (emacs -nw) is a great editor for the Mac. It provides quick
access to make and avrdude.

-Matt

On Fri, Oct 23, 2009 at 7:57 AM, Peter Loron <peterl@...> wrote:

> http://www.obdev.at/products/crosspack/index.html
>
> Also, I know folks are using both XCode and Eclipse on the mac for AVR work.
>
> Google is your friend.
>
> -Pete
>
> On Oct 21, 2009, at 12:44 PM, Halvor Platou wrote:
>
>> Hello,
>>
>> Anyone know a good editor with make/avrdude integration for mac?
>>
>>
>> _______________________________________________
>> AVR-chat mailing list
>> AVR-chat@...
>> http://lists.nongnu.org/mailman/listinfo/avr-chat
>
>
>
> _______________________________________________
> AVR-chat mailing list
> AVR-chat@...
> http://lists.nongnu.org/mailman/listinfo/avr-chat
>


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by Ruud Vlaming :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Wednesday 21 October 2009 21:44, Halvor Platou wrote:

> Anyone know a good editor with make/avrdude integration for mac?
I make use of eclipse.
  http://www.eclipse.org/cdt/

It took me a while to get used too, but it works fine now.
Of course avrdude is not integrated, but it is easy to define
it as 'external tool', and after that, you don't notice the
difference. I also let eclipse call the avr-gcc build by my own
toolchain installer. You can fine-tune everything.

The only thing what is not possible, is to let it generate my
own code style. ;-) But that is kind of akward too i guess :?

Ruud


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by Timo Sandmann :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1


Am 23.10.2009 um 17:43 schrieb Ruud Vlaming:
>> Anyone know a good editor with make/avrdude integration for mac?
> I make use of eclipse.
>  http://www.eclipse.org/cdt/
>
> It took me a while to get used too, but it works fine now.
> Of course avrdude is not integrated, but it is easy to define
> it as 'external tool', and after that, you don't notice the
> difference. I also let eclipse call the avr-gcc build by my own
> toolchain installer. You can fine-tune everything.

I'm using Eclipse with the AVR Eclipse Plugin (http://avr-eclipse.sourceforge.net 
).

Timo

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.12 (Darwin)

iEYEARECAAYFAkrh1k0ACgkQDH/BX4067fI5gACePMDQDq2kzT0HAds1etooHPN5
M5MAoL9xAv+qlr1J/K9sgdtO3lHFfBoo
=Q5Kn
-----END PGP SIGNATURE-----


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by Joerg Wunsch :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Matthew MacClary <macclary@...> wrote:

> Emacs (emacs -nw) is a great editor for the Mac.

Curious question from a non-MacOS but Emacs user: why -nw?  Is the
windowing version not supported?  (I use emacs -nw when being logged
into a remote side through ssh, but would always prefer the graphical
front-end otherwise.)

--
cheers, J"org               .-.-.   --... ...--   -.. .  DL8DTL

http://www.sax.de/~joerg/                        NIC: JW11-RIPE
Never trust an operating system you don't have sources for. ;-)


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by Matthew MacClary-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Oct 23, 2009 at 12:20 PM, Joerg Wunsch <j@...> wrote:
> Curious question from a non-MacOS but Emacs user: why -nw?  Is the
> windowing version not supported?  (I use emacs -nw when being logged
> into a remote side through ssh, but would always prefer the graphical
> front-end otherwise.)

There are two parts to this answer first: I seem to remember that at
least on older versions of MacOS emacs was included, but the GUI
didn't run. Also if the OP needed to install emacs then I would put
the chances of success for getting the console version running at 98%
and changes for gui version at 80% just because of added complexity
from toolkit and X server version compatibility and pre-requisites.

Second part of the answer is that I never used the Emacs GUI. It does
work fine and has many innovative features. However, I learned emacs
mostly from the console and started aliasing emacs to 'emacs -nw'
years ago so that I wouldn't accidentally try to start up a remote X
gui.

I find the console emacs to be slightly lower latency and it works on
every platform I have tried it on with minimal configuration and no X
server to setup. For example you can run emacs -nw under Cygwin fast
and easy, but running an X server is slower and less reliable. Since I
never touch the mouse when editing text, I don't miss any mouse
related GUI features. Also it is very fast to type ^Z to get to the
console and do other tasks or switch to a backgrounded emacs session
with a different working directory related to a completely different
project.

A guess a final point is that for a Mac user the command line editor
might look cool and unixy, but the emacs GUI might just look ugly.
(Maybe there is a nice carbon GUI available now for Mac I wouldn't
know.)

Probably more info than you wanted...

-Matt


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat

Re: Mac AVR development

by David Kelly :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

On Fri, Oct 23, 2009 at 01:01:49PM -0700, Matthew MacClary wrote:
> On Fri, Oct 23, 2009 at 12:20 PM, Joerg Wunsch <j@...> wrote:
> > Curious question from a non-MacOS but Emacs user: why -nw? ?Is the
> > windowing version not supported? ?(I use emacs -nw when being logged
> > into a remote side through ssh, but would always prefer the graphical
> > front-end otherwise.)
>
> There are two parts to this answer first: I seem to remember that at
> least on older versions of MacOS emacs was included, but the GUI
> didn't run.

I have the XCode development and X11 installed. Emacs is present and
runs in Terminal.app. Perhaps if X11 was running emacs could run GUI.

On MacOS X I prefer BBedit. Also keep a Terminal.app window open from
which to run Make and svn. SVN runs from within BBedit but for some
reason (that I've forgotten) I haven't bothered to teach BBedit about my
svn server.

Using svn from command line invokes vim to edit commit comments.  :-)

--
David Kelly N4HHE, dkelly@...
========================================================================
Whom computers would destroy, they must first drive mad.


_______________________________________________
AVR-chat mailing list
AVR-chat@...
http://lists.nongnu.org/mailman/listinfo/avr-chat