Hi all,
I am using Maple IDE 0.0.8 on Windows 7 32-bit system. Recently, I have ran into a problem with pinMode function. My code compiles and works fine if I do not declare the pinMode function; however, if I included it, the following error occurs:
Going to build using 'armcompiler' (ARM)
Compiling core...
No libraries to compile.
Compiling the sketch...
Linking...
elf section .data' will not fit in region
ram'
c:/users/morgansolar/desktop/maple_ide/hardware/tools/arm/bin/../lib/gcc/arm-none-eabi/4.4.1/../../../../arm-none-eabi/bin/ld.exe: region `ram' overflowed by 560 bytes
collect2: ld returned 1 exit status
The code compiles find in Arduino IDE. I have no idea why the pinMode function would gives me these errors. Awwhh, so frustrating.
By the way, in case questions will arise as to how I declare in my code:
pinMode(13,OUTPUT);