avr-gcc-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [avr-gcc-list] AVR UART as ANSI Terminal Interface


From: Ned Konz
Subject: Re: [avr-gcc-list] AVR UART as ANSI Terminal Interface
Date: Sat, 30 Oct 2004 10:05:53 -0700
User-agent: KMail/1.7

On Saturday 30 October 2004 9:34 am, Jani Rastas wrote:

> There is source code for that purpose, which can be found on
> AVRFreaks.net (appnote AVR244), but it is supposed to be compiled on
> IAR. How should the code be modified in order to be compiled on WinAVR?

My standard algorithm for this is:

until working correctly: {

 until compiling correctly: {
  try to compile program
  edit as needed to remove compile errors (IAR compiler reference is helpful 
here)
 }

 until linking correctly: {
  locate calls of missing routines or references to missing variables
  figure out what these did (IAR library reference is helpful here)
  write replacements
 }

 until working correctly: {
  edit code as needed to remove bugs
 }
}

And of course take notes while you're doing this so you can post it to 
AVRFreaks.net so others can benefit.

-- 
Ned Konz
http://bike-nomad.com



reply via email to

[Prev in Thread] Current Thread [Next in Thread]