Re: [avr-libc-dev] Re: [avr-gcc-list] dwarf2 information, is this a bug?

2005-10-17 Thread Eric Weddington
Patrick Blanchard wrote: On Mon, 2005-10-17 at 10:38 -0600, Eric Weddington wrote: Björn Haase wrote: BTW: You are now employed by Atmel, Eric? You're observant. :-) He's not the only one! I am following this thread but noticed the change. Yes, I am, though I haven't made that widely

Re: [avr-gcc-list] New install not working

2005-11-09 Thread Eric Weddington
to the case of the files as they appear in the Mmakefile. Perhaps the make utility released with the newer WinAVR was compiled with a different set of options. Hi Dave, Yes, IIRC, the GNU Make is now case-sensitive, so that could be the issue. -- Eric Weddington

Re: [avr-gcc-list] Basic inline asm question

2005-11-23 Thread Eric Weddington
__volatile__(ldi %0, %1 : =r (addrl) : M (???)); __asm__ __volatile__(ldi %0, %1 : =r (addrh) : M (???)); I shoud try various typecasts in [???] but the compiler never match the constraints... Coud you explain more of what you are trying to do by using inline assembly? -- Eric Weddington

Re: [avr-gcc-list] ld: crts8515.o: No such file; with avr-gcc under Linux

2005-11-29 Thread Eric Weddington
Günter Dannoritzer wrote: Eric Weddington wrote: You need to use the -mmcu= option for the link stage too, and specify your microcontroller type. I actually used that Makefile with WinAVR before and it always worked. I tried it with the broken installation and it did not make any

Re: [avr-gcc-list] use of specifin RAM location

2005-11-29 Thread Eric Weddington
David Kelly wrote: The cleanest way to pull this off would be to lay a structure on the memory-mapped device and allocate it in a named section. See http://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Variable- Attributes.html#Variable-Attributes Then in the linking stage define the location of the

Re: [avr-gcc-list] multiply by constant always expands to int

2005-12-05 Thread Eric Weddington
) is being done in 4.x and specifically in the GCC SVN HEAD which will become GCC 4.1 upon release. Björn Hasse could probably better answer your question about GCC internals. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org

Re: [avr-gcc-list] How to rebuild AVR-GCC for Windows?

2005-12-05 Thread Eric Weddington
saw there was a 3.4.5, any reason to use that? Generally, anything later would be good as it fixed more bugs. I want to avoid 4.x.x for the moment. Hmm. Too bad, I'm putting together WinAVR but I'm using 4.0.1. Any particular reason to avoid 4.x.x? -- Eric Weddington

Re: [avr-gcc-list] How to rebuild AVR-GCC for Windows?

2005-12-06 Thread Eric Weddington
. ;-) -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] How to rebuild AVR-GCC for Windows?

2005-12-06 Thread Eric Weddington
projects sometime in the near future. Lately I haven't been very successful with determining when I'll be able to get things done. I know that I should have some more time to devote to tools here in the near future (within a month). -- Eric Weddington

Re: [avr-gcc-list] multiply by constant always expands to int

2005-12-06 Thread Eric Weddington
not exactly easy to get through; it takes a lot of perserverance to learn GCC internals. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] Placing const data at specific flash address.

2005-12-12 Thread Eric Weddington
differences between the ARM target of GCC and the AVR target of GCC that it may be difficult to answer your question here. Thanks -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr

Re: [avr-gcc-list] Home of avr-mem.sh?

2005-12-21 Thread Eric Weddington
yet to add the new devices to the script. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] Home of avr-mem.sh?

2005-12-30 Thread Eric Weddington
Eric Weddington wrote: Eventually I would like to change this. Ideally, I would like to have a patch for avr-size where it can be given a parameter to produce this output on it's own. It would also have to have another parameter to give the processor type, just as in the script. Another ideal

Re: [avr-gcc-list] Home of avr-mem.sh?

2005-12-30 Thread Eric Weddington
Joerg Wunsch wrote: Eric Weddington [EMAIL PROTECTED] wrote: Attached is a draft patch to binutils 2.16.1 to implement part of it. This patch will allow avr-size to report the memory sizes in the same kind of format as the avr-mem.sh script. ... -int berkeley_format = BSD_DEFAULT

Re: [avr-gcc-list] Home of avr-mem.sh?

