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

2007-01-31 Thread dimax un
Thanks for reply. What are you guys talking about? On 1/30/07, Ricardo Albarracin B. [EMAIL PROTECTED] wrote: El Tue, 30 Jan 2007 09:30:37 +0100 Javier Almansa Sobrino [EMAIL PROTECTED] escribió: On Mon, 29 Jan 2007 16:10:07 -0300 Ricardo Albarracin B. [EMAIL PROTECTED] wrote: ¡¡Otro

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

2007-01-30 Thread Javier Almansa Sobrino
On Mon, 29 Jan 2007 16:10:07 -0300 Ricardo Albarracin B. [EMAIL PROTECTED] wrote: ¡¡Otro español!! un saludo ;-) Hi: What's size the: (using avr-gcc 3.4.5) char - 1 byte int - 2 byte short - ? long - 4 byte float - ? double- ? Sorry, my english is very bad. Regards

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

2007-01-30 Thread Ricardo Albarracin B.
El Tue, 30 Jan 2007 09:30:37 +0100 Javier Almansa Sobrino [EMAIL PROTECTED] escribió: On Mon, 29 Jan 2007 16:10:07 -0300 Ricardo Albarracin B. [EMAIL PROTECTED] wrote: ¡¡Otro español!! Gracias, aunque no se cuantos somos pero vamos sumando :-) un saludo ;-) Saludos -- Atentamente.

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

2007-01-29 Thread Ricardo Albarracin B.
Hi: What's size the: (using avr-gcc 3.4.5) char- 1 byte int - 2 byte short - ? long- 4 byte float - ? double - ? Sorry, my english is very bad. Regards in advance -- Atentamente.Electronica y Unix +++ |

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

2007-01-29 Thread Joerg Wunsch
Ricardo Albarracin B. [EMAIL PROTECTED] wrote: What's size the: (using avr-gcc 3.4.5) char - 1 byte int - 2 byte short - ? long - 4 byte float - ? double- ? Well, you could always use the sizeof operator. ;-) 1, 2, 2, 4, 4, 4 There's also long long with 8 bytes. For

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

2007-01-29 Thread Joerg Wunsch
Privet (i dobroje utro :), Hi what is the uint_fast8_t ? What is the difference from regular uint8_t? What gcc version is it supported from? While uint8_t requests an unsigned integer type that will *exactly* have 8 bits (so it is guaranteed to roll over from 255 to 0), uint_least8_t will

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

2007-01-29 Thread Eric Weddington
supported. ;-) Eric -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] org] On Behalf Of dimax un Sent: Monday, January 29, 2007 2:05 PM To: Joerg Wunsch Cc: avr-gcc-list@nongnu.org Subject: Re: [avr-gcc-list] AVR-GCC variable size Hi what