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?