2005-12-30 Thread Eric Weddington
Eric Weddington wrote: Joerg Wunsch wrote: Even for the AVR, I think you should not change default formats. Other people's scripts could easily stumble across it, as they might assume the 20+ years historical BSD output format to be the default. Sure, good point. I'll change that back

Re: [avr-gcc-list] Problems with latest build?

2006-01-03 Thread Eric Weddington
problems, let me know personally: I could send you the executable via email but you'd have to have a big box to take it. Plus it's an executable format, so let me know if you have any attachment filters we would have to work around. -- Eric Weddington

Re: [avr-gcc-list] Home of avr-mem.sh?

2006-01-03 Thread Eric Weddington
. Thanks for the catch Rolf! Eric Weddington --- binutils-2.16.1/binutils/size.c Thu Mar 3 04:46:12 2005 +++ binutils-2.16.1-new/binutils/size.c Fri Dec 30 15:37:13 2005 @@ -33,10 +33,31 @@ #include libiberty.h #include getopt.h -#ifndef BSD_DEFAULT -#define BSD_DEFAULT 1 +typedef enum

Re: [avr-gcc-list] Using AT90PWM2/3

2006-01-11 Thread Eric Weddington
Manual. - Update Installer. - Test toolchain and final package. The new WinAVR release will contain support for those devices. FYI: WinAVR will contain: Binutils 2.16.1 GCC 3.4.5 avr-libc 1.4.2 Insight 6.4 avrdude latest from CVS simulavr 0.1.2.1 avarice latest from CVS SRecord 1.23 -- Eric

Re: [avr-gcc-list] New WinAVR release

2006-01-12 Thread Eric Weddington
Royce Pereira wrote: Hi, On Fri, 13 Jan 2006 01:13:42 +0530, Eric Weddington [EMAIL PROTECTED] wrote: manual, intructions how to add paths manually, or at least, a list of paths to be added? Have you looked in the WinAVR User Manual? Did I forget to have a section about

Re: [avr-gcc-list] New WinAVR release

2006-01-12 Thread Eric Weddington
Royce Pereira wrote: Hi, On Thu, 12 Jan 2006 23:54:03 +0530, Eric Weddington [EMAIL PROTECTED] wrote: 2. In a Win98-SE installation, paths were not added to the environment automatically (more serious). We (Colin and I) have had difficulties with that one. I'm not sure that I can

Re: [avr-gcc-list] How to set section order

2006-01-18 Thread Eric Weddington
. But then I'm completely lost in the linker manual. Does anybody knows how to do this? Does your smallFunction() come before bootloader() in your .c file? -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman

Re: [avr-gcc-list] BUG? Comparing of words error.

2006-01-18 Thread Eric Weddington
guys first. Any idear what might be at play here? avr-libc FAQ #1: http://www.nongnu.org/avr-libc/user-manual/FAQ.html Try declaring RotCount as volatile. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http

Re: [avr-gcc-list] Does anybody have a variant of memcpy that uses ELPM?

2006-01-19 Thread Eric Weddington
://savannah.nongnu.org/task/?group=avr-libc This is a good idea to have in avr-libc and I don't want the issue to get lost. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] [ANN] WinAVR 20060119 Released

2006-01-20 Thread Eric Weddington
. Try to copy the avr tree into msys tree: mkdir C:\msys\1.0\WinAVR cp -a /c/WinAVR/avr/ /c/msys/1.0/WinAVR/ Thank you Bernd! You just found the issue. Now I have to figure out the best way to get around it. This definitely means a new release. -- Eric Weddington

[avr-gcc-list] [ANN] WinAVR 20060125 Released

2006-01-25 Thread Eric Weddington
to figure out an obscure workaround for it. Thanks. Eric Weddington = WinAVR (pronounced whenever) is a suite of executable, open source software development tools for the Atmel AVR series of RISC microprocessors hosted on the Windows platform

Re: [avr-gcc-list] (no subject)

2006-03-16 Thread Eric Weddington
Yannick PODGORSKI wrote: Hi all, I try to install the GNU tool chain as in http://www.nongnu.org/avr-libc/user-manual/install_tools.html 2 weeks ago, I made this with : - binutils 2.16 - gcc 3.4.5 - avr libc 1.4.3 I can make all correct. There is no problem. Today, I try to make the

Re: [avr-gcc-list] linker problem?

