saniljhaveri / avr-project-ide

Automatically exported from code.google.com/p/avr-project-ide
0 stars 0 forks source link

memory section editor in project configuration only allows for parts with <=64K #87

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I noticed under configure project then memory tab the address size only allows 
4 digits of hex....what if we have one of the supported (1284P) parts but want 
to put the .text section at I don't know....lets say 0x1f800
since there are only 4 digits of input, the current workaround is to export a 
makefile and replace the LDFLAGS line:
LDFLAGS += -Wl,-section-start=.text=0x1F80
with the corrected information:
LDFLAGS += -Wl,-section-start=.text=0x1F800
it's pretty easy to change the character limit in this editor field to allow 
>64k addresses so we don't have to leave the IDE to compile isn't it? Are there 
any other issues with expanding this field?

Thanks Frank, for all your hard work!
Kiwsa

Original issue reported on code.google.com by theKI...@gmail.com on 12 May 2012 at 1:53