Bad Arduino Code or what happens?


#1

I was trying yo use the Arduino Code and it shows me these problem!

El Sketch usa 17.704 bytes (61%) del espacio de almacenamiento de programa. El máximo es 28.672 bytes.
Las variables Globales usan 559 bytes (21%) de la memoria dinámica, dejando 2.001 bytes para las variables locales. El máximo es 2.560 bytes.


#2

I’m not seeing anything out of the ordinary. When you compile a program in the Arduino environment, it will show how much memory (PROGMEM) the program is consuming and how much dynamic memory (SRAM) is being used by the variables.

FYI, the Arduino Uno-based boards usually have 32K bytes of PROGMEM for program storage but the boot loader, etc. usually takes up 3-4K bytes. Likewise the Arduino Uno-based boards only have 2K bytes of SRAM for variable storage. There are some tricks that you can use if you want to push non-volatile constants into PROGMEM, but the retrieval is slower than from SRAM.

Are you seeing any errors or just the compilation complete message that you posted?

[Google translation]

No estoy viendo nada fuera de lo normal. Cuando se compila un programa en el entorno Arduino, se mostrará la cantidad de memoria (PROGMEM) el programa está consumiendo y la cantidad de memoria dinámica (SRAM) está siendo utilizado por las variables.

Para su información, las placas basadas en Arduino Uno por lo general tienen 32K bytes de PROGMEM para almacenamiento de programas, pero el gestor de arranque, etc por lo general ocupa 3-4K bytes. Del mismo modo las placas basadas en Uno Arduino sólo tienen 2K bytes de SRAM para almacenamiento variable. Hay algunos trucos que puede utilizar si usted quiere empujar constantes no volátiles en PROGMEM, pero la recuperación es más lenta que la de la SRAM.

¿Estás viendo los errores o simplemente el mensaje completo recopilatorio que haya publicado?


#3

Thanks for youre Reply
the problem is that when command to compile and load everything but when I open GRemote run and choose the port is not loaded in its entirety indicates an xy plotter manual.


#4