2006-03-16 Thread Eric Weddington
to know if the compiler bug that showed up in 3.4.5 was fixed for 3.4.6. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] linker problem?

2006-03-16 Thread Eric Weddington
Eric Weddington wrote: the environment is.. gcc 3.4.6 Oh, interesting. I didn't release that 3.4.6 had been released. -^ realize -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http

Re: [avr-gcc-list] linker problem?

2006-03-16 Thread Eric Weddington
the same problem occures. Maybe I sould try 3.4.5. Well, if it didn't work with 3.4.4 and 3.4.6, I doubt that 3.4.5 will magically fix it. ;-) -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman

Re: [avr-gcc-list] linker problem?

2006-03-16 Thread Eric Weddington
will magically fix it. ;-) Surely, it is.. I want to clutch even at straws. :-) Have you tried taking a look at the disassembly / assembly output of the compiler? -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http

Re: [avr-gcc-list] Small AVR

2006-05-01 Thread Eric Weddington
; on other ATtinys, you can only use assembly. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] Small AVR

2006-05-01 Thread Eric Weddington
Jerome Kerdreux wrote: On 5/1/2006, Eric Weddington [EMAIL PROTECTED] wrote: Jerome Kerdreux wrote: I'm wondering what it the cheapier AVR you can program with avr-gcc without too much memory issue. (I used to program on ATMega8 but they cost quite 5 Euros right here.. ) It depends

Re: [avr-gcc-list] Faulty code generation with three uint64_t args to function

2006-05-02 Thread Eric Weddington
in avrfreaks.net where the uint64_t argument is passed in a variadic argument list. I assume both are the same. I see that you reported this against 4.1.0. Do you know if this also exists on 3.4.6? -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list

Re: [avr-gcc-list] Faulty code generation with three uint64_t args to function

2006-05-02 Thread Eric Weddington
Galen Seitz wrote: Eric Weddington [EMAIL PROTECTED] wrote: Joerg Wunsch wrote: I just created the following bug: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27386 Any suggestions for a fix are welcome. I tried to find the part of GCC responsible for the fault, but have no clues about where

Re: [avr-gcc-list] IR Remote control protocol

2006-05-12 Thread Eric Weddington
projects. Perhaps there is one that will meet your needs. -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

Re: [avr-gcc-list] Two interrupts one function?

2006-05-15 Thread Eric Weddington
and __vector_3 is the alias that you are newly defining. This way, you will be avoiding the unnecessary jump. Would it be worth it to work this up in a C macro and add it to avr-libc? This is a fairly common question and it would be nice to have a simple solution for users. -- Eric Weddington

Re: [avr-gcc-list] help in error: C++ compiler not installed on this system

2006-05-17 Thread Eric Weddington
Leonardo B. Oliveira wrote: Hello everyone, I´ve installed avr-gcc in my linux. see: [EMAIL PROTECTED]:~/foo avr TAB external command avr-addr2line avr-c++filtavr-gcc-4.1.0 avr-ld avr-objcopyavr-readelfavr-strip avr-ar avr-cppavr-gccbug

Re: [avr-gcc-list] End of program symbol

2006-06-08 Thread Eric Weddington
Simon Han wrote: Hello, I am working on a simple file system for logging data in program flash. Generally, this is a bad idea, as the number of flash read/write cycles is low compared to EEPROM or RAM. -- Eric Weddington ___ AVR-GCC

Re: [avr-gcc-list] Assembler in gcc

2006-06-20 Thread Eric Weddington
. The project name is avr-libc, please note the c at the end. This is the C language library for the AVR GCC toolchain. avr-lib could also easily mean the Procyon AVRLib library which is found at: http://hubbard.engr.scu.edu/avr/avrlib/ Eric Weddington Paulo da Silva wrote: Sorry, but I am asking

Re: [avr-gcc-list] Intrigueing Message

2006-07-17 Thread Eric Weddington
: file C:/DOCUME~1/EWEDDI~1/LOCALS~1/Temp/cc0ycaaa.s not found in symbol table, ignoring Yeah, it's a good clue. But I'm still at a loss as to why you are getting that warning message. I'm the creator of WinAVR, so I build it on my machine. Hence EWEDDI stands for my name: Eric Weddington. I'm

Re: [avr-gcc-list] Intrigueing Message

