Re: [avr-gcc-list] PLEASE HELP ME

2006-03-27 Thread Jan Johansson
I would suggest OpenTCP as it requires no OS. You can run it polled from your mainloop or similar way. -j rajeev joshi wrote: HI , I AM DOING A PROJECT ON TCP/IP PORTING ON AVR(ATmega16) WITH 16K fLASH AND 1K RAM, THERE ARE 2 TCP/IP STACKS ARE AVAILABLE ONE IS uip(6K)

Re: [avr-gcc-list] OS for AVR

2006-03-27 Thread marko.panger
Hi, You can try uSmartX RTOS. Brief description: uSmartX is a non-preemptive, multitasking, priority based RTOS. It features necessary mechanisms for inter-task communication and basic task and time control functions. uSmartX is targeted for small foot-print embedded designs. Being a

[avr-gcc-list] still image

2006-03-27 Thread Andi Suhandi
Anyone had develop to capture still image using webcam with AVR ? Andi ___ AVR-GCC-list mailing list AVR-GCC-list@nongnu.org http://lists.nongnu.org/mailman/listinfo/avr-gcc-list

[avr-gcc-list] New FreeBSD avr-gcc-devel 4.1.0 port fails to build

2006-03-27 Thread Enoch H. Wexler
New FreeBSD avr-gcc-devel 4.1.0 port fails to build Hello Joerg and everyone, (1) Please note that on a FreeBSD 5.5-PRERELEASE i386 platform this new port fails as follows: cc1: error: unrecognized command line option -march=pentiumpro gmake[3]: *** [libgcc/./_mulqi3.o] Error 1 gmake[3]:

Re: [avr-gcc-list] simple macro to dig w/ ports

2006-03-27 Thread Jerome Kerdreux
Dave Hansen give me a better solution I think, here a cut / paste of his anwser --- begin included file --- #define BIT(p,b)(b) #define PORT(p,b) (PORT ## p) #define PIN(p,b)(PIN ## p) #define DDR(p,b)(DDR ## p) #define MASK(b)

Re: [avr-gcc-list] New FreeBSD avr-gcc-devel 4.1.0 port fails to build

2006-03-27 Thread Joerg Wunsch
Enoch H. Wexler [EMAIL PROTECTED] wrote: cc1: error: unrecognized command line option -march=pentiumpro See our private conversation. (2) How does it compare with avr-gcc-3.4.6 code size, i.e., using -Os optimization? In a large project I'm doing in my day job, it's been the first time a

Re: [avr-gcc-list] PLEASE HELP ME

2006-03-27 Thread David Kelly
On Mar 27, 2006, at 11:01 AM, Jan Johansson wrote: I would suggest OpenTCP as it requires no OS. You can run it polled from your mainloop or similar way. I used Freescale OpenTCP on an MC9S12NE64. It was very disappointing. Could clearly see where several different people had glued one

Re: [avr-gcc-list] simple macro to dig w/ ports

2006-03-27 Thread Peter Harrison
Jerome Kerdreux wrote: Dave Hansen give me a better solution I think, here a cut / paste of his anwser --- begin included file --- #define BIT(p,b)(b) #define PORT(p,b) (PORT ## p) #define PIN(p,b)(PIN ## p) #define DDR(p,b)(DDR

Re: [avr-gcc-list] simple macro to dig w/ ports

2006-03-27 Thread Colin Wall
- Message from Jerome Kerdreux [EMAIL PROTECTED] on Sat, 25 Mar 2006 21:06:50 +0100 - To: AVR-GCC-list@nongnu.org Subject: Re: [avr-gcc-list] simple macro to dig w/ ports Dave Hansen give me a better solution I think, here a cut / paste of his anwser --- begin

Re: [avr-gcc-list] simple macro to dig w/ ports

2006-03-27 Thread Tehn Yit Chin
It is token concatenation. The following URL gives an explanation.http://gcc.gnu.org/onlinedocs/gcc-3.2.3/cpp/Concatenation.html On 3/28/06, Peter Harrison [EMAIL PROTECTED] wrote: Jerome Kerdreux wrote: Dave Hansen give me a better solution I think, here a cut / paste of his anwser --- begin