Compiling Issue (size)

Hi, Im new.
After compiling, the arduino ide shows.
El Sketch usa 130186 bytes (100%) del espacio de almacenamiento de programa. El máximo es 130048 bytes.
Las variables Globales usan 4234 bytes (25%) de la memoria dinámica, dejando 12150 bytes para las variables locales. El máximo es 16384 bytes.
Programa muy grando: visite http://www.arduino.cc/en/Guide/Troubleshooting#size para ver cómo reducirlo.

Error compilando para la tarjeta Sanguino.

I dont know how solve this. Thanks.

Comments

  • Sketch uses 130186 bytes (100%) of program storage space. Maximum is 130048 bytes.
    Global variables use 4234 bytes (25%) of dynamic memory, leaving 12150 bytes for local variables. Maximum is 16384 bytes.
    Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it.

    Error compiling for board Sanguino.
  • reduce number of languages in configuration.h might help.
    search for this part:

    #define LANGUAGE_EN_ACTIVE 1 // English
    #define LANGUAGE_DE_ACTIVE 1 // German
    #define LANGUAGE_NL_ACTIVE 1 // Dutch
    #define LANGUAGE_PT_ACTIVE 1 // Brazilian Portuguese
    #define LANGUAGE_IT_ACTIVE 1 // Italian
    #define LANGUAGE_ES_ACTIVE 1 // Spanish
    #define LANGUAGE_FI_ACTIVE 1 // Finnish
    #define LANGUAGE_SE_ACTIVE 1 // Swedish
    #define LANGUAGE_FR_ACTIVE 1 // French
    #define LANGUAGE_CZ_ACTIVE 1 // Czech
    #define LANGUAGE_PL_ACTIVE 1 // Polish
    #define LANGUAGE_TR_ACTIVE 1 // Turkish

    set all unneeded languages to 0 keep just the one you need at 1.
  • RAyWB said:
    reduce number of languages in configuration.h might help.
    search for this part:

    #define LANGUAGE_EN_ACTIVE 1 // English
    #define LANGUAGE_DE_ACTIVE 1 // German
    #define LANGUAGE_NL_ACTIVE 1 // Dutch
    #define LANGUAGE_PT_ACTIVE 1 // Brazilian Portuguese
    #define LANGUAGE_IT_ACTIVE 1 // Italian
    #define LANGUAGE_ES_ACTIVE 1 // Spanish
    #define LANGUAGE_FI_ACTIVE 1 // Finnish
    #define LANGUAGE_SE_ACTIVE 1 // Swedish
    #define LANGUAGE_FR_ACTIVE 1 // French
    #define LANGUAGE_CZ_ACTIVE 1 // Czech
    #define LANGUAGE_PL_ACTIVE 1 // Polish
    #define LANGUAGE_TR_ACTIVE 1 // Turkish

    set all unneeded languages to 0 keep just the one you need at 1.
    Thank you so much!
    I done this before, only "en" and "es" are active. 
  • so it is solved now or still not compiling?
Sign In or Register to comment.