2006-07-18 Thread Eric Weddington
has been deprecated for a while and I certainly don't use it any more. Thanks! -- Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Open Lint

2006-07-31 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Don Ingram Sent: Friday, July 28, 2006 2:44 PM Cc: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] Open Lint Hi All, Is there a more up to date project than Splint or is it the

RE: [avr-gcc-list] SRAM with winavr

2006-08-22 Thread Eric Weddington
you can arrange how you use your external memory that might be useful to you. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Backporting the ATmega256X patch to binutils-2.17?

2006-08-25 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Bernd Trog Sent: Friday, August 25, 2006 9:41 AM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] Backporting the ATmega256X patch to binutils-2.17? Hi, has someone already

[avr-gcc-list] AVR toolchain patch hell

2006-09-03 Thread Eric Weddington
to help the overall situation, especially with all the various bug reports Thanks for your consideration, Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

[avr-gcc-list] RE: AVR toolchain patch hell

2006-09-07 Thread Eric Weddington
Hi Rolf, -Original Message- From: Rolf Ebert [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 06, 2006 4:23 PM To: Eric Weddington Cc: 'Joerg Wunsch'; 'Bernd Trog'; Denis Chertykov; Marek Michalkiewicz; Björn Haase; Anatoly Sokolov; Brian Dean; avr-gcc-list@nongnu.org

RE: [avr-gcc-list] int32_t Support

2006-09-14 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Haase Bjoern (PT-BEU/EMT) Sent: Thursday, September 14, 2006 3:07 AM To: avr-gcc-list@nongnu.org Subject: AW: [avr-gcc-list] int32_t Support Short answer: int32_t works. int64_t does

RE: [avr-gcc-list] Makefile problem and solution

2006-09-27 Thread Eric Weddington
, and as an independently used makefile. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] linking bootloader and main application at once

2006-09-29 Thread Eric Weddington
with the startup code: you cannot have two separate sections of startup code, hence no two groups of .initx sections. You will have to redesign you application and bootloader to take this into account. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC

RE: [avr-gcc-list] avr-libc: ntohs et al.

2006-09-29 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun Jackman Sent: Friday, September 29, 2006 1:17 PM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] avr-libc: ntohs et al. Does avr-libc implement ntohs and friends? Not to my

RE: [avr-gcc-list] linking bootloader and main application at once

2006-10-02 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun Jackman Sent: Monday, October 02, 2006 9:29 AM To: Jan Menzel Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] linking bootloader and main application at once On 10/2/06,

RE: [avr-gcc-list] OT: anyone successfully use the CLKPR feature in themega88?

2006-10-03 Thread Eric Weddington
-Original Message- From: larry barello [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 10:54 AM To: 'Eric Weddington' Cc: AVR GCC List Subject: RE: [avr-gcc-list] OT: anyone successfully use the CLKPR feature in themega88? Ok, if you insist. It just is so off

RE: [avr-gcc-list] OT: anyone successfully use the CLKPR feature in themega88?

2006-10-06 Thread Eric Weddington
information in their knowledge base about this. Sorry I don't have anything more definitive about this. Eric Weddington -Original Message- From: larry barello [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 03, 2006 2:30 PM To: 'Eric Weddington' Subject: RE: [avr-gcc-list] OT

RE: [avr-gcc-list] Backporting the ATmega256X patch to binutils-2.17?

2006-10-06 Thread Eric Weddington
Thanks, Joerg, for this correction. I've now fixed my patch. Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Joerg Wunsch Sent: Thursday, September 28, 2006 4:02 PM To: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Backporting

RE: [avr-gcc-list] C coding question

2006-10-10 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Paulo Marques Sent: Monday, October 09, 2006 4:39 AM To: larry barello Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] C coding question larry barello wrote: [...] So I said:

RE: [avr-gcc-list] AVR byte swap optimization

2006-11-17 Thread Eric Weddington
You could always equate the macro to some inline assembly like what is done for a number of avr-libc macros. Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun Jackman Sent: Friday, November 17, 2006 4:31 PM To: avr-gcc

RE: [avr-gcc-list] Re: AVR byte swap optimization

2006-11-18 Thread Eric Weddington
it is implemented on HEAD, then branched, released from a branch, and then when it shows up in binary distributions. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Re: AVR byte swap optimization

2006-11-19 Thread Eric Weddington
-Original Message- From: Steven Bosscher [mailto:[EMAIL PROTECTED] Sent: Sunday, November 19, 2006 3:55 AM To: Eric Weddington Cc: Paul Brook; gcc@gcc.gnu.org; Shaun Jackman; avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Re: AVR byte swap optimization On 11/19/06, Eric

RE: [avr-gcc-list] Binary image length

2006-11-21 Thread Eric Weddington
utilities: http://sourceforge.net/projects/srecord The Srecord utilities can manipulate load files, including in the Intel hex format. So with some scripting trickery you can post-process your hex file to calculate and insert the data actually in the hex file. HTH Eric Weddington

RE: [avr-gcc-list] case statement broken in 4.1.2?

2006-11-28 Thread Eric Weddington
-Original Message- From: Eric Weddington [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 28, 2006 12:08 PM To: 'Henning Paul'; 'avr-gcc-list@nongnu.org' Subject: RE: [avr-gcc-list] case statement broken in 4.1.2? -Original Message- From: [EMAIL PROTECTED

RE: [avr-gcc-list] case statement broken in 4.1.2?

2006-11-29 Thread Eric Weddington
to do with m256x patch. I'd like to get this resolved soon so we don't have any regressions. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Strings and structures in program memory

2006-12-01 Thread Eric Weddington
Unfortunately, no. That's why it is a FAQ. ;-) Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Trampas Sent: Friday, December 01, 2006 11:59 AM To: 'AVR GCC List' Subject: RE: [avr-gcc-list] Strings and structures

RE: [avr-gcc-list] Optimizing a 16-bit * 8-bit - 24-bit multiplication

2006-12-07 Thread Eric Weddington
Hi Shaun, Please add this to a Patch Tracker in the avr-libc project page on Savannah. Emails have a tendency to get lost and I wouldn't want this to be forgotten. Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun

RE: [avr-gcc-list] Optimizing a 16-bit * 8-bit - 24-bit multiplication

2006-12-08 Thread Eric Weddington
-Original Message- From: Shaun Jackman [mailto:[EMAIL PROTECTED] Sent: Thursday, December 07, 2006 9:40 AM To: Eric Weddington Cc: Galen Seitz; avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Optimizing a 16-bit * 8-bit - 24-bit multiplication On 12/7/06, Eric Weddington

RE: [avr-gcc-list] PPP protocol

2006-12-11 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of andi suhandi Sent: Monday, December 11, 2006 3:21 AM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] PPP protocol Does anyone has implement PPP protocol for dial up modem in avr ?

RE: [avr-gcc-list] PPP protocol

2006-12-11 Thread Eric Weddington
Oh, my apologies. For some reason I thought that uIP had PPP in its list of protocols. Has looking on Google helped? -Original Message- From: andi suhandi [mailto:[EMAIL PROTECTED] Sent: Monday, December 11, 2006 3:36 AM To: Eric Weddington; avr-gcc-list@nongnu.org Subject: Re

RE: [avr-gcc-list] volatile...

2006-12-14 Thread Eric Weddington
) typecast as a pointer to a *volatile* uint8_t (or uint16_t for 2 byte registers). This is very important as many of these memory-mapped registers can be written by the hardware in addition to the mainline code. This scenario is similar to the mainline/ISR scenario above. Eric Weddington

RE: [avr-gcc-list] Error making avr-gcc (compiling libssp/ssp.c)

2006-12-14 Thread Eric Weddington
AFAIK, in AVR GCC 4.x, you must add this to the configure: --disable-libssp Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Rick Mann Sent: Thursday, December 14, 2006 7:21 PM To: avr-gcc-list@nongnu.org Subject: [avr-gcc

RE: [avr-gcc-list] Error when compiling GCC 4.1.1

2007-01-29 Thread Eric Weddington
There was a slight difference between the patch that you have and the patch that Joerg Wunsch and I use. The one we use is attached. Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Gerard Marull Paretas Sent: Monday, January 29, 2007

RE: [avr-gcc-list] AVR-GCC variable size

2007-01-29 Thread Eric Weddington
You can find out your answer by looking in the stdint.h file in install\avr\include: /** \name Fastest minimum-width integer types Integer types being usually fastest having at least the specified width */ ... typedef uint8_t uint_fast8_t; If you have it in your stdint.h file, then it's

RE: [avr-gcc-list] Installing WinAVR 20070122 broke older 3.4.5 install?

2007-01-31 Thread Eric Weddington
get it to work. I would suggest just removing these keys altogether and see if it works for your system. HTH Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Bob Paddock Sent: Wednesday, January 31, 2007 10:04 AM To: avr-gcc

RE: [avr-gcc-list] Installing WinAVR 20070122 broke older 3.4.5install?

2007-01-31 Thread Eric Weddington
12:16:44 -0500, Eric Weddington [EMAIL PROTECTED] wrote: Yes, there are three keys being installed in the registry: HKLM\Software\Free Software Foundation\WinAVR\GCC HKLM\Software\Free Software Foundation\WinAVR\BINUTILS HKLM\Software\Free Software Foundation\WinAVR\G++ Each

RE: [avr-gcc-list] Installing WinAVR 20070122 broke older3.4.5install?

2007-01-31 Thread Eric Weddington
-Original Message- From: Bruce D. Lightner [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 31, 2007 2:35 PM To: AVR GCC List Cc: Eric Weddington Subject: Re: [avr-gcc-list] Installing WinAVR 20070122 broke older3.4.5install? Eric Weddington wrote

RE: [avr-gcc-list] Which is the Best Library?

2007-02-01 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of AVR Development Sent: Thursday, February 01, 2007 1:53 AM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] Which is the Best Library? What is the best library for ATmega which will

RE: [avr-gcc-list] File versions used to build latest WinAVR ?

2007-02-03 Thread Eric Weddington
Hi Anton, I usually have that information in the WinAVR User Manual. Is it not there? I know that the website has not been updated yet. Let me know. Thanks, Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Anton Erasmus

RE: [avr-gcc-list] q: shared code repositories

2007-02-24 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Dave Hylands Sent: Saturday, February 24, 2007 6:39 PM To: David McNab Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] q: shared code repositories Hi David, Is there anything

RE: [avr-gcc-list] More observations: array of pointers to functions

2007-02-26 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of David McNab Sent: Sunday, February 25, 2007 5:16 PM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] More observations: array of pointers to functions I tried the approach of:

RE: [avr-gcc-list] avr-gcc 'documentation'

2007-02-28 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Joerg Wunsch Sent: Wednesday, February 28, 2007 3:57 PM To: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] avr-gcc 'documentation' So far, the best international resource is still

RE: [avr-gcc-list] gcc-avr/avr-libc wiki

2007-03-02 Thread Eric Weddington
be having this discussion in the first place. Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] avrdude: Using debugWire to program flash

2007-03-02 Thread Eric Weddington
Hi Shaun, Emails have a tendency to get lost easily. Can you fill out a bug report on the avrdude project on Savannah? That way this issue won't be forgotten. Thanks, Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun

RE: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++)

2007-03-06 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Dmitry K. Sent: Tuesday, March 06, 2007 12:26 AM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++) Hi, wrong code by avr-gcc 4.1.1:

RE: [avr-gcc-list] Warnings with virtual methods in avr-g++

2007-03-06 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Steve Franks Sent: Monday, February 26, 2007 11:22 AM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] Warnings with virtual methods in avr-g++ Eric/Joerg/et.al : seeing as I now have

RE: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++)

2007-03-06 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Dmitry K. Sent: Tuesday, March 06, 2007 7:31 PM To: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++) On Wednesday 07 March 2007 04:10, Eric

RE: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++)

2007-03-06 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Dmitry K. Sent: Tuesday, March 06, 2007 9:12 PM To: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++) On Wednesday 07 March 2007 13:18, Eric

RE: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++)

2007-03-07 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Shaun Jackman Sent: Wednesday, March 07, 2007 3:04 PM To: Dmitry K. Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++) On 3/6/07, Dmitry K.

RE: [avr-gcc-list] Endless loop: uchar c; for (c=1; c; c++)

2007-03-08 Thread Eric Weddington
Jackman wrote: On 3/7/07, Eric Weddington [EMAIL PROTECTED] wrote: Hi Shaun, Thanks a lot for doing the leg work on this! But I have a favor to ask: Can you find out approximately *when* this got fixed? i.e., can you test 4.1.2, and the current 4.2.x branch to see if it's

RE: [avr-gcc-list] avr-gcc 4 for tinyos

2007-03-09 Thread Eric Weddington
it. May you give me any hints? Thanks a lot! Ask the good folks over at: http://www.tinyos.net/ For older versions they have their own distribution of avr-gcc because they required some special patches for it. Eric Weddington ___ AVR-GCC-list mailing

[avr-gcc-list] [RFC] avrdude Feature Request and Call for Volunteers

2007-03-09 Thread Eric Weddington
. I also know that there is never enough help on the Open Source projects. Please let us know if you would be interested in helping out in implementing this feature on avrdude. :-) Thanks, Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list

RE: [avr-gcc-list] avr-gcc-gdb

2007-03-09 Thread Eric Weddington
-GDB_and_AVaRICE_Guide.pdf HTH Eric Weddington avarice.pdf Description: Adobe PDF document ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Re: [avrdude-dev] [RFC] avrdude Feature Request andCall for Volunteers

2007-03-09 Thread Eric Weddington
for Volunteers Eric, I generally agree with your idea to allow setting the fuse values from within the source code. I've tossed that idea around on the avrdude list a couple of years ago already. Yes. But now it's really needed. :-) As Eric Weddington wrote: I propose that we standardize

RE: [avr-gcc-list] I am getting lost in indirections - help please

2007-03-15 Thread Eric Weddington
Avr-libc user manual, FAQ, #14: http://www.nongnu.org/avr-libc/user-manual/FAQ.html#faq_rom_array -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Juergen Harms Sent: Thursday, March 15, 2007 11:56 AM To: avr-gcc-list@nongnu.org Subject:

RE: [avr-gcc-list] C and AS programs - compiled together

2007-03-15 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Grzegorz !Kubik Sent: Thursday, March 15, 2007 3:55 PM To: avr-gcc-list@nongnu.org Subject: [avr-gcc-list] C and AS programs - compiled together I am trying to combine part of software

RE: [avr-gcc-list] Question about code size

2007-03-16 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Dave Hylands Sent: Friday, March 16, 2007 2:00 AM To: Erik Christiansen Cc: AVR-GCC-list Subject: Re: [avr-gcc-list] Question about code size hi Erik. Does -fno-default-inline do any

RE: [avr-gcc-list] Question about code size

2007-03-17 Thread Eric Weddington
Would that be considered an optimization already that is worth a GCC bug report? I would think so. As we always keep saying, emails get lost, so it is better to have it in a bug tracker somewhere... Aside: I've just moved my development platform from Windows to linux. Where would I go

RE: [avr-gcc-list] ATmega256x trampolines? (Was: Why is there1200bytes of zeroes in my code?)

2007-03-21 Thread Eric Weddington
with WinAVR/MFile. Thanks Eric Weddington -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Haase Bjoern (PT-BEU/EMT) Sent: Wednesday, March 21, 2007 3:05 AM To: Erik Christiansen; Joerg Wunsch Cc: avr-gcc-list@nongnu.org Subject: AW: [avr-gcc

RE: [avr-gcc-list] ATmega256x trampolines? (Was: Why is there 1200bytes of zeroes in my code?)

2007-03-21 Thread Eric Weddington
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of Erik Christiansen Sent: Wednesday, March 21, 2007 2:42 AM To: Joerg Wunsch Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] ATmega256x trampolines? (Was: Why is there 1200bytes of

RE: [avr-gcc-list] Option to remove unused trampoline space gives bad link

2007-03-23 Thread Eric Weddington
# is so I can help to track it. Thanks Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Inconsisten behaviour of switch statement

2007-03-26 Thread Eric Weddington
integer constants to uint8_t? Perhaps that will have the desired effect. HTH Eric Weddington ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

RE: [avr-gcc-list] Inconsisten behaviour of switch statement

2007-03-26 Thread Eric Weddington
-Original Message- From: Schwichtenberg, Knut [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 7:34 AM To: Eric Weddington; avr-gcc-list@nongnu.org Subject: RE: [avr-gcc-list] Inconsisten behaviour of switch statement Hi, -Original Message- From: Eric

RE: [avr-gcc-list] Inconsisten behaviour of switch statement

2007-03-26 Thread Eric Weddington
-Original Message- From: Dave Hansen [mailto:[EMAIL PROTECTED] Sent: Monday, March 26, 2007 10:38 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; avr-gcc-list@nongnu.org Subject: RE: [avr-gcc-list] Inconsisten behaviour of switch statement From: Eric Weddington [EMAIL PROTECTED

  1   2   >